
From nobody Fri May  1 00:21:36 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 699953A0B26 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 00:21:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.516
X-Spam-Level: 
X-Spam-Status: No, score=-2.516 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-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 0DOKYIeie-Fe for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 00:21:32 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7E7923A0B25 for <quic-issues@ietf.org>; Fri,  1 May 2020 00:21:32 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 31639C60618 for <quic-issues@ietf.org>; Fri,  1 May 2020 00:21:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588317691; bh=LnkZL7Y6zbEWwriLefFiXSKAKUT1VoTATJPoeZVJzwY=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=RTM3brl4XdOvepZnWrHIquNAtDwcjnofqljC7s7r1IdxOd0pgTO+5eFvr5QeiWzd3 E5VlbapRSxvtCsMzhU1fZZ4v+LEIg03kxayU7TpK7kyTM48Rm4skmjZr0QcjSAlnjn qYaXa4B6vN5vP0Ojf5KwZNgWUAeZkLL1ntRSNGZA=
Date: Fri, 01 May 2020 00:21:31 -0700
From: Victor Vasiliev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6DCC4CD45TR5NZMTN4W6XPXEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622@github.com>
Subject: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eabcdfb21c14_3ea73fac2aacd9685569e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: vasilvv
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iQgGy9dpm5W5plZfKOjZT9_0zqI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 07:21:35 -0000

----==_mimepart_5eabcdfb21c14_3ea73fac2aacd9685569e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I've spent some time recently thinking about how easy it is to implement a minimal version of HTTP/3 on top of an existing QUIC implementation.  HTTP/3 wire protocol at its very core is conceptually a really simple thing (it's just a way to transfer some stream of data with key-value pairs attached on both sides).  It has a lot of more advanced features, but most of those (server push, priorities) are opt-in.  However, one notable thing that is not opt-in is QPACK, as it's the only supported way to serialize headers.

Currently, an endpoint can avoid a lot of complexity in QPACK by setting SETTINGS_QPACK_MAX_TABLE_CAPACITY to zero; this allows implementing QPACK without having to manage the dynamic table.  However, this still leaves the static table and especially the Huffman decoder as big sources of complexity.  I propose that we add a new setting (I suggest SETTINGS_QPACK_ENABLE_COMPRESSION since I don't have any better ideas right now) that indicates to the peer that the decoder is capable of accepting Huffman-encoded strings and header blocks formatted in any way other than "Literal Header Field Without Name Reference".  This way, QPACK effectively reverts to just being a key-value pair format, and it should be easy to add this parameter to an existing QPACK implementation.

This is obviously only helpful if we do it from the beginning, so I didn't want to file this away as a v2 issue.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622
----==_mimepart_5eabcdfb21c14_3ea73fac2aacd9685569e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I've spent some time recently thinking about how easy it is to implement a minimal version of HTTP/3 on top of an existing QUIC implementation.  HTTP/3 wire protocol at its very core is conceptually a really simple thing (it's just a way to transfer some stream of data with key-value pairs attached on both sides).  It has a lot of more advanced features, but most of those (server push, priorities) are opt-in.  However, one notable thing that is not opt-in is QPACK, as it's the only supported way to serialize headers.</p>
<p>Currently, an endpoint can avoid a lot of complexity in QPACK by setting SETTINGS_QPACK_MAX_TABLE_CAPACITY to zero; this allows implementing QPACK without having to manage the dynamic table.  However, this still leaves the static table and especially the Huffman decoder as big sources of complexity.  I propose that we add a new setting (I suggest SETTINGS_QPACK_ENABLE_COMPRESSION since I don't have any better ideas right now) that indicates to the peer that the decoder is capable of accepting Huffman-encoded strings and header blocks formatted in any way other than "Literal Header Field Without Name Reference".  This way, QPACK effectively reverts to just being a key-value pair format, and it should be easy to add this parameter to an existing QPACK implementation.</p>
<p>This is obviously only helpful if we do it from the beginning, so I didn't want to file this away as a v2 issue.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5YITS72SKYONYKFP3RPJZ7XANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4UKHIFVCMSANDRXPDRPJZ7XA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JDFFIOQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622",
"url": "https://github.com/quicwg/base-drafts/issues/3622",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eabcdfb21c14_3ea73fac2aacd9685569e--


From nobody Fri May  1 05:25:02 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 B1B1D3A114F for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 05:25:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.302
X-Spam-Level: 
X-Spam-Status: No, score=-2.302 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-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 bGvFn6IfI_bv for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 05:24:58 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B41323A0772 for <quic-issues@ietf.org>; Fri,  1 May 2020 05:24:58 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id E3FF26A0021 for <quic-issues@ietf.org>; Fri,  1 May 2020 05:24:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588335896; bh=aikMlRiKqV4GoPetuFU/cVzROac0ntJ8Y4EdynJOv4o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0gfvrE13j6Yh4dPzcBnxr9aoQ3mjHGJpidZQmlFFlvf9WPl7OeYP8mrf9g7aW3MwJ t/nc2aGVZoWBKEIgqQTk3NBeFpwMkY80T7TighYgLqh4C/hB+A0qEIl2y1xYX/7X84 xORniH5RIkZgCCdK3o1mkjGsBBYo95hQMoCdWkA8=
Date: Fri, 01 May 2020 05:24:56 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYROPMQ6XKGZCRKPBN4W73BREVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/622367141@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac1518d27e1_41a23fb1b2acd96c984c6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8tgPLrnaszIl9KbOqwQdCRmAcyY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 12:25:01 -0000

----==_mimepart_5eac1518d27e1_41a23fb1b2acd96c984c6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I understand the attractiveness of the idea but I think we're too late in the process to seriously consider changing this, independent of the specific details of proposals.

How should a server that has no intention of enabling this setting respond to HEADERS that include other instructions? If the answer is to blow up the connection then the (unintended?) side effect will encourage clients to start connections by sending all requests as "Literal Header Field Without Name Reference" until they receive the setting. But that stage of a HTTP/3 connection is the exact place where static and huffman have the most value; we groomed the static table to suit best the first flights of client requests.

My concern is that by trying to accommodate some smaller segment of HTTP clients, we cause a serious regression compared to HTTP/2.

This sort of thing seems better suited to a version that is "profile of HTTP/3" that disables some things and mandates others.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-622367141
----==_mimepart_5eac1518d27e1_41a23fb1b2acd96c984c6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I understand the attractiveness of the idea but I think we're too late in the process to seriously consider changing this, independent of the specific details of proposals.</p>
<p>How should a server that has no intention of enabling this setting respond to HEADERS that include other instructions? If the answer is to blow up the connection then the (unintended?) side effect will encourage clients to start connections by sending all requests as "Literal Header Field Without Name Reference" until they receive the setting. But that stage of a HTTP/3 connection is the exact place where static and huffman have the most value; we groomed the static table to suit best the first flights of client requests.</p>
<p>My concern is that by trying to accommodate some smaller segment of HTTP clients, we cause a serious regression compared to HTTP/2.</p>
<p>This sort of thing seems better suited to a version that is "profile of HTTP/3" that disables some things and mandates others.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-622367141">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2N4OQF5MGRWIGPW3TRPK5RRANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK52CJFC4J3SWGUDW33RPK5RRA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUMJDJI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-622367141",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-622367141",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eac1518d27e1_41a23fb1b2acd96c984c6--


From nobody Fri May  1 05:35:26 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 AE5253A1177 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 05:35:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.828
X-Spam-Level: 
X-Spam-Status: No, score=-2.828 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZX2VnXwyXk5A for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 05:35:22 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 401633A1176 for <quic-issues@ietf.org>; Fri,  1 May 2020 05:35:22 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 5A21A660A51 for <quic-issues@ietf.org>; Fri,  1 May 2020 05:35:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588336520; bh=8qiwwhO4oNq9fu2oqbt6+4BmO82eCEKmdFwyfNLtBlQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=019PNTPjzAvfBPqDgiHHHSXZOGAdqewsaYqA1zBUYlF3OLbHhDTvTphkB6Hx65Awy E5ozGsTrOS0OzkbJ/BRcOxcEc02f5B4Oh61Jh2hPchIvZ3wjVT5UDdOMuVgwICHIhI zumEr3HnxTjrG1nuOzagDR9d8q3CdlPt7/Lo15Go=
Date: Fri, 01 May 2020 05:35:20 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK42WU4DFGY6WO4ENI54W74IREVBNHHCIVNZKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3616/622370252@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3616@github.com>
References: <quicwg/base-drafts/issues/3616@github.com>
Subject: Re: [quicwg/base-drafts] Error code for increasing stream_id in GOAWAY frames (#3616)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac178849698_42683f88b50cd96012067f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uWgJ3sKRx_ytSTR1HtD9dCOfpmo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 12:35:24 -0000

----==_mimepart_5eac178849698_42683f88b50cd96012067f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Seems like you have a solution that does not require any spec changes so I'm closing this. Reopen the ticket if my assessment is wrong.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3616#issuecomment-622370252
----==_mimepart_5eac178849698_42683f88b50cd96012067f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Seems like you have a solution that does not require any spec changes so I'm closing this. Reopen the ticket if my assessment is wrong.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3616#issuecomment-622370252">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5M2N4H7U4M2BQLZATRPK6YRANCNFSM4MVF72EQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6GVYOYDUR5WYQ5WGDRPK6YRA5CNFSM4MVF72E2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUMJ3TA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3616#issuecomment-622370252",
"url": "https://github.com/quicwg/base-drafts/issues/3616#issuecomment-622370252",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eac178849698_42683f88b50cd96012067f--


From nobody Fri May  1 05:35:43 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 E947D3A1177 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 05:35:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.828
X-Spam-Level: 
X-Spam-Status: No, score=-2.828 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-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 kRSIZfSawzWd for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 05:35:23 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AEC173A1178 for <quic-issues@ietf.org>; Fri,  1 May 2020 05:35:23 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id A5D4F6E1338 for <quic-issues@ietf.org>; Fri,  1 May 2020 05:35:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588336522; bh=PcgxqJkhCrpovuzKLubFQOL34O8fdkyU8LLeOfdPakg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=T13LdUC/r5VmT/iaEipGdDA4nbhZyk+O9PxoNKqoN67Ubvj5sjtsRNoVqavzJ39wD TkQyWStRbR6++CuCSBp0gbpJshDDYS8fxNlCpxOqALG1E17xQ0irKia/zdeDarGZhQ U3elnxuP84bfTrNg5Bvpuqp0iUyLB99ZX3FncYWM=
Date: Fri, 01 May 2020 05:35:22 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7UGUA2T3PPKP2L3FN4W74IVEVBNHHCIVNZKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3616/issue_event/3293063139@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3616@github.com>
References: <quicwg/base-drafts/issues/3616@github.com>
Subject: Re: [quicwg/base-drafts] Error code for increasing stream_id in GOAWAY frames (#3616)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac178a94ad5_41763ffc584cd96854859"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XwAFqHjNUurBPzz5wIshttmGPkU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 12:35:26 -0000

----==_mimepart_5eac178a94ad5_41763ffc584cd96854859
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3616.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3616#event-3293063139
----==_mimepart_5eac178a94ad5_41763ffc584cd96854859
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="609597782" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3616" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3616/hovercard" href="https://github.com/quicwg/base-drafts/issues/3616">#3616</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3616#event-3293063139">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2NTWXGV4HXOX243NDRPK6YVANCNFSM4MVF72EQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2NWBUCJQNJURU2PM3RPK6YVA5CNFSM4MVF72E2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYRECPYY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3616#event-3293063139",
"url": "https://github.com/quicwg/base-drafts/issues/3616#event-3293063139",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eac178a94ad5_41763ffc584cd96854859--


From nobody Fri May  1 06:20:25 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 E584F3A11F3 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 06:20:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.861
X-Spam-Level: 
X-Spam-Status: No, score=-1.861 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-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 MABRBgAwLxkQ for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 06:20:21 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D5F733A11F2 for <quic-issues@ietf.org>; Fri,  1 May 2020 06:20:20 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 752028C08B1 for <quic-issues@ietf.org>; Fri,  1 May 2020 06:20:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588339219; bh=z9GSeAggCywEnYeGIy2fxxRjY+dwCTMGEpVA1a+3KjM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Unw8U/b6ZavfOleJk4Bt+PEzePwh1JQC0VAMHNoOMIfbR9wOlxcP9roEN5+R+RnDb Djv6occ4mkYGi5bA0Z5kmWgHFDw6f3BQR8zeKjQyOfRRw34mx2EO523S66NgJYpIml YSt6Fun6OT75yv0R4pravJv6+pSLGMV4/rjh4Y/U=
Date: Fri, 01 May 2020 06:20:19 -0700
From: Tatsuhiro Tsujikawa <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYXNRJNXCLKN5M7RNF4XABRHEVBNHHCIRTY3M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3604/review/404154555@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3604@github.com>
References: <quicwg/base-drafts/pull/3604@github.com>
Subject: Re: [quicwg/base-drafts] Update pseudocode to not arm PTO.. (#3604)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac221366404_2e473ff530ecd96015066f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: tatsuhiro-t
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qwGb6bcEATmTEeLfkyu23pkGqes>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 13:20:23 -0000

----==_mimepart_5eac221366404_2e473ff530ecd96015066f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@tatsuhiro-t approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3604#pullrequestreview-404154555
----==_mimepart_5eac221366404_2e473ff530ecd96015066f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@tatsuhiro-t</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3604#pullrequestreview-404154555">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYVVEGKULC5I3M7NGTRPLEBHANCNFSM4MTE3Z6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZD5ILBK2E7TLOWOCLRPLEBHA5CNFSM4MTE3Z62YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODALOROY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3604#pullrequestreview-404154555",
"url": "https://github.com/quicwg/base-drafts/pull/3604#pullrequestreview-404154555",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eac221366404_2e473ff530ecd96015066f--


From nobody Fri May  1 06:57:16 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 E3C5A3A129E for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 06:57:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.92
X-Spam-Level: 
X-Spam-Status: No, score=-2.92 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, RCVD_IN_MSPIKE_H2=-0.82, 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 Z3y5_WZpoVXJ for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 06:57:04 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F16E33A12C6 for <quic-issues@ietf.org>; Fri,  1 May 2020 06:56:59 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 10EA7660D06 for <quic-issues@ietf.org>; Fri,  1 May 2020 06:56:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588341419; bh=iVvitbIIiDuKO/h11yZ5mlAhoPWixTWfasROv5OC6NQ=; h=Date:From:To:Subject:From; b=HrYre3tzgaz1o7wAyXI8IeEl9OQlHJ+Pfi1lQsiYCMeLfL/LlzRtK0t7q/UhuRb/D I2XcX5fKBF9302eUlhy+PnisIrN9/QRNHi6/rLtGxmHoObRpSqRFrARVVSvN++5eg9 QWBKDwYzJJ05+cPNCSLNugaCnYvqubeE5RtcIeuc=
Date: Fri, 01 May 2020 06:56:58 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/dee376-d50128@github.com>
Subject: [quicwg/base-drafts] cef47a: Update pseudocode to not arm PTO..
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/46smPT7BeUj3-6n-6DPgU6dAbE4>
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, 01 May 2020 13:57:14 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: cef47aeb28cab88c401968cc4039f6d262e0a7db
      https://github.com/quicwg/base-drafts/commit/cef47aeb28cab88c401968cc4039f6d262e0a7db
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update pseudocode to not arm PTO..

For ApplicationData until the handshake is complete.


  Commit: f53564576b1aac2aeb58abaf12e63c7b6c9ee91c
      https://github.com/quicwg/base-drafts/commit/f53564576b1aac2aeb58abaf12e63c7b6c9ee91c
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Remove trailing spaces


  Commit: d9ed15b2424498cfc8f593392e0971b92d75524f
      https://github.com/quicwg/base-drafts/commit/d9ed15b2424498cfc8f593392e0971b92d75524f
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: d50128221a55d34c05069d4aadd6e2a726e1c9ba
      https://github.com/quicwg/base-drafts/commit/d50128221a55d34c05069d4aadd6e2a726e1c9ba
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3604 from quicwg/ianswett-pto-handshake-complete

Update pseudocode to not arm PTO..


Compare: https://github.com/quicwg/base-drafts/compare/dee37615ffed...d50128221a55


From nobody Fri May  1 06:57:24 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 E441B3A1292 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 06:57:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.92
X-Spam-Level: 
X-Spam-Status: No, score=-2.92 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, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 sONT19jp5VgK for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 06:57:10 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 493CF3A12A9 for <quic-issues@ietf.org>; Fri,  1 May 2020 06:57:01 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id DF8572C0E8E for <quic-issues@ietf.org>; Fri,  1 May 2020 06:56:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588341419; bh=KVG+iZGXlxgcdjOxPBdjtUnQWnNUFK66jCe2u8NOtN0=; h=Date:From:To:Subject:From; b=VCpDKsfzFyl9UHS6pKuUqQGmXacYwulR1ZoGc8pCa0Er/KQ/ArG+DL1ehC4rtjzOR I8iAFJKqKpbYvf4/nMCr5yi9N9sokIhb9QliN8VXW3+DUl7A+xhznKFSguaIOfaVCZ eGyW5cw2f7wHi0EUwSoWv1l4kVld5I4nqvRkfzus=
Date: Fri, 01 May 2020 06:56:59 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-handshake-complete/d9ed15-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bm32_CFGk7HPUZuOg9GBnfz9GjY>
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, 01 May 2020 13:57:18 -0000

  Branch: refs/heads/ianswett-pto-handshake-complete
  Home:   https://github.com/quicwg/base-drafts


From nobody Fri May  1 06:57:27 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 C68D73A12F2 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 06:57:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.374
X-Spam-Level: 
X-Spam-Status: No, score=-2.374 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-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 NPYJwMj13REA for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 06:57:14 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 553583A1288 for <quic-issues@ietf.org>; Fri,  1 May 2020 06:57:10 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 58EAFA0DFA for <quic-issues@ietf.org>; Fri,  1 May 2020 06:57:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588341429; bh=sDKViGX2gkdxMfWAcomIUs66uXaiipd4pMNaoDt0FJI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mFJdS55d0DG8gdo5SDoYz7C3eDr/Xty46JcPeVmr7ZvQ7xNX4Fmvh7qY40279ffXA gQ9Y5HbE++2HsF8hQ088tXleXNcBgN+iRSOes9kUdhIeSZi+coAClaxwGOMmf88fBU E9Jw8/BavWm288LJqnO16iobtOnhoxfB6bkFcrpg=
Date: Fri, 01 May 2020 06:57:09 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7WJMR23CVPCEEHJI54XAF3LEVBNHHCHRBAJI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3582/issue_event/3293255668@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3582@github.com>
References: <quicwg/base-drafts/issues/3582@github.com>
Subject: Re: [quicwg/base-drafts] Server sends Handshake probe packet which does not attribute to any progress (#3582)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac2ab54a679_17713fd0884cd964163974"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sNir9wGiQOkWBiJKZaTBquUUnW4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 13:57:22 -0000

----==_mimepart_5eac2ab54a679_17713fd0884cd964163974
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3582 via #3604.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3582#event-3293255668
----==_mimepart_5eac2ab54a679_17713fd0884cd964163974
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="600055882" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3582" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3582/hovercard" href="https://github.com/quicwg/base-drafts/issues/3582">#3582</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="608598235" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3604" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3604/hovercard" href="https://github.com/quicwg/base-drafts/pull/3604">#3604</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3582#event-3293255668">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6YKEQXQFOU5UGQJQLRPLILLANCNFSM4MIJ5HSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2I5FPNTRHVOGMXYODRPLILLA5CNFSM4MIJ5HSKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYRFRP5A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3582#event-3293255668",
"url": "https://github.com/quicwg/base-drafts/issues/3582#event-3293255668",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eac2ab54a679_17713fd0884cd964163974--


From nobody Fri May  1 06:57:32 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 D97113A12AA for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 06:57:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 z8a61i6PeI53 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 06:57:17 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 83C4B3A12AD for <quic-issues@ietf.org>; Fri,  1 May 2020 06:57:11 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 8D4C3E003A for <quic-issues@ietf.org>; Fri,  1 May 2020 06:57:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588341430; bh=n17F3iBlG3+BiCy3OOXZZAjTJsBA6Jco7FCy18jPd70=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=S7X/z4FfPmPVaZoHUyUXOIjJElybEmRvkJOYPiHIrErSoAk8d4rAUTPPmMzO/9Fw9 4LZE29dlnkb0w37p9EKN0EWgkDDm4riAg3xFLehwWvneZQMbyFYWyP9OPA1eT+QQxX 7UCZG6md6+n2lJMvcJvr7FadFt/5gQRiBN7exkxc=
Date: Fri, 01 May 2020 06:57:10 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6YTUT3MTOCNYV5YM54XAF3NEVBNHHCIRTY3M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3604/issue_event/3293255659@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3604@github.com>
References: <quicwg/base-drafts/pull/3604@github.com>
Subject: Re: [quicwg/base-drafts] Update pseudocode to not arm PTO.. (#3604)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac2ab67df54_11193fe7f68cd96c58862"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4Gdn613AvXqVGFag6yXG3bR7tiI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 13:57:25 -0000

----==_mimepart_5eac2ab67df54_11193fe7f68cd96c58862
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3604 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3604#event-3293255659
----==_mimepart_5eac2ab67df54_11193fe7f68cd96c58862
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="608598235" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3604" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3604/hovercard" href="https://github.com/quicwg/base-drafts/pull/3604">#3604</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3604#event-3293255659">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY27Z5AY3KALCX4YCDRPLILNANCNFSM4MTE3Z6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK735PU6W7JTBAOWJILRPLILNA5CNFSM4MTE3Z62YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYRFRP2Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3604#event-3293255659",
"url": "https://github.com/quicwg/base-drafts/pull/3604#event-3293255659",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eac2ab67df54_11193fe7f68cd96c58862--


From nobody Fri May  1 07:00:24 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 5BEF73A1266 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 07:00:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 YXszoGRQfVm6 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 07:00:20 -0700 (PDT)
Received: from out-13.smtp.github.com (out-13.smtp.github.com [192.30.254.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 633D83A1265 for <quic-issues@ietf.org>; Fri,  1 May 2020 07:00:20 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 8C84F26172D for <quic-issues@ietf.org>; Fri,  1 May 2020 07:00:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588341619; bh=S6jKkC/NnwDi9ufX/gPsfpavPwyp4AuybQ1EQlxOHqA=; h=Date:From:To:Subject:From; b=UhtMPiSm+C/D8Z+UitXDtwWTRYUqaFX8F/gvb7yjGITq9cw/QNF9/WCejcC70nmjV XiIebir2rASdFp87/pTQnSiwDrpA7FngsltAIy8AD6DF/ugbyPIOaUD692fbDMLHEF tB85rCFPo7Vc4MDlXGUlKvG3wMUImbFn+zJDrPnM=
Date: Fri, 01 May 2020 07:00:19 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a3b641-684bce@github.com>
Subject: [quicwg/base-drafts] 684bce: Script updating gh-pages from d5012822. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qYl_vavEbHd_8Mm3FRihssOWm8Y>
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, 01 May 2020 14:00:23 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 684bce6cac2f73d4cbe2d2fbb3245e86968c18d0
      https://github.com/quicwg/base-drafts/commit/684bce6cac2f73d4cbe2d2fbb3245e86968c18d0
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d5012822. [ci skip]



From nobody Fri May  1 07:00:41 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 AB6F33A1265 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 07:00:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.921
X-Spam-Level: 
X-Spam-Status: No, score=-2.921 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, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-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 md57WeRVN3CY for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 07:00:30 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DF7D43A1267 for <quic-issues@ietf.org>; Fri,  1 May 2020 07:00:29 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 18EA066008C for <quic-issues@ietf.org>; Fri,  1 May 2020 07:00:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588341629; bh=r+RYLF+AyuV+QUa9nQw9wMoOF6bE0YrmzNNBNKNMOuo=; h=Date:From:To:Subject:From; b=kGPcRP63iBs5TAjz6esrV+FimC7ayrroNdjjRLeq6lKKW4u7sz1q8QNImsGPDIqUq y/KxSSqpkSxnOlOQbg1JxW3v1gsx4YnYjYSQvz07OnytmAmdyv5VsRYRDf+a9XcRZT 1XC0gK9n6hPZ+1Da3mKmH3Od2Ebe/ktP3y0VTZ68=
Date: Fri, 01 May 2020 07:00:29 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/684bce-1cd7a1@github.com>
Subject: [quicwg/base-drafts] 1cd7a1: Script updating archive at 2020-05-01T14:00:09Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/59IZdxNrChq8DkX6kchu67V2NA0>
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, 01 May 2020 14:00:36 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1cd7a124513abb6e54d755308bd291f08b6193cf
      https://github.com/quicwg/base-drafts/commit/1cd7a124513abb6e54d755308bd291f08b6193cf
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-01T14:00:09Z. [ci skip]



From nobody Fri May  1 07:18:17 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 0281F3A0A1A for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 07:18:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.301
X-Spam-Level: 
X-Spam-Status: No, score=-2.301 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, 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 0jWU507XyF9R for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 07:18:14 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8ADA93A00E2 for <quic-issues@ietf.org>; Fri,  1 May 2020 07:18:14 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id BBD68A005F for <quic-issues@ietf.org>; Fri,  1 May 2020 07:18:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588342693; bh=L28FeutlNmZMEG5LfQRf2DTJ6rH4HWFkbasWlwh8dPY=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=LZ7kU4MP05EDfNsFk3dWarEE6aFwDqRGabePVIAXlSTYMaJ3PBl4lXO4uDJrcMSeK fj0N0ct+rrDWhDxS0HpCJkN2K+5Mv6OdryKrARQ76xa41qEpGkQ9OTxF8YTjz1vrgF p2gbbSDZbVecotEn1ZxM94L5hcXHDxMWJUk84iig=
Date: Fri, 01 May 2020 07:18:13 -0700
From: Tom Jones <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY5HZRRNXQU6HGLVS54XAIKLEVBNHHCIZ5LBI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3623@github.com>
Subject: [quicwg/base-drafts] Update ACK generation policy (#3623)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac2fa5ab4c8_75413ff8504cd960111566"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: adventureloop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Eg7Z9KUaspzFwH6NNGTq9otyQs8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 14:18:16 -0000

----==_mimepart_5eac2fa5ab4c8_75413ff8504cd960111566
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The discussion around the previous pull request #3501 seems to have stalled. We think a smaller change might also work.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3623

-- Commit Summary --

  * Update ACK generation policy

-- File Changes --

    M draft-ietf-quic-transport.md (10)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3623.patch
https://github.com/quicwg/base-drafts/pull/3623.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3623

----==_mimepart_5eac2fa5ab4c8_75413ff8504cd960111566
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The discussion around the previous pull request <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="576164650" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3501" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3501/hovercard" href="https://github.com/quicwg/base-drafts/pull/3501">#3501</a> seems to have stalled. We think a smaller change might also work.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3623'>https://github.com/quicwg/base-drafts/pull/3623</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Update ACK generation policy</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3623/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (10)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3623.patch'>https://github.com/quicwg/base-drafts/pull/3623.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3623.diff'>https://github.com/quicwg/base-drafts/pull/3623.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3623">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK333VY27WULYTAVSHTRPLK2LANCNFSM4MXD7XDQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3C2MHT4QP37LJ5OXDRPLK2LA5CNFSM4MXD7XD2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JDHVMFA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3623",
"url": "https://github.com/quicwg/base-drafts/pull/3623",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eac2fa5ab4c8_75413ff8504cd960111566--


From nobody Fri May  1 08:02:26 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 898013A13E3 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 08:02:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.919
X-Spam-Level: 
X-Spam-Status: No, score=-3.919 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, 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 smo-_dXkA4_i for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 08:02:05 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D8B3D3A136E for <quic-issues@ietf.org>; Fri,  1 May 2020 08:02:04 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 075636E124D for <quic-issues@ietf.org>; Fri,  1 May 2020 08:02:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588345324; bh=tG2oAC4OjKtoBf1AfLwdjjBnTkiLDYDTxFyOlBZwYNU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=f50ASzYeHZOtYhZ70D2NBLop+NpQLgCvRuCw5C0pqPXoe+AY06LH36BHk3RnmYzG6 stLs+KTdJ2IRkSs1Q9ZEkU3gOeZDk5mtW/ZX9aap13DKsMK8XTl27ewsj2BloXkAyr /XYgHPjARi9nyi5J/vYrd5UstYAaWEBRuB+M1IyY=
Date: Fri, 01 May 2020 08:02:03 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6FB5LFVSAQMGOOFG54XANOXEVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/622423228@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac39ebec32f_a823f890cecd96487966"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/liSFWWmtDf0EcvhAMvrg9g7byAQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 15:02:18 -0000

----==_mimepart_5eac39ebec32f_a823f890cecd96487966
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

These results/article on computational efficiency are really =0D
interesting. Please see below.=0D
=0D
On 01/05/2020 05:40, Kazuho Oku wrote:=0D
> Hi, Gorry=0D
>=0D
> Thank you for sharing your experiments. I'm delighted to see results =0D=

> showing that use of ack10 gives us comparable throughput to ack2.=0D
>=0D
> Recently, I have been looking into how ack-frequency affects the =0D
> computational efficiency of the server [1]. Using the (almost) same =0D=

> setup, I have today run a benchmark comparing three ACK strategies: =0D=

> ack2, ack10, ack 1/8cwnd.=0D
>=0D
> ack2: 334Mbps=0D
> ack10: 414Mbps=0D
> ack 1/8cwnd: 487Mbps=0D
>=0D
> As can be seen, ack10 is better than ack2, but lags behind ack1/8cwnd. =
=0D
> That's because there are still frequent ACKs. They take considerable =0D=

> amount of CPU cycles.=0D
>=0D
This is useful, we see here there's a clear benefit here in using a =0D
larger ACK Ratio also in terms of server load.=C2=A0 We can see already t=
he =0D
benefit at 1:10 and GSO helps as expected.=0D
> If we want to see QUIC being as lightweight as TLS over TCP, it is =0D
> critically important to reduce ACK frequency as much as possible. This =
=0D
> is because the cost of processing ACK in QUIC is much more expensive =0D=

> than TCP, due QUIC being a userspace transport.=0D
>=0D
We think that this is also really true. QUIC ACKs are also larger than =0D=

TCP ACKs (see https://erg.abdn.ac.uk/users/gorry/ietf/QUIC/).=0D
> Based on this, if we are to change what we have in the base drafts, =0D=

> I'd much prefer adopting what we have in the proposed delayed ack =0D
> extension [2], rather than just changing the default ack policy from =0D=

> ack2 to ack10. By adopting what we have in the delayed ack extension, =0D=

> we can expect better performance, and the endpoints would have the =0D
> freedom to change the behavior when the default ack policy is deemed =0D=

> insufficient (regardless of the default being ack2 or ack10).=0D
>=0D
> [1] =0D
> https://www.fastly.com/blog/measuring-quic-vs-tcp-computational-efficie=
ncy=0D
> [2] https://tools.ietf.org/html/draft-iyengar-quic-delayed-ack-00=0D
>=0D
I don't think the two approaches conflict.=0D
=0D
The difference between the two approaches is that the small change to =0D=

the base specification to use an ACK Ratio 1:10 ensures the default =0D
return path is at least as good as TCP for common traffic (even with =0D
common TCP ACK Thinning). Without this change, the end user could =0D
experience significant differences in performance between TCP and =0D
between different QUIC versions over asymmetric paths.=E2=80=A8=0D
=0D
Whereas to me, the transport parameter extension looks like an exciting =0D=

way to enable many more things, but there are also many ways this could =0D=

usefully evolve based on CC, offload, pacing etec and I think this will =0D=

take much more to work-out what is needed, safe and best ... then to =0D
reach consensus. We still also need to specify a default ACK Ratio in =0D=

this case as well.=0D
=0D
Best wishes,=0D
=0D
Gorry=E2=80=A8=0D
> 2020=E5=B9=B44=E6=9C=8828=E6=97=A5(=E7=81=AB) 20:37 Gorry Fairhurst <go=
rry@erg.abdn.ac.uk =0D
> <mailto:gorry@erg.abdn.ac.uk>>:=0D
> >=0D
> > On 27/04/2020 17:19, Lars Eggert wrote:=0D
> >=0D
> > Folks who care about a change here need to prioritize progressing =0D=

> this issue. We're close to being able to last-call the specs, and =0D
> would like this resolved in time..=0D
> >=0D
> > =E2=80=94=0D
> > You are receiving this because you authored the thread.=0D
> > Reply to this email directly, view it on GitHub, or unsubscribe.=0D
> >=0D
> > We=E2=80=99ve completed a round of updated analysis of the proposed c=
hange =0D
> to the QUIC spec, using quicly (changing to a 1:10 policy), and =0D
> chromium (which currently does 1:10 by default). Our hope is that this =
=0D
> change to the spec, =C2=A0to actually make standard end-to-end QUIC wor=
k =0D
> better than TCP over asymmetric paths!=0D
> >=0D
> > This is a short slide deck about the performance of the proposed chan=
ge:=0D
> > https://erg.abdn.ac.uk/users/gorry/ietf/QUIC/QUIC-ack10-24-april-00.p=
df=0D
> >=0D
> > There have been a number of other change made by the QUIC ID editors =
=0D
> relating to ACK processing, so we wanted to be sure these results were =
=0D
> up to date. (These results do not consider additional ACKs after =0D
> re-ordering - reflecting the latest text removing that.)=0D
> >=0D
> > We also really hope this will motivate a change the practice of =0D
> forcing of QUIC fallback to TCP (with PEP/Thining) over highly =0D
> asymmetric paths. People may also be interested in work for L4S to =0D
> evaluate the impact of ACK Thining for TCP-Prague.=0D
> >=0D
> > Please do provide feedback, or any questions on this - as Lars =0D
> notes, we think the time is running out for considering new changes, =0D=

> even relatively simple ones like this.=0D
> >=0D
> > Gorry=0D
> >=0D
> > P.S. First email: =0D
> https://mailarchive.ietf.org/arch/msg/quic/NZBbuY88v0lrVspQE2A5br83asA/=
=0D
>=0D
>=0D
>=0D
> --=0D
> Kazuho Oku=0D
=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-622423228=

----==_mimepart_5eac39ebec32f_a823f890cecd96487966
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
These results/article on computational efficiency are really <br>=0D
interesting. Please see below.<br>=0D
<br>=0D
On 01/05/2020 05:40, Kazuho Oku wrote:<br>=0D
&gt; Hi, Gorry<br>=0D
&gt;<br>=0D
&gt; Thank you for sharing your experiments. I&#39;m delighted to see res=
ults <br>=0D
&gt; showing that use of ack10 gives us comparable throughput to ack2.<br=
>=0D
&gt;<br>=0D
&gt; Recently, I have been looking into how ack-frequency affects the <br=
>=0D
&gt; computational efficiency of the server [1]. Using the (almost) same =
<br>=0D
&gt; setup, I have today run a benchmark comparing three ACK strategies: =
<br>=0D
&gt; ack2, ack10, ack 1/8cwnd.<br>=0D
&gt;<br>=0D
&gt; ack2: 334Mbps<br>=0D
&gt; ack10: 414Mbps<br>=0D
&gt; ack 1/8cwnd: 487Mbps<br>=0D
&gt;<br>=0D
&gt; As can be seen, ack10 is better than ack2, but lags behind ack1/8cwn=
d. <br>=0D
&gt; That&#39;s because there are still frequent ACKs. They take consider=
able <br>=0D
&gt; amount of CPU cycles.<br>=0D
&gt;<br>=0D
This is useful, we see here there&#39;s a clear benefit here in using a <=
br>=0D
larger ACK Ratio also in terms of server load.=C2=A0 We can see already t=
he <br>=0D
benefit at 1:10 and GSO helps as expected.<br>=0D
&gt; If we want to see QUIC being as lightweight as TLS over TCP, it is <=
br>=0D
&gt; critically important to reduce ACK frequency as much as possible. Th=
is <br>=0D
&gt; is because the cost of processing ACK in QUIC is much more expensive=
 <br>=0D
&gt; than TCP, due QUIC being a userspace transport.<br>=0D
&gt;<br>=0D
We think that this is also really true. QUIC ACKs are also larger than <b=
r>=0D
TCP ACKs (see https://erg.abdn.ac.uk/users/gorry/ietf/QUIC/).<br>=0D
&gt; Based on this, if we are to change what we have in the base drafts, =
<br>=0D
&gt; I&#39;d much prefer adopting what we have in the proposed delayed ac=
k <br>=0D
&gt; extension [2], rather than just changing the default ack policy from=
 <br>=0D
&gt; ack2 to ack10. By adopting what we have in the delayed ack extension=
, <br>=0D
&gt; we can expect better performance, and the endpoints would have the <=
br>=0D
&gt; freedom to change the behavior when the default ack policy is deemed=
 <br>=0D
&gt; insufficient (regardless of the default being ack2 or ack10).<br>=0D=

&gt;<br>=0D
&gt; [1] <br>=0D
&gt; https://www.fastly.com/blog/measuring-quic-vs-tcp-computational-effi=
ciency<br>=0D
&gt; [2] https://tools.ietf.org/html/draft-iyengar-quic-delayed-ack-00<br=
>=0D
&gt;<br>=0D
I don&#39;t think the two approaches conflict.<br>=0D
<br>=0D
The difference between the two approaches is that the small change to <br=
>=0D
the base specification to use an ACK Ratio 1:10 ensures the default <br>=0D=

return path is at least as good as TCP for common traffic (even with <br>=
=0D
common TCP ACK Thinning). Without this change, the end user could <br>=0D=

experience significant differences in performance between TCP and <br>=0D=

between different QUIC versions over asymmetric paths.=E2=80=A8<br>=0D
<br>=0D
Whereas to me, the transport parameter extension looks like an exciting <=
br>=0D
way to enable many more things, but there are also many ways this could <=
br>=0D
usefully evolve based on CC, offload, pacing etec and I think this will <=
br>=0D
take much more to work-out what is needed, safe and best ... then to <br>=
=0D
reach consensus. We still also need to specify a default ACK Ratio in <br=
>=0D
this case as well.<br>=0D
<br>=0D
Best wishes,<br>=0D
<br>=0D
Gorry=E2=80=A8<br>=0D
&gt; 2020=E5=B9=B44=E6=9C=8828=E6=97=A5(=E7=81=AB) 20:37 Gorry Fairhurst =
&lt;gorry@erg.abdn.ac.uk <br>=0D
&gt; &lt;mailto:gorry@erg.abdn.ac.uk&gt;&gt;:<br>=0D
&gt; &gt;<br>=0D
&gt; &gt; On 27/04/2020 17:19, Lars Eggert wrote:<br>=0D
&gt; &gt;<br>=0D
&gt; &gt; Folks who care about a change here need to prioritize progressi=
ng <br>=0D
&gt; this issue. We&#39;re close to being able to last-call the specs, an=
d <br>=0D
&gt; would like this resolved in time..<br>=0D
&gt; &gt;<br>=0D
&gt; &gt; =E2=80=94<br>=0D
&gt; &gt; You are receiving this because you authored the thread.<br>=0D
&gt; &gt; Reply to this email directly, view it on GitHub, or unsubscribe=
.<br>=0D
&gt; &gt;<br>=0D
&gt; &gt; We=E2=80=99ve completed a round of updated analysis of the prop=
osed change <br>=0D
&gt; to the QUIC spec, using quicly (changing to a 1:10 policy), and <br>=
=0D
&gt; chromium (which currently does 1:10 by default). Our hope is that th=
is <br>=0D
&gt; change to the spec, =C2=A0to actually make standard end-to-end QUIC =
work <br>=0D
&gt; better than TCP over asymmetric paths!<br>=0D
&gt; &gt;<br>=0D
&gt; &gt; This is a short slide deck about the performance of the propose=
d change:<br>=0D
&gt; &gt; https://erg.abdn.ac.uk/users/gorry/ietf/QUIC/QUIC-ack10-24-apri=
l-00.pdf<br>=0D
&gt; &gt;<br>=0D
&gt; &gt; There have been a number of other change made by the QUIC ID ed=
itors <br>=0D
&gt; relating to ACK processing, so we wanted to be sure these results we=
re <br>=0D
&gt; up to date. (These results do not consider additional ACKs after <br=
>=0D
&gt; re-ordering - reflecting the latest text removing that.)<br>=0D
&gt; &gt;<br>=0D
&gt; &gt; We also really hope this will motivate a change the practice of=
 <br>=0D
&gt; forcing of QUIC fallback to TCP (with PEP/Thining) over highly <br>=0D=

&gt; asymmetric paths. People may also be interested in work for L4S to <=
br>=0D
&gt; evaluate the impact of ACK Thining for TCP-Prague.<br>=0D
&gt; &gt;<br>=0D
&gt; &gt; Please do provide feedback, or any questions on this - as Lars =
<br>=0D
&gt; notes, we think the time is running out for considering new changes,=
 <br>=0D
&gt; even relatively simple ones like this.<br>=0D
&gt; &gt;<br>=0D
&gt; &gt; Gorry<br>=0D
&gt; &gt;<br>=0D
&gt; &gt; P.S. First email: <br>=0D
&gt; https://mailarchive.ietf.org/arch/msg/quic/NZBbuY88v0lrVspQE2A5br83a=
sA/<br>=0D
&gt;<br>=0D
&gt;<br>=0D
&gt;<br>=0D
&gt; --<br>=0D
&gt; Kazuho Oku<br>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/issues/3529#issuecomment-622423228">view it on GitHub</a>,=
 or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK72=
VFJP7MKHKYC6HZ3RPLP6XANCNFSM4LOJ4RQA">unsubscribe</a>.<img src=3D"https:/=
/github.com/notifications/beacon/AFTOJKZDG7KY4WMZ3FI6JVTRPLP6XA5CNFSM4LOJ=
4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUMWZPA.g=
if" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment=
-622423228",=0D
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-62=
2423228",=0D
"name": "View Issue"=0D
},=0D
"description": "View this Issue on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eac39ebec32f_a823f890cecd96487966--


From nobody Fri May  1 08:19:24 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 608BC3A13BC for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 08:19:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.374
X-Spam-Level: 
X-Spam-Status: No, score=-2.374 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-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 M3wdTP654b8l for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 08:19:21 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 042053A13B5 for <quic-issues@ietf.org>; Fri,  1 May 2020 08:19:20 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 09052281AB7 for <quic-issues@ietf.org>; Fri,  1 May 2020 08:19:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588346360; bh=o0PP/AFNwHDKEs+VJOa1CxYZfPaJttCCkhJ9/smEgbw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=e2E8e5/ZMxtYfhUAE7WGULVW+ld4ipcTq+4i+LF4+aeMWj4MS3Ol1fQ2xf9TY1RVu xjMdy3OtXpIGwseOFjfFi2WTbZNyx1nUk6552sl3ygdlcH4ddTYshskHNBIfAdEFhr HxBjIyPaJ/XfTRFmLQEqRCEw19tQK/CyJ8YgoE4g=
Date: Fri, 01 May 2020 08:19:19 -0700
From: Nick Banks <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5UR4DNHZOGJKDVJLF4XAPPPEVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/622430128@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac3df7e9a3d_f8d3fe40b8cd9602644a5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: nibanks
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fFnUo5oDGgrQuTQtX4qYnmDym9s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 15:19:22 -0000

----==_mimepart_5eac3df7e9a3d_f8d3fe40b8cd9602644a5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Another (simplier?) option could be to just update keys **much** more often. I've done performance tests with msquic on the effect of updating the key ~once per round trip. There was no noticeable effect on performance. In fact, more often than not, the key update perf tests happen to perform slightly better (within noise tolerance) than without key update.

I'm not suggesting we advocate once a round trip or anything near that; more like every 2^20 packets (or 2^30 bytes?) sent or received (including failed decryptions). As I understand it, this is an ultra conservative number as far as protecting from any kind of attacks, and should be _free_ as far as any performance impact on the connection. This also has the added benefit of exercising the key update scenario more often, which should hopefully improve interoperability of the feature.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622430128
----==_mimepart_5eac3df7e9a3d_f8d3fe40b8cd9602644a5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Another (simplier?) option could be to just update keys <strong>much</strong> more often. I've done performance tests with msquic on the effect of updating the key ~once per round trip. There was no noticeable effect on performance. In fact, more often than not, the key update perf tests happen to perform slightly better (within noise tolerance) than without key update.</p>
<p>I'm not suggesting we advocate once a round trip or anything near that; more like every 2^20 packets (or 2^30 bytes?) sent or received (including failed decryptions). As I understand it, this is an ultra conservative number as far as protecting from any kind of attacks, and should be <em>free</em> as far as any performance impact on the connection. This also has the added benefit of exercising the key update scenario more often, which should hopefully improve interoperability of the feature.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622430128">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZCIVQDM23G2QLY4EDRPLR7PANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6T3HWYSPK6BUGR6E3RPLR7PA5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUMYPMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622430128",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622430128",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eac3df7e9a3d_f8d3fe40b8cd9602644a5--


From nobody Fri May  1 11:54:29 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 37A803A19E5 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 11:54:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 BZ5XddI2GB8O for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 11:54:20 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 54F4A3A19E2 for <quic-issues@ietf.org>; Fri,  1 May 2020 11:54:20 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 1354FC61E27 for <quic-issues@ietf.org>; Fri,  1 May 2020 11:54:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588359259; bh=05R3BVAXDqWMmCbG5Ed3YifWkOt327AC+FjwEigU/v8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vrHq3mZDqBz2pAkd2aI2yRnWb1gVoz38T+miG7DkvSFV68zCNqkIOVgg4UbOlaDnH 0RpOoWZtXYVLV5sIgMmLlzJprKyYfmskthuo1ltSDVNtfs/XW+emO/xKF0Y1P27Veb fr7FsS6LwL4zmjMO/gtafs3C29vZOQDnXDVB5G30=
Date: Fri, 01 May 2020 11:54:19 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3602/push/5007941045@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3602@github.com>
References: <quicwg/base-drafts/pull/3602@github.com>
Subject: Re: [quicwg/base-drafts] editorial advice for h2<->h3 error propagation (#3602)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac705b1a0b_20a93fd0d80cd96851120"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cpuTAECRwAqyk02eQ9PDvWFTGwc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 18:54:26 -0000

----==_mimepart_5eac705b1a0b_20a93fd0d80cd96851120
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue pushed 1 commit.

f8cfee09124ce4518b5365a4554c9ce21ed0ecee  Mike's feedback: invert the advice


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3602/files/f3a8cbda7d96ae93042c53b514044b01480d97be..f8cfee09124ce4518b5365a4554c9ce21ed0ecee

----==_mimepart_5eac705b1a0b_20a93fd0d80cd96851120
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/LPardue" class="user-mention">@LPardue</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/f8cfee09124ce4518b5365a4554c9ce21ed0ecee">f8cfee0</a>  Mike&#39;s feedback: invert the advice</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3602/files/f3a8cbda7d96ae93042c53b514044b01480d97be..f8cfee09124ce4518b5365a4554c9ce21ed0ecee">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7J6QYKQCEHT67TTR3RPMLFXANCNFSM4MS3DGGQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK37JYE42RKVGTNGBRLRPMLFXA5CNFSM4MS3DGG2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTAMJTGE3TKMSQOVZWQIZVGAYDOOJUGEYDINI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3602/files/f3a8cbda7d96ae93042c53b514044b01480d97be..f8cfee09124ce4518b5365a4554c9ce21ed0ecee",
"url": "https://github.com/quicwg/base-drafts/pull/3602/files/f3a8cbda7d96ae93042c53b514044b01480d97be..f8cfee09124ce4518b5365a4554c9ce21ed0ecee",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eac705b1a0b_20a93fd0d80cd96851120--


From nobody Fri May  1 11:59:21 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 B2C073A19FB for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 11:59:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.374
X-Spam-Level: 
X-Spam-Status: No, score=-2.374 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-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 ILEHbe8-B2wx for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 11:59:18 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 63FEF3A19FA for <quic-issues@ietf.org>; Fri,  1 May 2020 11:59:18 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 504AA6608A5 for <quic-issues@ietf.org>; Fri,  1 May 2020 11:59:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588359557; bh=hJurGeGV1JNPRqO2pnSnLB9s3JcxgUD2iwOzkRD/jCE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jngaM0jM7m1zqKiKONPrzdNuPai/eyeLLwKdjqYZ3EymAj0QJMDGABAz+ZgarosRX t3EluioNlQgpb4isneQz7y3D2sa/pzHsie/3dXhNO+PntfN6zBV5iaM4dYuv2h0mWu Q0gZG5BX6+6eV5RYqekwk8u2hyjRFL7G3NwDQnGg=
Date: Fri, 01 May 2020 11:59:17 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6T3O2RHNVKILUIOLF4XBJILEVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/622517738@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac71853f7ec_2cce3fac6d6cd960386af"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ePj4BKNd2ktGzTL7Leo6Y62NMB8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 18:59:20 -0000

----==_mimepart_5eac71853f7ec_2cce3fac6d6cd960386af
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I support a change like this, but I am not qualified to say what the thresholds should be. There certainly isn't a reason to push it to very high limits. This change would not break interoperability, so it's a good one.

Banning CCM might break interoperability for someone, but I'm not too concerned, particularly if we can update all the browsers to not offer it.

A somewhat bigger concern is the lack of key update support in a lot of implementations: I read 9 of 15 servers as supporting it.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622517738
----==_mimepart_5eac71853f7ec_2cce3fac6d6cd960386af
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I support a change like this, but I am not qualified to say what the thresholds should be. There certainly isn't a reason to push it to very high limits. This change would not break interoperability, so it's a good one.</p>
<p>Banning CCM might break interoperability for someone, but I'm not too concerned, particularly if we can update all the browsers to not offer it.</p>
<p>A somewhat bigger concern is the lack of key update support in a lot of implementations: I read 9 of 15 servers as supporting it.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622517738">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7VAC5ERIYPR6RSLGTRPMLYLANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5OAQS5JUSEYATNDYLRPMLYLA5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUNN32Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622517738",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622517738",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eac71853f7ec_2cce3fac6d6cd960386af--


From nobody Fri May  1 12:19:16 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 650E43A1A51 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 12:19:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 A_-9HukTgenE for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 12:19:13 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2CFB33A1A7D for <quic-issues@ietf.org>; Fri,  1 May 2020 12:19:04 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id E7847C60C9D for <quic-issues@ietf.org>; Fri,  1 May 2020 12:19:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588360742; bh=qMwPLFyoQ6pKoXtTCK+AimwjfskwkIaFcEJLbA8T1lc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1vPA4K/dn+mp+9PP7r3D6K9WK4BLaDHm+txifXKMxVMNPLvE2NbnV92/ETWe8ksof b2YIiDsxbRF++thcKZaYmNedlqSwYaOVDSy211JAYKJsQtcgricLjXoENuhbLYreW4 d81B/LLnS40YcrtWIwIRVVphO4PZnowMOhjGOSLY=
Date: Fri, 01 May 2020 12:19:02 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7SOOMFRUQCMPAWZIN4XBLSNEVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/622525183@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac7626d7467_70023fa699acd96823519b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XoQfHzdNmTJM8r43WCYi76mcTDY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 19:19:15 -0000

----==_mimepart_5eac7626d7467_70023fa699acd96823519b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho So your suggestion is that disable_active_migration applies only to the original address and the SPA must always support active migration, because it has to use CID routing?

I don't think that'd be a problem for our use cases, but I'm not sure about others.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-622525183
----==_mimepart_5eac7626d7467_70023fa699acd96823519b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/kazuho/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a> So your suggestion is that disable_active_migration applies only to the original address and the SPA must always support active migration, because it has to use CID routing?</p>
<p>I don't think that'd be a problem for our use cases, but I'm not sure about others.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-622525183">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4XOPC7NQ5BDUVHWP3RPMOCNANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5STUFHNCTUBLZDIYDRPMOCNA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUNPV7Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-622525183",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-622525183",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eac7626d7467_70023fa699acd96823519b--


From nobody Fri May  1 12:29:28 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 461C73A1A91 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 12:29:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 lFEhU8d6Ll0U for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 12:29:25 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3940C3A1A90 for <quic-issues@ietf.org>; Fri,  1 May 2020 12:29:25 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 0E83BC60CFB for <quic-issues@ietf.org>; Fri,  1 May 2020 12:29:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588361364; bh=xKW9TBictvBsfESjPJ9maWW7U4I2LmELd6awkIHflBk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tZ7W2lgIZfyaNZQyqKdOUUEUFJdLQOGYAIa/gZnynIu+uxxbY6s8O0mQG2/K1l571 I5sSZzynQgoyJ5x01l+kA/aUv5feRJXhCDYvfKhKSaIzXp3cFVFl4LfVoIsbWsDx3v 2vKKxKICgSTZsOYXB5rLJIAauR/mW4xJGu32LJxA=
Date: Fri, 01 May 2020 12:29:23 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZSHSP7J7QSLG6DKKF4XBMZHEVBNHHCIZG5OQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3621/review/404354327@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3621@github.com>
References: <quicwg/base-drafts/pull/3621@github.com>
Subject: Re: [quicwg/base-drafts] Use a list for TLS contributors too (#3621)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac7893f282c_61fa3fc0cf2cd95c359061"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wUGSzdyKZjYEGi0ZxZqE7e9LulE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 19:29:27 -0000

----==_mimepart_5eac7893f282c_61fa3fc0cf2cd95c359061
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3621#pullrequestreview-404354327
----==_mimepart_5eac7893f282c_61fa3fc0cf2cd95c359061
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3621#pullrequestreview-404354327">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYL5KFH2L5VCIBNR5DRPMPJHANCNFSM4MW4UKSQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5FOLYXJA3ZDFVQD7LRPMPJHA5CNFSM4MW4UKS2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODAM7KFY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3621#pullrequestreview-404354327",
"url": "https://github.com/quicwg/base-drafts/pull/3621#pullrequestreview-404354327",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eac7893f282c_61fa3fc0cf2cd95c359061--


From nobody Fri May  1 12:49:53 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 44D143A1B92 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 12:49:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.302
X-Spam-Level: 
X-Spam-Status: No, score=-2.302 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-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 OIuC-vaxDnDY for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 12:49:49 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B274D3A1B8F for <quic-issues@ietf.org>; Fri,  1 May 2020 12:49:46 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 8A5286A06B8 for <quic-issues@ietf.org>; Fri,  1 May 2020 12:49:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588362585; bh=z50ZXX1X0smHAMCMhFx5ZuWeUM7XCuVhmHHGVVoiQeU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JmlaWEdagKMVUHAkBYepc7p2DkQcmX+hUA5J85YULv5A28EfqT2r0KaInjgfkW9ei 57BMIED/1MWZXehmoSsFKWw+m3eSnOueQ+VbMK56dzCtZ1C8aiDXehlalD8CJnsmMa BRuOTIEAeaap5qcKSg1eGeX/KZQ5mUCwKzoWeDZo=
Date: Fri, 01 May 2020 12:49:45 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2RVRVJPOXTQRNI7654XBPFTEVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/622536845@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac7d5979bbd_275f3f9e21ecd96c109521"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5LPefTEMFNgIidrE5KnuG_b8sJo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 19:49:51 -0000

----==_mimepart_5eac7d5979bbd_275f3f9e21ecd96c109521
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett 
> So your suggestion is that disable_active_migration applies only to the original address and the SPA must always support active migration, because it has to use CID routing?

Exactly. I think that that would be the correct thing to do, if we are to make changes.

I agree that existing clients might be applying `disable_active_migration` after migrating to SPA, and that they do not want change. But they can remain as they are, because the change in spec does not lead to interoperability issues.

To paraphrase, I think making the aforementioned change is strictly better than doing nothing, because it would be an improvement to some, while not hurting anybody.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-622536845
----==_mimepart_5eac7d5979bbd_275f3f9e21ecd96c109521
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ianswett/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</a></p>
<blockquote>
<p>So your suggestion is that disable_active_migration applies only to the original address and the SPA must always support active migration, because it has to use CID routing?</p>
</blockquote>
<p>Exactly. I think that that would be the correct thing to do, if we are to make changes.</p>
<p>I agree that existing clients might be applying <code>disable_active_migration</code> after migrating to SPA, and that they do not want change. But they can remain as they are, because the change in spec does not lead to interoperability issues.</p>
<p>To paraphrase, I think making the aforementioned change is strictly better than doing nothing, because it would be an improvement to some, while not hurting anybody.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-622536845">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ZQDBH4FR6TKS4UG3RPMRVTANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYXI4K3T7OWEUPWS4TRPMRVTA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUNSRDI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-622536845",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-622536845",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eac7d5979bbd_275f3f9e21ecd96c109521--


From nobody Fri May  1 14:58:08 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 076AE3A15D8 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 14:58:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.374
X-Spam-Level: 
X-Spam-Status: No, score=-2.374 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-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 p8RM8Ty-f-KD for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 14:58:02 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B058C3A15D9 for <quic-issues@ietf.org>; Fri,  1 May 2020 14:58:02 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 4B961521D82 for <quic-issues@ietf.org>; Fri,  1 May 2020 14:58:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588370281; bh=bF4vEZ9XlEddQBQ9+uCFcSI3o8uqNVjZyMjv+XQ1qJ4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zVc/in7s6AHLSV+SM4LeMIogaLsBOMKJ8D1dsZbHDr9Iu8sb4YJ5kyk9zBQFQvloe sObmCjQaWGunBve2th9vOjSOuoMC9fv6g4lbh/qwP3U4LM+grgK2cVDL7AE91KlO07 wKUSnw5zQR4Yscokh1Jlv9kn6PVGRAdKJrf6ETgE=
Date: Fri, 01 May 2020 14:58:01 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3DPVG5NUBFZD5WZYV4XB6GTEVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/622584353@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eac9b693c981_422f3fb0012cd9682036a9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iO1Oa5D_FJznsj7tcbrWB8tdRJY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 21:58:06 -0000

----==_mimepart_5eac9b693c981_422f3fb0012cd9682036a9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

(Tentative) good news on CCM: Kenny identified a security analysis paper and it seems relatively simple to go from that to numbers.

I am not personally concerned about support for key update. 9/15 isn't 15, but that doesn't bother me. It turns out to be a little fiddly to implement, so if people decide to drop connections that hit these limits instead, the effect isn't that bad. Of course, if you want to follow Nick's suggestion, that works too (I remember Dan Bernstein seriously suggesting a cipher that updated every record, back when I first proposed this scheme for TLS).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622584353
----==_mimepart_5eac9b693c981_422f3fb0012cd9682036a9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>(Tentative) good news on CCM: Kenny identified a security analysis paper and it seems relatively simple to go from that to numbers.</p>
<p>I am not personally concerned about support for key update. 9/15 isn't 15, but that doesn't bother me. It turns out to be a little fiddly to implement, so if people decide to drop connections that hit these limits instead, the effect isn't that bad. Of course, if you want to follow Nick's suggestion, that works too (I remember Dan Bernstein seriously suggesting a cipher that updated every record, back when I first proposed this scheme for TLS).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622584353">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5WG73LQYOVFFZTWBLRPNAWTANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5SUXZOWJSNMVJMV4DRPNAWTA5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUN6EII.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622584353",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622584353",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eac9b693c981_422f3fb0012cd9682036a9--


From nobody Fri May  1 15:55:23 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 B69193A17B1 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 15:55:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.007
X-Spam-Level: 
X-Spam-Status: No, score=-7.007 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, 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 6h3qdgopTbPw for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 15:55:19 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9B2143A17AE for <quic-issues@ietf.org>; Fri,  1 May 2020 15:55:19 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 91AC8E078E for <quic-issues@ietf.org>; Fri,  1 May 2020 15:55:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588373718; bh=2r8n2X8JdE/Tnc4FT0XAykZiT2VorjrqBksk5WfkaBM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vEXhJ5NmiPe9tN29F8M1qPFRmrMmL1o424J6geVojS1nlpyo4QwrHjLjd2xLTkusk /6+FdfBSczeaf9BO9zWePDUYJy9bdOlfUshseQKFM5QYv3Qo895JgHHS9059/w8asD +yNKWQHCEhSKuZmpqjMqBKqxFIDmGnTPitkW4m18=
Date: Fri, 01 May 2020 15:55:18 -0700
From: Anthony Rossi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3VF6LQ5JCHOKMLZGF4XCE5NEVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/622601163@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eaca8d681875_9f83fd4a00cd9609068a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: anrossi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NaKjROUxLqLzTlG06JNNP4A_4FY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 01 May 2020 22:55:22 -0000

----==_mimepart_5eaca8d681875_9f83fd4a00cd9609068a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If we're looking for a new bound to initiate a key update, there's precedent in the SSH RFC to rekey after every 1 GB of data transferred. See [here](https://tools.ietf.org/html/rfc4253#section-9)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622601163
----==_mimepart_5eaca8d681875_9f83fd4a00cd9609068a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>If we're looking for a new bound to initiate a key update, there's precedent in the SSH RFC to rekey after every 1 GB of data transferred. See <a href="https://tools.ietf.org/html/rfc4253#section-9" rel="nofollow">here</a></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622601163">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3ZMFONCMG4VZCADMTRPNHNNANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4BKVVL2N7CEX6TVCTRPNHNNA5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUOCHSY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622601163",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622601163",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eaca8d681875_9f83fd4a00cd9609068a--


From nobody Fri May  1 18:17:32 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 E6A433A04BB for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 18:17:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.828
X-Spam-Level: 
X-Spam-Status: No, score=-2.828 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-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 hw4qxGxZLgLQ for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 18:17:28 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7F2FA3A0496 for <quic-issues@ietf.org>; Fri,  1 May 2020 18:17:28 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id EF70A2C19AE for <quic-issues@ietf.org>; Fri,  1 May 2020 18:17:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588382246; bh=4oR3hXIrtXfk9FsX4TNWwtV8QAMxEIPwj6ZDgCe7dWU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=beOKDrKoeecrWxSXzSzY5oe6EgompN7mQ+prXjyJ50j9EgYHzmLiRMZoes2qkkLcB CgroBRCNbjBPtKETqC5txQQXdVgCZTr8TnCrK+/VWOUjlySOCTbbWrXtZevS0sZm37 t6xJHv4fhHERdBC9D6Lf6daAr5ZSg5OIfXFmTW1w=
Date: Fri, 01 May 2020 18:17:26 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2ZW6KAKKKOJQQAVTF4XCVSNEVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/622647876@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eacca26de8ee_44013fb433ecd96c845f3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/g5ysw_SKzZpycwro1S0CeJw99wU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 02 May 2020 01:17:31 -0000

----==_mimepart_5eacca26de8ee_44013fb433ecd96c845f3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I should point out that my "9 of 15" figure is based on the interop matrix, where the client initiates an early update and the server responds. That is a different thing than a server initiating an update when required by the spec, which fewer than 9 servers might do.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622647876
----==_mimepart_5eacca26de8ee_44013fb433ecd96c845f3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I should point out that my "9 of 15" figure is based on the interop matrix, where the client initiates an early update and the server responds. That is a different thing than a server initiating an update when required by the spec, which fewer than 9 servers might do.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622647876">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7C725NJ2KVK4CKZBDRPNYCNANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK42XCV2RX5YM5EC6N3RPNYCNA5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUONURA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622647876",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-622647876",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eacca26de8ee_44013fb433ecd96c845f3--


From nobody Fri May  1 19:05:29 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 7A5023A0844 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 19:05:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.92
X-Spam-Level: 
X-Spam-Status: No, score=-2.92 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, RCVD_IN_MSPIKE_H2=-0.82, 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 kPFBEa1evjNe for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 19:05:24 -0700 (PDT)
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 5F9993A0842 for <quic-issues@ietf.org>; Fri,  1 May 2020 19:05:24 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id E1309282235 for <quic-issues@ietf.org>; Fri,  1 May 2020 19:05:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588385122; bh=zTle1TX/kj4+NRci8pIx3CDY+NDhojOBr/71wuSBr6k=; h=Date:From:To:Subject:From; b=GbirkfAOXLnpG/bIjbVUyl9Cq3jKZRvpbAgiNxa6WojLRVY+3OTnjLBn+xo2VjoWp k0pu36CdYlNnh6yTaC2j0BLA4E/okMZE80RUQ6OicSTnS1BD0Nhf4GR5fivUk10raP 8weHLehB28oMzTaRxgsX6fPWWd/y1acnfM4sEeIQ=
Date: Fri, 01 May 2020 19:05:22 -0700
From: martinduke <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/nit/000000-ab6960@github.com>
Subject: [quicwg/load-balancers] ab6960: chose a different word
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Xpc501b9wf5SXpBtSTETDfzhQko>
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: Sat, 02 May 2020 02:05:27 -0000

  Branch: refs/heads/nit
  Home:   https://github.com/quicwg/load-balancers
  Commit: ab696021278a487e9520f0b330ae6d79d4ec67df
      https://github.com/quicwg/load-balancers/commit/ab696021278a487e9520f0b330ae6d79d4ec67df
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  chose a different word



From nobody Fri May  1 19:07:03 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 27EE33A084E for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 19:06:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.92
X-Spam-Level: 
X-Spam-Status: No, score=-2.92 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, RCVD_IN_MSPIKE_H2=-0.82, 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 BOf3A2BwxZpG for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 19:06:53 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EACEB3A084B for <quic-issues@ietf.org>; Fri,  1 May 2020 19:06:52 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id A15E48C098E for <quic-issues@ietf.org>; Fri,  1 May 2020 19:06:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588385211; bh=Hdv3Wq+N9E4DvhpJGhCfZ5LeKlYoxBR1IDP7WawLT9o=; h=Date:From:To:Subject:From; b=OFcxU7fCFx8slsucu6vEc7MQQpkkU+Ow56VbcHKzkq4egcPek4A0nTqRCXF/1rxtb tnSMm9PrNORzOOoGw/j98zO6z2SEx4gPFsj900/NoM0E7OJWJLC5XLRTHwKEHdeQdq 5ux9Newb7xq+xh1ZAIceHfHAs5ziKjmamEa5DOGw=
Date: Fri, 01 May 2020 19:06:51 -0700
From: martinduke <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/master/85e0cb-38132c@github.com>
Subject: [quicwg/load-balancers] ab6960: chose a different word
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/S33YhImJRvi4305eP5eC9j_kYGY>
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: Sat, 02 May 2020 02:06:54 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/load-balancers
  Commit: ab696021278a487e9520f0b330ae6d79d4ec67df
      https://github.com/quicwg/load-balancers/commit/ab696021278a487e9520f0b330ae6d79d4ec67df
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  chose a different word


  Commit: 38132cf34147a0aa66b0b462f935317b5cb289f1
      https://github.com/quicwg/load-balancers/commit/38132cf34147a0aa66b0b462f935317b5cb289f1
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  Merge pull request #19 from quicwg/nit

chose a different word


Compare: https://github.com/quicwg/load-balancers/compare/85e0cbaa5d47...38132cf34147


From nobody Fri May  1 19:07:07 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 6AD6E3A0851 for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 19:06:54 -0700 (PDT)
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, TVD_SPACE_RATIO=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 Lr8_q_sEGTBg for <quic-issues@ietfa.amsl.com>; Fri,  1 May 2020 19:06:53 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 486AE3A084F for <quic-issues@ietf.org>; Fri,  1 May 2020 19:06:53 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 6C4EAE0E3A for <quic-issues@ietf.org>; Fri,  1 May 2020 19:06:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588385212; bh=awxYlsXszV3EZLY4P9jdtXyWYQhbWaaBQ1w+cFiHTHE=; h=Date:From:To:Subject:From; b=K5rbGlzSQalGgVDOi1pSXfip6Z6b48384oXcikOW76px/2kdtXmoqCpUkflbnRTm8 AQBKE2Z+0sCq/ZceQ/2g8wjF9PXsnmJH38eg4gapSlD/LFyf6IxgTqZ0tvS30epMog TRlMiXUWdfwu+keMjP5ms0u27cE0vy/u2Sq2Kh1g=
Date: Fri, 01 May 2020 19:06:52 -0700
From: martinduke <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/nit/ab6960-000000@github.com>
Subject: [quicwg/load-balancers]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UxQ62P2Fmyp_mWfhZTZUgyUjheU>
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: Sat, 02 May 2020 02:06:54 -0000

  Branch: refs/heads/nit
  Home:   https://github.com/quicwg/load-balancers


From nobody Sat May  2 02:23:08 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 3B8543A0BCC for <quic-issues@ietfa.amsl.com>; Sat,  2 May 2020 02:23:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 qZKJyZ9P6_rq for <quic-issues@ietfa.amsl.com>; Sat,  2 May 2020 02:23:03 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0BF533A0BCB for <quic-issues@ietf.org>; Sat,  2 May 2020 02:23:02 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id C95586A0540 for <quic-issues@ietf.org>; Sat,  2 May 2020 02:23:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588411381; bh=FWmdHfvLvALt1kXSnP3TsnjNvnbN4isqQ/Wy8NkPUI0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pc3bCbt7vyB+i44dY7phq7q2+FKZZOhfSOGlX2KJE5xgp0LCkDnioxiEJh1wAW1G2 7SLOXw2BG8sa1/Tx9/B5f0XE1gR0hMHpd6Otj/g3kyS0rHPDHy1h8tOUQgsfEkMy/v kAswP0HQEFNM6Zw+7xfhwy86VI+eFCzrIMV71Yf0=
Date: Sat, 02 May 2020 02:23:01 -0700
From: Julian Reschke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK33X6BZZRVQ5TT4CAN4XEOPLEVBMPHAEUL5HE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee/38894905@github.com>
In-Reply-To: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee@github.com>
References: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee@github.com>
Subject: Re: [quicwg/base-drafts] Merge pull request #3611 from quicwg/transport/contributor_bullets (dee3761)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ead3bf5b9140_5f993fbb9c8cd95c1442c8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: reschke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/F5ZAcXud1DBAxo74uTcxnA1KhD4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 02 May 2020 09:23:06 -0000

----==_mimepart_5ead3bf5b9140_5f993fbb9c8cd95c1442c8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson - That seems to be a really really unfortunate hack because this now creates invalid XML (if I read the wip grammar correctly, \<blockquote> is not allowed in \<li>).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38894905
----==_mimepart_5ead3bf5b9140_5f993fbb9c8cd95c1442c8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> - That seems to be a really really unfortunate hack because this now creates invalid XML (if I read the wip grammar correctly, &lt;blockquote&gt; is not allowed in &lt;li&gt;).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38894905">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6ZCZRRHFQQF4ZRLOLRPPQ7LANCNFSM4MXTLZ2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4GXRQXORKDZBYZ7U3RPPQ7LA5CNFSM4MXTLZ2KYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBFC7JZ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38894905",
"url": "https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38894905",
"name": "View Commit"
},
"description": "View this Commit on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ead3bf5b9140_5f993fbb9c8cd95c1442c8--


From nobody Sat May  2 02:24:54 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 AF4EE3A0BE3 for <quic-issues@ietfa.amsl.com>; Sat,  2 May 2020 02:24:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.374
X-Spam-Level: 
X-Spam-Status: No, score=-2.374 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.82, SPF_HELO_NONE=0.001, SPF_PASS=-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 NdnpQ07E7eM2 for <quic-issues@ietfa.amsl.com>; Sat,  2 May 2020 02:24:50 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 74F2C3A0BE1 for <quic-issues@ietf.org>; Sat,  2 May 2020 02:24:50 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 7917A520604 for <quic-issues@ietf.org>; Sat,  2 May 2020 02:24:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588411489; bh=ZoRfJMldt3kRTjK6EmOjGUrU9zcFY41Asf3K60T8egw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JSiP/k/ThOzkik4xOkD4dzP8B8hIPf1c3nJYqY3yxm+cSzR3vn2aAjBYfFX4bx5Rt g3i8ef84ACeNMKhYFJYzVNvJoKD7tcVT3tm9Qnuuf1luTupVVIioL7GbFWzzVmfg74 Mn8P7K0ogfZ647KutFXGvX1tytd4ufutS95gMCBk=
Date: Sat, 02 May 2020 02:24:49 -0700
From: Julian Reschke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2BD3CW7P2FZDGAEVN4XEOWDEVBMPHAEUL5IY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee/38894918@github.com>
In-Reply-To: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee@github.com>
References: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee@github.com>
Subject: Re: [quicwg/base-drafts] Merge pull request #3611 from quicwg/transport/contributor_bullets (dee3761)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ead3c6169081_ec33f83ab8cd96c5656e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: reschke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iWhiNBVJ16L6mEq2ltmtsP-fYxA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 02 May 2020 09:24:53 -0000

----==_mimepart_5ead3c6169081_ec33f83ab8cd96c5656e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson - this seems to be a hack that works around the fact that \<li> does not allow \<contact> as child node; it would be better to get this fixed in xml2rfc instead.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38894918
----==_mimepart_5ead3c6169081_ec33f83ab8cd96c5656e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> - this seems to be a hack that works around the fact that &lt;li&gt; does not allow &lt;contact&gt; as child node; it would be better to get this fixed in xml2rfc instead.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38894918">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6MOQFTNY2MMNPMMCLRPPRGDANCNFSM4MXTLZ2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZO2USM4KWKJNEQ4WTRPPRGDA5CNFSM4MXTLZ2KYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBFC7KG.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38894918",
"url": "https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38894918",
"name": "View Commit"
},
"description": "View this Commit on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ead3c6169081_ec33f83ab8cd96c5656e--


From nobody Sat May  2 03:23:00 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 89C273A0D72 for <quic-issues@ietfa.amsl.com>; Sat,  2 May 2020 03:22:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 BxLDp_cLCbUC for <quic-issues@ietfa.amsl.com>; Sat,  2 May 2020 03:22:42 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0FF2B3A0D48 for <quic-issues@ietf.org>; Sat,  2 May 2020 03:22:41 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id C121C6E1317 for <quic-issues@ietf.org>; Sat,  2 May 2020 03:22:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588414960; bh=ofRUl4wX9BDf1ReEZSp8xmBDt6xnbZGGmvdwINw85+8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=luRNVbGMdkbKY+1hGubd1lILWZsnit83q11xjcxps7D1VWAKQBE8Yn3BH4n6k29z8 xxa3samh8ReQViw2Z2OVjFNYfwrgKwuFVNtKAQisR6WsYm48ohRjaYThoV/sbLELTa 5m8P8Ix9vn4a8gL1tfTr31BrX6oKxgNeLdo5I248=
Date: Sat, 02 May 2020 03:22:40 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZPAOHFNTRB74DA5RV4XEVPBEVBMPHAEUL7QE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee/38895489@github.com>
In-Reply-To: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee@github.com>
References: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee@github.com>
Subject: Re: [quicwg/base-drafts] Merge pull request #3611 from quicwg/transport/contributor_bullets (dee3761)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ead49f0b251d_5bd43f86c18cd96c1466f5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xm8BId9o52DdDLdM_9GYjmYeqtg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 02 May 2020 10:22:58 -0000

----==_mimepart_5ead49f0b251d_5bd43f86c18cd96c1466f5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@reschke, yes, we have requested that.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38895489
----==_mimepart_5ead49f0b251d_5bd43f86c18cd96c1466f5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/reschke/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/reschke">@reschke</a>, yes, we have requested that.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38895489">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7ILH74V3AY2O5YS4TRPPX7BANCNFSM4MXTLZ2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYGDMWDPFS4WAOCFMDRPPX7BA5CNFSM4MXTLZ2KYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBFC74B.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38895489",
"url": "https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38895489",
"name": "View Commit"
},
"description": "View this Commit on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ead49f0b251d_5bd43f86c18cd96c1466f5--


From nobody Sat May  2 09:50:26 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 4308D3A150C for <quic-issues@ietfa.amsl.com>; Sat,  2 May 2020 09:50:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.696
X-Spam-Level: 
X-Spam-Status: No, score=-1.696 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 LvDmnPREZlpz for <quic-issues@ietfa.amsl.com>; Sat,  2 May 2020 09:50:20 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4F3FD3A14AB for <quic-issues@ietf.org>; Sat,  2 May 2020 09:50:20 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 399696E1249 for <quic-issues@ietf.org>; Sat,  2 May 2020 09:50:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588438219; bh=L05kLoRChim5RXBJ4DsK/bETm1KpVBn/D40+pwYYb4U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=h/7JqBWB8zdclDueGe2DUtXeIAKdht/aydi2tJolur7ONG/jY5Mn16C2fmz7FjL4u pCmd4pk97Nz/iqZX7G1/2wWhQSHNj9wFn1crbH27KQfeBANYViN8NFEEWoqoDsmdl/ IsiRdxyGwTQzuRT1Up7mXzQOHnDLgiMSZfUK/N7U=
Date: Sat, 02 May 2020 09:50:19 -0700
From: Bob Briscoe <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2UXBLJQ4RLQN7V4G54XGC4XEVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/622982264@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eada4cb28da8_68923fb04e8cd96059924e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: bbriscoe
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qMzc_NgqjgmzVEfLl_v6ZidZeNM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 02 May 2020 16:50:25 -0000

----==_mimepart_5eada4cb28da8_68923fb04e8cd96059924e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm greatly in favour of draft-iyengar-quic-delayed-ack-00 (BTW, where would you prefer me to give review comments about that?)

I am much less keen on any default delayed ACK policy, whether 1:2 as now in quic-transport, or the 2-10/100 numbers proposed in draft-fairhurst-quic-ack-scaling-02

My concerns would melt away if the default policy was explicitly /implementation-dependent/ and the draft instead gave /guidance/ to implementers.
* The draft could still give the same 2-10/100 policy, but as /guidance/ for the current public Internet. 
* The draft should also state the conditions under which this guidance was determined (e.g. Internet paths with BDP between x and y, or whatever).

What's the difference? Stating a default policy implies this is a matter of interoperability. It's not. If we change to giving guidance, I'm sure most implementers will just use the guidance. However, implementers will be free to evolve their default as they gain experience. 

This reduces the possibility that other behaviours will evolve around any default like 2-10/100. For instance, network monitoring using it as a signature. Or congestion controls optimizing around it. In turn, this will reduce the chance of ossification around the first numbers we thought of. 

Senders can always use the ACK frequency frame to ask a receiver to change from its default. Then receivers will gradually learn what senders prefer them to do, and change their default accordingly. IMO, a continually improving default is important for short flows, so senders can avoid requesting a different ACK frequency right from the start.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-622982264
----==_mimepart_5eada4cb28da8_68923fb04e8cd96059924e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I'm greatly in favour of draft-iyengar-quic-delayed-ack-00 (BTW, where would you prefer me to give review comments about that?)</p>
<p>I am much less keen on any default delayed ACK policy, whether 1:2 as now in quic-transport, or the 2-10/100 numbers proposed in draft-fairhurst-quic-ack-scaling-02</p>
<p>My concerns would melt away if the default policy was explicitly /implementation-dependent/ and the draft instead gave /guidance/ to implementers.</p>
<ul>
<li>The draft could still give the same 2-10/100 policy, but as /guidance/ for the current public Internet.</li>
<li>The draft should also state the conditions under which this guidance was determined (e.g. Internet paths with BDP between x and y, or whatever).</li>
</ul>
<p>What's the difference? Stating a default policy implies this is a matter of interoperability. It's not. If we change to giving guidance, I'm sure most implementers will just use the guidance. However, implementers will be free to evolve their default as they gain experience.</p>
<p>This reduces the possibility that other behaviours will evolve around any default like 2-10/100. For instance, network monitoring using it as a signature. Or congestion controls optimizing around it. In turn, this will reduce the chance of ossification around the first numbers we thought of.</p>
<p>Senders can always use the ACK frequency frame to ask a receiver to change from its default. Then receivers will gradually learn what senders prefer them to do, and change their default accordingly. IMO, a continually improving default is important for short flows, so senders can avoid requesting a different ACK frequency right from the start.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3529#issuecomment-622982264">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5SZXPPP646Y4Q4TGTRPRFMXANCNFSM4LOJ4RQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK536C6Q2LISIWE7DATRPRFMXA5CNFSM4LOJ4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUQ7I6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-622982264",
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-622982264",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eada4cb28da8_68923fb04e8cd96059924e--


From nobody Sun May  3 06:37:53 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 E3BA63A0B9B for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 06:37:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.696
X-Spam-Level: 
X-Spam-Status: No, score=-1.696 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 Dzwv0JY3BuoD for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 06:37:49 -0700 (PDT)
Received: from out-15.smtp.github.com (out-15.smtp.github.com [192.30.254.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0F4933A0B9A for <quic-issues@ietf.org>; Sun,  3 May 2020 06:37:49 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 8F4A52615AC for <quic-issues@ietf.org>; Sun,  3 May 2020 06:37:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588513068; bh=NxVcYahYcsc323kyZ/er9laAhBIEMzLtzDsv3aon+lI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1zLUNGx6GUdqNDrktKkMICqywAoG21qxf1LTGI1nKDtG6zPA0WQ+I/A9e0fE9339F IFDSuIrdZAZSCcNbljkCDxwJzBjKnOArNNMp2AxQhR/NwidADwh9r+ZKMxkxVYPnv1 6qUFrfoegYFTlZ2mIlgZo71NVOfX/7+wg/0zCHr8=
Date: Sun, 03 May 2020 06:37:48 -0700
From: Christian Huitema <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2TYOBRCWVAAMLM7HN4XKVCZEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623111609@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eaec92c49c8c_2003fb6baacd96411429d5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: huitema
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/YiiFrMjdtgmqvxRoiIObXNmyBvY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 03 May 2020 13:37:51 -0000

----==_mimepart_5eaec92c49c8c_2003fb6baacd96411429d5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@vasilvv Picoquic pretty much fits in your target category, an endpoint that wants to implement a minimal version of HTTP/3. The strategy was indeed to set the SETTINGS_QPACK_MAX_TABLE_CAPACITY to zero, and also to never attempt Huffman encoding. It turns out that Huffman decoding is mandatory, but Huffman encoding is not.

To gauge the resulting capacity, you can look at the file "h3zero.c" and "h3zero.h" in the [picoquic distribution](https://github.com/private-octopus): 
```
ubuntu@ip-172-31-61-32:~/picoquic/picohttp$ wc h3zero.*
 1407  7726 61150 h3zero.c
  235   897  9024 h3zero.h
 1642  8623 70174 total
```
The code includes Qpack, Huffman, and the formatting and parsing of H3 messages. It uses static tables used for Qpack and Huffman decoding. The Huffman decoding accounts for 327 lines of tables and code in h3zero.c, 23% of the total.

Back to your point, yes there is some complexity, but no it is not overwhelming. The complexity is mostly in analyzing the specs and then coding them. I suppose I could extract "h3zero" in a separate project so minimal implementations could link with it without bothering with Picoquic proper. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623111609
----==_mimepart_5eaec92c49c8c_2003fb6baacd96411429d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/vasilvv/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/vasilvv">@vasilvv</a> Picoquic pretty much fits in your target category, an endpoint that wants to implement a minimal version of HTTP/3. The strategy was indeed to set the SETTINGS_QPACK_MAX_TABLE_CAPACITY to zero, and also to never attempt Huffman encoding. It turns out that Huffman decoding is mandatory, but Huffman encoding is not.</p>
<p>To gauge the resulting capacity, you can look at the file "h3zero.c" and "h3zero.h" in the <a href="https://github.com/private-octopus">picoquic distribution</a>:</p>
<pre><code>ubuntu@ip-172-31-61-32:~/picoquic/picohttp$ wc h3zero.*
 1407  7726 61150 h3zero.c
  235   897  9024 h3zero.h
 1642  8623 70174 total
</code></pre>
<p>The code includes Qpack, Huffman, and the formatting and parsing of H3 messages. It uses static tables used for Qpack and Huffman decoding. The Huffman decoding accounts for 327 lines of tables and code in h3zero.c, 23% of the total.</p>
<p>Back to your point, yes there is some complexity, but no it is not overwhelming. The complexity is mostly in analyzing the specs and then coding them. I suppose I could extract "h3zero" in a separate project so minimal implementations could link with it without bothering with Picoquic proper.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623111609">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7FX4L3NIXIZS6W3GTRPVXSZANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6NW4C3734GZNBGHP3RPVXSZA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUR63OI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623111609",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623111609",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eaec92c49c8c_2003fb6baacd96411429d5--


From nobody Sun May  3 18:49:39 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 9D1E53A0B03 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 18:49:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.097
X-Spam-Level: 
X-Spam-Status: No, score=-3.097 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 jpuoRYfj54Kn for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 18:49:36 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EEF743A0B00 for <quic-issues@ietf.org>; Sun,  3 May 2020 18:49:35 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 2495D8C08D7 for <quic-issues@ietf.org>; Sun,  3 May 2020 18:49:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588556974; bh=xBoI2/4hpLIlKtjbI17jzWkvySG2WjZBvMVS4oRnNLM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XXkDzyJgVzYdoCFdQq7FLbnS1dOTNfgyq9BiRDDiDpMoFUsQONr7XcSW5vpJd0gBp DBJXHqBglELttAs88MFevV1VPYmlwZ7d+yQakoxQ/hRmqwckBOyNKfzEJfZJiiirkW VecUfxLzQEJcmM4BZF/RIIV7W5Y2+zcIdZAk7zm8=
Date: Sun, 03 May 2020 18:49:34 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7CYBQCUB22TVDTFTN4XNK25EVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/623224483@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eaf74ae13e9a_54aa3f9731ecd968648c8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zK8Zakd4zwK4Gh997EeDvxgAtfE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 01:49:38 -0000

----==_mimepart_5eaf74ae13e9a_54aa3f9731ecd968648c8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Based on [this paper analysing CCM](https://link.springer.com/content/pdf/10.1007%2F3-540-36492-7_7.pdf) by Jonsson, I have calculated the bounds on the number of forgeries and encryptions for CCM.  The numbers aren't great, but that probably doesn't matter much for the purposes to which CCM is generally put.

(I'm using the notation from the [AEBounds paper](https://www.isg.rhul.ac.uk/~kp/TLS-AEbounds.pdf) here because that is easier to type than some of what is being used in other papers.  For reference, q is the number of genuine encryptions, l is the length of each in 16 byte blocks, v is the number of forgeries, n is the key length in bits, t is the tag length in bits.)

## Confidentiality

Jonsson puts the advantage an attacker has over a generic PRF at `(ql)^2/2^(n+1)`.

If we assume the same numbers in the AEBounds paper for record/packet size, `l=2^10` (this is for consistency, most QUIC packets will be much smaller, in the order of 2^7, but we might also go as high as 2^12; this being dictated by the MTU).  For AES, `n=2^128`.

To keep the advantage an attacker has to 2^-60 (to match the analysis in TLS), we therefore need to keep q to below 2^24.5.  Somewhat unsurprisingly, that matches the numbers we have for AES-GCM.

## Integrity

Jonsson puts the advantage for an attacker over a generic PRF at `v/2^t + (2^l*(v + q))^2/2^(n+1)`.  As the first term is negligible even for large v (up to 2^64), we consider the second term alone and aim for a bound on the advantage of 2^-57 to match the analysis for other ciphers.

That leaves us with `v+q <= 2^26`.  As q is already established to be 2^24.5, we can say that v should be limited to 2^25 (or `log2(2^26 - 2^24.5)` if you want to be precise).

(As a side note, for t=64, as in AEAD_AES_128_CCM_8, the first term becomes relevant and our security bound limits the number of forgeries to 2^7, which is probably a bit limiting in practice.  That's good justification for not enabling AEAD_AES_128_CCM_8 by default; though different applications might use a different target bound than 2^-57.)

## Caveat

I'm an not a cryptographer.  These papers all read like chicken-chicken-chicken.  My calculation

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-623224483
----==_mimepart_5eaf74ae13e9a_54aa3f9731ecd968648c8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Based on <a href="https://link.springer.com/content/pdf/10.1007%2F3-540-36492-7_7.pdf" rel="nofollow">this paper analysing CCM</a> by Jonsson, I have calculated the bounds on the number of forgeries and encryptions for CCM.  The numbers aren't great, but that probably doesn't matter much for the purposes to which CCM is generally put.</p>
<p>(I'm using the notation from the <a href="https://www.isg.rhul.ac.uk/~kp/TLS-AEbounds.pdf" rel="nofollow">AEBounds paper</a> here because that is easier to type than some of what is being used in other papers.  For reference, q is the number of genuine encryptions, l is the length of each in 16 byte blocks, v is the number of forgeries, n is the key length in bits, t is the tag length in bits.)</p>
<h2>Confidentiality</h2>
<p>Jonsson puts the advantage an attacker has over a generic PRF at <code>(ql)^2/2^(n+1)</code>.</p>
<p>If we assume the same numbers in the AEBounds paper for record/packet size, <code>l=2^10</code> (this is for consistency, most QUIC packets will be much smaller, in the order of 2^7, but we might also go as high as 2^12; this being dictated by the MTU).  For AES, <code>n=2^128</code>.</p>
<p>To keep the advantage an attacker has to 2^-60 (to match the analysis in TLS), we therefore need to keep q to below 2^24.5.  Somewhat unsurprisingly, that matches the numbers we have for AES-GCM.</p>
<h2>Integrity</h2>
<p>Jonsson puts the advantage for an attacker over a generic PRF at <code>v/2^t + (2^l*(v + q))^2/2^(n+1)</code>.  As the first term is negligible even for large v (up to 2^64), we consider the second term alone and aim for a bound on the advantage of 2^-57 to match the analysis for other ciphers.</p>
<p>That leaves us with <code>v+q &lt;= 2^26</code>.  As q is already established to be 2^24.5, we can say that v should be limited to 2^25 (or <code>log2(2^26 - 2^24.5)</code> if you want to be precise).</p>
<p>(As a side note, for t=64, as in AEAD_AES_128_CCM_8, the first term becomes relevant and our security bound limits the number of forgeries to 2^7, which is probably a bit limiting in practice.  That's good justification for not enabling AEAD_AES_128_CCM_8 by default; though different applications might use a different target bound than 2^-57.)</p>
<h2>Caveat</h2>
<p>I'm an not a cryptographer.  These papers all read like chicken-chicken-chicken.  My calculation</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-623224483">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZYUDHNRPPFMJJKRHDRPYNK5ANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3KERHWT3CERC7477LRPYNK5A5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUS2NIY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-623224483",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-623224483",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eaf74ae13e9a_54aa3f9731ecd968648c8--


From nobody Sun May  3 20:29:54 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 223263A0B95 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 20:29:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 6UCESSfXbk-3 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 20:29:50 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D00F63A0BA0 for <quic-issues@ietf.org>; Sun,  3 May 2020 20:29:50 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id CB4142C1C65 for <quic-issues@ietf.org>; Sun,  3 May 2020 20:29:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588562989; bh=lNElqBSEeXT2pet2km0w1DxokJAq6LK4seCShjunZp4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KQ7UePXeWwzreMORHpEVocMUQEz85zkLw6rMuqk3NYsniMLxUram2tUlsn+mT0cbU H9B1xVQiAi1B4+dbHGbS92gEAkLazD1DCwUzCCuPXXEh3rTogXrMFdLLESiA3GDyrK Wh/vU3E3ObMtqJuVhcpGgdX71d3sCfQZYTVpYtgE=
Date: Sun, 03 May 2020 20:29:49 -0700
From: Antoine Delignat-Lavaud <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYGE5FSVLA36FTRAAF4XNWS3EVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/623240676@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eaf8c2dba96d_722c3f9160ccd9641517f7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ad-l
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Sy8iS_cBkIjz2vQ7D2b7SAt1ZGk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 03:29:52 -0000

----==_mimepart_5eaf8c2dba96d_722c3f9160ccd9641517f7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The shape of the bound seems plausible but I'll start a thread with the cryptographers to check everything

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-623240676
----==_mimepart_5eaf8c2dba96d_722c3f9160ccd9641517f7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The shape of the bound seems plausible but I'll start a thread with the cryptographers to check everything</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-623240676">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYOBLQBMXYB24M3BU3RPYZC3ANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK37VHNJUHPEQOKHJ5TRPYZC3A5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUS6LZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-623240676",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-623240676",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eaf8c2dba96d_722c3f9160ccd9641517f7--


From nobody Sun May  3 21:50:43 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 60B3A3A0C05 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:50:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 Ce_VE7CvwD7F for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:50:40 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0C90A3A0C04 for <quic-issues@ietf.org>; Sun,  3 May 2020 21:50:39 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 2080D660D06 for <quic-issues@ietf.org>; Sun,  3 May 2020 21:50:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588567839; bh=yBuD1ZqKz1lNYGDiXWThYwWyItu/TLWV/7J7HcWMTR8=; h=Date:From:To:Subject:From; b=isizw2oIcp9XojJim9n2xD9zx2Exm2PCMcwkt+Rpmc1LiaEkgJfKYT3K2jVp+Yfmr 47T9pIqXsHbLd/4cAy1R4dPUEh4FY3JFeV40CPKIsTusnYc4tl5E5EzEs00iMasBcV O6TjNYI9SdIVRCQKOMuxMGO6znf72Lwd58B4MmrA=
Date: Sun, 03 May 2020 21:50:39 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/d50128-7c1919@github.com>
Subject: [quicwg/base-drafts] 3b2a28: Use a list for TLS contributors too
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yX5TqMDeRwIk_YwCRhGO7lCOlsQ>
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: Mon, 04 May 2020 04:50:41 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3b2a284675735e2be6b8fe97d977f12ce7df57d2
      https://github.com/quicwg/base-drafts/commit/3b2a284675735e2be6b8fe97d977f12ce7df57d2
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Use a list for TLS contributors too


  Commit: 7c19197ca32011ba80fdfbdb12ce330133fe6bde
      https://github.com/quicwg/base-drafts/commit/7c19197ca32011ba80fdfbdb12ce330133fe6bde
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-04 (Mon, 04 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #3621 from quicwg/list-tls-contribs

Use a list for TLS contributors too


Compare: https://github.com/quicwg/base-drafts/compare/d50128221a55...7c19197ca320


From nobody Sun May  3 21:50: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 78F683A0C05 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:50:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 lLyDGgWSvjJz for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:50:41 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 67A343A0C04 for <quic-issues@ietf.org>; Sun,  3 May 2020 21:50:41 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id AD2495205DF for <quic-issues@ietf.org>; Sun,  3 May 2020 21:50:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588567839; bh=thol5YATN6BdGMMMXsDeVd2W7H6RbIKSzKLu/GUuSik=; h=Date:From:To:Subject:From; b=oQ/VU0/HMgo47uJLpjG39HKhLDq11AeJtCELvBE6TpvqFBoQKoC7QkwzcE32xyexG EGGj2pjX5b7qJFMjA2i/5CboQy8uGvXd5N06Cmk/UVFkondgTU+BGiDCC9gKfI/HAu ZiBodKtjHA4uLgWe0pG6wIx6WBm0iaPVD3F/AEQ4=
Date: Sun, 03 May 2020 21:50:39 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/list-tls-contribs/3b2a28-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VG_2ayp-HMrmgqUj_9Xp-Y3o4G4>
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: Mon, 04 May 2020 04:50:42 -0000

  Branch: refs/heads/list-tls-contribs
  Home:   https://github.com/quicwg/base-drafts


From nobody Sun May  3 21:50:59 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 AFD223A0C05 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:50:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 Xz94xjoRRbcO for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:50:52 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E093E3A0C01 for <quic-issues@ietf.org>; Sun,  3 May 2020 21:50:51 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 6BD4E1C05FD for <quic-issues@ietf.org>; Sun,  3 May 2020 21:50:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588567849; bh=HPk9YH40CNpzeJhCIMK6AZU5ZJkX4XdqNeiGEo7/4Ew=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nOKPx0pjgYBw6qmYbLN84DOFI5Q6wSjU1X5NbXCRwjV9YEkguR74usqJShWfPIbCC lI06PepLh+EoTw9NgVos2O0NIrTQVm35lLFyCyPTfetyJINbkt49u5BWEXNhd6MJy8 7Lc7s2Lo/7aUtGFAbRJXPu97UphIPU1I9Q2tsz90=
Date: Sun, 03 May 2020 21:50:49 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3X4UKT5AVBCRTVAK54XOACTEVBNHHCIZG5OQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3621/issue_event/3298283156@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3621@github.com>
References: <quicwg/base-drafts/pull/3621@github.com>
Subject: Re: [quicwg/base-drafts] Use a list for TLS contributors too (#3621)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eaf9f295b99f_8403ff5afacd96c1572f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-YMn4dk-IWmZriJEG6t_JdfCCcI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 04:50:54 -0000

----==_mimepart_5eaf9f295b99f_8403ff5afacd96c1572f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3621 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3621#event-3298283156
----==_mimepart_5eaf9f295b99f_8403ff5afacd96c1572f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="610590068" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3621" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3621/hovercard" href="https://github.com/quicwg/base-drafts/pull/3621">#3621</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3621#event-3298283156">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7QOWJPBDTQS3UPKY3RPZCSTANCNFSM4MW4UKSQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK533BYZVULHTGLWPLDRPZCSTA5CNFSM4MW4UKS2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYSL45FA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3621#event-3298283156",
"url": "https://github.com/quicwg/base-drafts/pull/3621#event-3298283156",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eaf9f295b99f_8403ff5afacd96c1572f--


From nobody Sun May  3 21:51:16 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 4377B3A0C07 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:51:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.039
X-Spam-Level: 
X-Spam-Status: No, score=-1.039 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 ei3v1WDgbvbZ for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:51:14 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 270563A0C05 for <quic-issues@ietf.org>; Sun,  3 May 2020 21:51:14 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 2A134E00A0 for <quic-issues@ietf.org>; Sun,  3 May 2020 21:51:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588567873; bh=RO6I3rgPwM27myk19lW5NHlPlr6pmUtXcqCiqTHd4Qg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eEForCv1EL1aCIIVsJo1V2cRuPM2Mn19CFX2yGs7tQR6gK3aGseuIt1Hn0h9iaQFC 2CCSkg3P2FGob/UpWzV29r92Sn1m5Lbe5KcOtQFDs61TacDQJ/fOUMuXrFlVszxvjH 6gMgJxDsOuKxCYK5SDmLeTQ/jK4lGMqhbJX0UJN4=
Date: Sun, 03 May 2020 21:51:13 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4IJWN6Y4IOQ4C6MVV4XOAEDEVBNHHCIUKPEA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3612/review/404708045@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3612@github.com>
References: <quicwg/base-drafts/pull/3612@github.com>
Subject: Re: [quicwg/base-drafts] Initial Contributors for HTTP (#3612)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eaf9f4119c4c_61b63fee714cd96c541f7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/e6add82Jk0YTjC3-1dy72c9tSUg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 04:51:16 -0000

----==_mimepart_5eaf9f4119c4c_61b63fee714cd96c541f7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3612#pullrequestreview-404708045
----==_mimepart_5eaf9f4119c4c_61b63fee714cd96c541f7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3612#pullrequestreview-404708045">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZSM4B72XHUWNGQDHTRPZCUDANCNFSM4MUAISBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2OGKHW44ZA3QMVMGDRPZCUDA5CNFSM4MUAISBKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODAPVVTI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3612#pullrequestreview-404708045",
"url": "https://github.com/quicwg/base-drafts/pull/3612#pullrequestreview-404708045",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eaf9f4119c4c_61b63fee714cd96c541f7--


From nobody Sun May  3 21:51:40 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 B71143A0C05 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:51:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZTCYj5pg9_Bs for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:51:37 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9A2063A0C07 for <quic-issues@ietf.org>; Sun,  3 May 2020 21:51:37 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id CD10066091E for <quic-issues@ietf.org>; Sun,  3 May 2020 21:51:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588567896; bh=6EHPXk1Z7j/qv15cVVN7u2va6qfV5Iw1KTIrziqSMjc=; h=Date:From:To:Subject:From; b=pdyONA/l7B9MQCMLCIRstg75VZpuir+eQ3AWzOL8Pvg3ABTI7jj05hcaQ96H7Xylr Wxt1dC33Xpn0dx0bk9pWfI0Rxxd8KBrsqwPABekmKjQnH9WcLSG+9CxJNpLH43Di6Z 4q4A4GMGltuWbn7FxDBQgYYE+qc3FZUliPGAtLgs=
Date: Sun, 03 May 2020 21:51:36 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1cd7a1-3e7e2e@github.com>
Subject: [quicwg/base-drafts] 3e7e2e: Script updating gh-pages from 7c19197c. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/h8k04FxactGfLnc14TNJ1BjPYBc>
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: Mon, 04 May 2020 04:51:39 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3e7e2e137e8533ec5815f0736cbd1e09f467fa03
      https://github.com/quicwg/base-drafts/commit/3e7e2e137e8533ec5815f0736cbd1e09f467fa03
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-04 (Mon, 04 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 7c19197c. [ci skip]



From nobody Sun May  3 21:51:49 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 34DD93A0C05 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:51:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 EbHCzKRmR2Bd for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:51:47 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 024C13A0C07 for <quic-issues@ietf.org>; Sun,  3 May 2020 21:51:46 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 325ED5203AE for <quic-issues@ietf.org>; Sun,  3 May 2020 21:51:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588567906; bh=6VzkuBRnT1Rtd2VoPU8i0ZYPzedVthZiAPQCY4NFEHA=; h=Date:From:To:Subject:From; b=bez6lHp3QFO7e3vGIK21G3AuY3yCB772VKCW+SBI75hwloqoz2fW1Yc2zkxEjKRJG DmdzApoCM4e+MBHDCb4uIR/AAGhfj6KnPIDKaws9EbobDKAvOHJJH2zEBcO5hfOvkT ryPBGlsBqoQ2bJ2iJz3UyMG2bl7RTG6i6O8SbIhI=
Date: Sun, 03 May 2020 21:51:46 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3e7e2e-9e6fe5@github.com>
Subject: [quicwg/base-drafts] 9e6fe5: Script updating archive at 2020-05-04T04:51:28Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Cf7cNDlkNQjUQIhV_Ivw5Wmc_Gc>
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: Mon, 04 May 2020 04:51:48 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9e6fe51f5b2bdc76f5dab4ae2c8fab8be36cf412
      https://github.com/quicwg/base-drafts/commit/9e6fe51f5b2bdc76f5dab4ae2c8fab8be36cf412
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-04 (Mon, 04 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-04T04:51:28Z. [ci skip]



From nobody Sun May  3 21:52:23 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 769C03A0C09 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:52:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.039
X-Spam-Level: 
X-Spam-Status: No, score=-1.039 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 I8vZIeagKF0y for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:52:21 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5969D3A0C07 for <quic-issues@ietf.org>; Sun,  3 May 2020 21:52:21 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 87899E0064 for <quic-issues@ietf.org>; Sun,  3 May 2020 21:52:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588567940; bh=yr+G7aayMFDp0BTQx0iSK7t8uNSzi5PZpvNsGF2rx0I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cza9Cjk0vg37H4+OTlq1IRThyIXKh2rLKHMOMCVSCG3YGIfFT9HMcbXJsMnn/F4tA oisfm+aseDhUYqtKW+5wVoolOxvbh+CDaF9YuIPKQpshoVyDrNsTSPc92lmQFdZbfh ooHNtzVAgsS3dLdmEyyU4RahF1slloeBCQVQr4Aw=
Date: Sun, 03 May 2020 21:52:20 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6LIBDRF4SEJ7XHC354XOAIJEVBNHHCIZBEDA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3618/review/404708262@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3618@github.com>
References: <quicwg/base-drafts/pull/3618@github.com>
Subject: Re: [quicwg/base-drafts] recovery: fix broken reference to TLS, "Discarding Initial Keys" (#3618)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eaf9f84772fe_6af3ffa2e8cd968102079"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/87p0EPW5DILQU65_QtE26Fcn4wo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 04:52:22 -0000

----==_mimepart_5eaf9f84772fe_6af3ffa2e8cd968102079
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3618#pullrequestreview-404708262
----==_mimepart_5eaf9f84772fe_6af3ffa2e8cd968102079
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3618#pullrequestreview-404708262">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4OEC42SRE3LZMBSILRPZCYJANCNFSM4MW2VMTA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7Q6A2C5FHPZ6PU7CTRPZCYJA5CNFSM4MW2VMTKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODAPVXJQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3618#pullrequestreview-404708262",
"url": "https://github.com/quicwg/base-drafts/pull/3618#pullrequestreview-404708262",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eaf9f84772fe_6af3ffa2e8cd968102079--


From nobody Sun May  3 21:53:52 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 2498B3A0C08 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:53:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 bGduQJDU70ob for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 21:53:48 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 424CC3A0C07 for <quic-issues@ietf.org>; Sun,  3 May 2020 21:53:48 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id E96C19604FE for <quic-issues@ietf.org>; Sun,  3 May 2020 21:53:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588568026; bh=OOKsuOGIO3P56Mj8kpsNzKY+2+mybOs94mVeZBBqaDg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CcXWkluJ3k4WeALo0Sw8lhGbjp2djQfv8NQ2NxGqSv308bi5DhIgVzg3C/LJXXhDq 5xkulkkhS5lgNvSH8lCb+Na48GkrPT4t6S5b7R0ewGEBQIVNy2a9e9RJne+VhLoMC9 GvogjKiH7OVbpFtUNeUkvQVE7BPYzHi3DhlHAOO8=
Date: Sun, 03 May 2020 21:53:46 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK56OEUMXBTIJZJKK4F4XOANVEVBNHHCIZ5LBI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3623/review/404708350@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3623@github.com>
References: <quicwg/base-drafts/pull/3623@github.com>
Subject: Re: [quicwg/base-drafts] Update ACK generation policy (#3623)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eaf9fdad9583_47fb3f9139ecd95c456bc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/J-vcxJT_QOemLRmFMQcVv99qhM8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 04:53:50 -0000

----==_mimepart_5eaf9fdad9583_47fb3f9139ecd95c456bc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.

Copyedit only.  I'll let this debate continue.

> @@ -3261,8 +3261,14 @@ a max_ack_delay of 0 is used. The sender uses the receiver's `max_ack_delay`
 value in determining timeouts for timer-based retransmission, as detailed in
 Section 5.2.1 of {{QUIC-RECOVERY}}.
 
-An ACK frame SHOULD be generated for at least every second ack-eliciting packet.
-This recommendation is in keeping with standard practice for TCP {{?RFC5681}}.
+

```suggestion
```

> @@ -3261,8 +3261,14 @@ a max_ack_delay of 0 is used. The sender uses the receiver's `max_ack_delay`
 value in determining timeouts for timer-based retransmission, as detailed in
 Section 5.2.1 of {{QUIC-RECOVERY}}.
 
-An ACK frame SHOULD be generated for at least every second ack-eliciting packet.
-This recommendation is in keeping with standard practice for TCP {{?RFC5681}}.
+
+An ACK frame SHOULD be generated for at least every 10th ack-eliciting packet
+(the QUIC IW). A receiver could send an ACK frame at least every second 
+ack-elicitingpacket (recommended practice for TCP {{?RFC5681}}). QUIC permits 

```suggestion
ack-eliciting packet (recommended practice for TCP {{?RFC5681}}). QUIC permits 
```

> @@ -3261,8 +3261,14 @@ a max_ack_delay of 0 is used. The sender uses the receiver's `max_ack_delay`
 value in determining timeouts for timer-based retransmission, as detailed in
 Section 5.2.1 of {{QUIC-RECOVERY}}.
 
-An ACK frame SHOULD be generated for at least every second ack-eliciting packet.
-This recommendation is in keeping with standard practice for TCP {{?RFC5681}}.
+
+An ACK frame SHOULD be generated for at least every 10th ack-eliciting packet
+(the QUIC IW). A receiver could send an ACK frame at least every second 
+ack-elicitingpacket (recommended practice for TCP {{?RFC5681}}). QUIC permits 
+a larger ratio between ACKs and data,which can reduce

```suggestion
a larger ratio between ACKs and data, which can reduce
```

> @@ -3261,8 +3261,14 @@ a max_ack_delay of 0 is used. The sender uses the receiver's `max_ack_delay`
 value in determining timeouts for timer-based retransmission, as detailed in
 Section 5.2.1 of {{QUIC-RECOVERY}}.
 
-An ACK frame SHOULD be generated for at least every second ack-eliciting packet.
-This recommendation is in keeping with standard practice for TCP {{?RFC5681}}.
+
+An ACK frame SHOULD be generated for at least every 10th ack-eliciting packet
+(the QUIC IW). A receiver could send an ACK frame at least every second 
+ack-elicitingpacket (recommended practice for TCP {{?RFC5681}}). QUIC permits 
+a larger ratio between ACKs and data,which can reduce
+the number of ACK frames that are sent and need to be processed.
+The receiver can provide a higher rate of acknowledgements
+(e.g. every ack-eliciting packet) for the first 100 packets.

```suggestion
(e.g., every ack-eliciting packet) for the first 100 packets.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3623#pullrequestreview-404708350
----==_mimepart_5eaf9fdad9583_47fb3f9139ecd95c456bc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<p>Copyedit only.  I'll let this debate continue.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3623#discussi=
on_r419212957">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3261,8 +3261,14 @@ a max_ack_delay of =
0 is used. The sender uses the receiver&#39;s `max_ack_delay`=0D
 value in determining timeouts for timer-based retransmission, as detaile=
d in=0D
 Section 5.2.1 of {{QUIC-RECOVERY}}.=0D
 =0D
-An ACK frame SHOULD be generated for at least every second ack-eliciting=
 packet.=0D
-This recommendation is in keeping with standard practice for TCP {{?RFC5=
681}}.=0D
+=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3623#discussi=
on_r419213002">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3261,8 +3261,14 @@ a max_ack_delay of =
0 is used. The sender uses the receiver&#39;s `max_ack_delay`=0D
 value in determining timeouts for timer-based retransmission, as detaile=
d in=0D
 Section 5.2.1 of {{QUIC-RECOVERY}}.=0D
 =0D
-An ACK frame SHOULD be generated for at least every second ack-eliciting=
 packet.=0D
-This recommendation is in keeping with standard practice for TCP {{?RFC5=
681}}.=0D
+=0D
+An ACK frame SHOULD be generated for at least every 10th ack-eliciting p=
acket=0D
+(the QUIC IW). A receiver could send an ACK frame at least every second =
=0D
+ack-elicitingpacket (recommended practice for TCP {{?RFC5681}}). QUIC pe=
rmits =0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-ack-elicitingpacket (recommended practice for=
 TCP {{?RFC5681}}). QUIC permits =0D
+ack-eliciting packet (recommended practice for TCP {{?RFC5681}}). QUIC p=
ermits =0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3623#discussi=
on_r419213017">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3261,8 +3261,14 @@ a max_ack_delay of =
0 is used. The sender uses the receiver&#39;s `max_ack_delay`=0D
 value in determining timeouts for timer-based retransmission, as detaile=
d in=0D
 Section 5.2.1 of {{QUIC-RECOVERY}}.=0D
 =0D
-An ACK frame SHOULD be generated for at least every second ack-eliciting=
 packet.=0D
-This recommendation is in keeping with standard practice for TCP {{?RFC5=
681}}.=0D
+=0D
+An ACK frame SHOULD be generated for at least every 10th ack-eliciting p=
acket=0D
+(the QUIC IW). A receiver could send an ACK frame at least every second =
=0D
+ack-elicitingpacket (recommended practice for TCP {{?RFC5681}}). QUIC pe=
rmits =0D
+a larger ratio between ACKs and data,which can reduce=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-a larger ratio between ACKs and data,which ca=
n reduce=0D
+a larger ratio between ACKs and data, which can reduce=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3623#discussi=
on_r419213048">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3261,8 +3261,14 @@ a max_ack_delay of =
0 is used. The sender uses the receiver&#39;s `max_ack_delay`=0D
 value in determining timeouts for timer-based retransmission, as detaile=
d in=0D
 Section 5.2.1 of {{QUIC-RECOVERY}}.=0D
 =0D
-An ACK frame SHOULD be generated for at least every second ack-eliciting=
 packet.=0D
-This recommendation is in keeping with standard practice for TCP {{?RFC5=
681}}.=0D
+=0D
+An ACK frame SHOULD be generated for at least every 10th ack-eliciting p=
acket=0D
+(the QUIC IW). A receiver could send an ACK frame at least every second =
=0D
+ack-elicitingpacket (recommended practice for TCP {{?RFC5681}}). QUIC pe=
rmits =0D
+a larger ratio between ACKs and data,which can reduce=0D
+the number of ACK frames that are sent and need to be processed.=0D
+The receiver can provide a higher rate of acknowledgements=0D
+(e.g. every ack-eliciting packet) for the first 100 packets.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-(e.g. every ack-eliciting packet) for the fir=
st 100 packets.=0D
+(e.g., every ack-eliciting packet) for the first 100 packets.=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3623#pullrequestreview-404708350">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K6TVEJGRGD7KJN6GQDRPZC5VANCNFSM4MXD7XDQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK55D2BIS67BRRRBFBDRPZC5VA5CNFSM4=
MXD7XD2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODAPVX7Q.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3623#pullrequestrev=
iew-404708350",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3623#pullrequestreview=
-404708350",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eaf9fdad9583_47fb3f9139ecd95c456bc--


From nobody Sun May  3 22:30:45 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 584B83A0C54 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 22:30:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 YklTqJJOWThL for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 22:30:43 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1B38B3A0C50 for <quic-issues@ietf.org>; Sun,  3 May 2020 22:30:42 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 213AEC6049E for <quic-issues@ietf.org>; Sun,  3 May 2020 22:30:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588570242; bh=9nzzLUPcP1+3r6zAPDDaBRtxgOoOZPanG7QkGjxDelc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CZYM47+GSG/sztBY6ENpaIiBIhSv9tI4WzV+42Ji791Oqp7WQeqKNuzzsZ6gbJaRw vbodABsfahyS+bN22MvjBAhZ5JD6xqj/+UGaeYc+Bex+xCKWeQASvIo4OVKUP+ZRFW 1ppGIVO46a85I2zkUUqxUPUKrJdGhqJ36dHIZ3zw=
Date: Sun, 03 May 2020 22:30:42 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK42ABNMTZM3LWAYSNV4XOEYFEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623264799@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eafa88211af5_15843fae46acd96828667f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AlfcTjSoqZ7qcPp9gxm4FgX6UNQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 05:30:44 -0000

----==_mimepart_5eafa88211af5_15843fae46acd96828667f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

```
$ gcc -Os -c -o h3zero.o h3zero.c && strip h3zero.o && wc -c h3zero.o
13488 h3zero.o
$ clang -Os -c -o h3zero.o h3zero.c && strip h3zero.o && wc -c h3zero.o
13456 h3zero.o
```

Not sure if this is helpful or not.  A constrained implementation might find 13k of object code horrifying.  The `picohttp_ct` program compiled with `-Os` and stripped is 685816 bytes, which isn't exactly lean, but it makes the 13k appear reasonable.

What is the benchmark here?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623264799
----==_mimepart_5eafa88211af5_15843fae46acd96828667f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<pre><code>$ gcc -Os -c -o h3zero.o h3zero.c &amp;&amp; strip h3zero.o &amp;&amp; wc -c h3zero.o
13488 h3zero.o
$ clang -Os -c -o h3zero.o h3zero.c &amp;&amp; strip h3zero.o &amp;&amp; wc -c h3zero.o
13456 h3zero.o
</code></pre>
<p>Not sure if this is helpful or not.  A constrained implementation might find 13k of object code horrifying.  The <code>picohttp_ct</code> program compiled with <code>-Os</code> and stripped is 685816 bytes, which isn't exactly lean, but it makes the 13k appear reasonable.</p>
<p>What is the benchmark here?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623264799">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5UTG2NMHBSWWMBPPTRPZHIFANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2CHJGXHDD3ET557ETRPZHIFA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUTEIHY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623264799",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623264799",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eafa88211af5_15843fae46acd96828667f--


From nobody Sun May  3 22:41:27 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 D3B7A3A0C67 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 22:41:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 nCoBK5-40KdX for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 22:41:24 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8BD703A0C66 for <quic-issues@ietf.org>; Sun,  3 May 2020 22:41:24 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id B17382C0CC9 for <quic-issues@ietf.org>; Sun,  3 May 2020 22:41:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588570883; bh=zal30yNEPkf4coKzkk0VRRSFcMru4nWZGhpMV/qW0dY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=G7IBDW05v2NQ5VH5S2cfGqOltpkHsSftkAO3PsAWS9HR37ETbSAYppelOub5w10Vb SRqBfnz4A2C/64vAFbps3mjuXv8dAao8LlkynV6dbBxzhlkbuRGPbiAlOTruIsK5qs tfKEJK26ThIaAFNIHPflzjJiS/G69E7wPMRcu190=
Date: Sun, 03 May 2020 22:41:23 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7U5XQDBOJ6IQ3ZNT54XOGAHEVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/623267502@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eafab03a1a4e_5ac53ff87d4cd96024402"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-_X5V4djo6x1NnR1tu051LlQg98>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 05:41:26 -0000

----==_mimepart_5eafab03a1a4e_5ac53ff87d4cd96024402
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

A truth table might help here.

... | migration supported (no signal) | disable_active_migration set | 
---|---|---|
no preferred address | normal (migrate as you like);  | don't migrate |
preferred address | normal (migrate at your leisure) | don't migrate |

Right now, our definition of disable_active_migration is a simple "don't migrate".  But the argument here says that the server that provides a preferred address is *probably* capable of handling migrations on the basis that it has to support one.  We might insist on the source address not change, but the fact is that some NATs (those with address-dependent mappings) will change the source address.

Changing to a definition where disable_active_migration is instead "don't move to a new address unless you use a preferred address" is a little more complicated, but doable.

Is it worth the extra complexity this late in the process?  Is that complexity justified when it would be trivially possible to define another extension that said "I support migration on my preferred address"?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-623267502
----==_mimepart_5eafab03a1a4e_5ac53ff87d4cd96024402
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>A truth table might help here.</p>
<table role="table">
<thead>
<tr>
<th>...</th>
<th>migration supported (no signal)</th>
<th>disable_active_migration set</th>
</tr>
</thead>
<tbody>
<tr>
<td>no preferred address</td>
<td>normal (migrate as you like);</td>
<td>don't migrate</td>
</tr>
<tr>
<td>preferred address</td>
<td>normal (migrate at your leisure)</td>
<td>don't migrate</td>
</tr>
</tbody>
</table>
<p>Right now, our definition of disable_active_migration is a simple "don't migrate".  But the argument here says that the server that provides a preferred address is <em>probably</em> capable of handling migrations on the basis that it has to support one.  We might insist on the source address not change, but the fact is that some NATs (those with address-dependent mappings) will change the source address.</p>
<p>Changing to a definition where disable_active_migration is instead "don't move to a new address unless you use a preferred address" is a little more complicated, but doable.</p>
<p>Is it worth the extra complexity this late in the process?  Is that complexity justified when it would be trivially possible to define another extension that said "I support migration on my preferred address"?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-623267502">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5TLUIGVKYQFOBRXP3RPZIQHANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4VTOAFEXNRZH6GDATRPZIQHA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUTE5LQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-623267502",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-623267502",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eafab03a1a4e_5ac53ff87d4cd96024402--


From nobody Sun May  3 23:49:34 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 221D33A0C37 for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 23:49:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 RJ5xZw2Tc4jr for <quic-issues@ietfa.amsl.com>; Sun,  3 May 2020 23:49:30 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 63B313A0C3D for <quic-issues@ietf.org>; Sun,  3 May 2020 23:49:30 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id E15F7521EED for <quic-issues@ietf.org>; Sun,  3 May 2020 23:49:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588574967; bh=sLTic9Wzs/nbDVMx70ixuN5v8r4WmtIsfkwdP3HbTWY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=f2MNosAY+fksnm+GlyJLTcUnJuRK7D4aX5peO2F9rLfOPe24g+bg7JGZK43PfIu6M Mr6VxH8KPKoCcHId+ffsM5E6aFxEt3rrojVPSeqZZRg/zqBM8NAc6d17aiNAiX5SFO Igg3UWx5dDImXYOC8j5v7TV7rcui1ZacSE5Al1+w=
Date: Sun, 03 May 2020 23:49:27 -0700
From: IngJohEricsson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ7DZKPRAVK7TZBNUF4XON7PEVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/623289368@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eafbaf7d13b5_5d3e3fca74acd9642727ba"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: IngJohEricsson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7Hx6nS6E-KfPkkKoCChq2rq2dTY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 06:49:32 -0000

----==_mimepart_5eafbaf7d13b5_5d3e3fca74acd9642727ba
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Hi=0D
=0D
 =0D
=0D
Need to admit that I have not had too much time to follow the QUIC work l=
ately. =0D
=0D
 =0D
=0D
I too believe that draft-iyengar-quic-delayed-ack-00 is a good long term =
solution that allows endpoint to set a desired ACK frequency that is not =
more than necessary. As experiments show there are good incentives to kee=
p the ACK frequency as low as possible in terms of client/server load and=
 asymmetric links limitations. An ACK-FREQUENCY frame  will allow to find=
 the proper balance between the requirements given by the congestion cont=
rol, the traffic type and the above given limitations.=0D
=0D
=0D
I am not too concerned if it takes an extra development/standards cycle t=
o have that in place in the standard and in running code as long as the Q=
UIC community shows other SDOs that the challenge with QUIC ACKs is being=
 addressed. =0D
=0D
 =0D
=0D
/Ingemar=0D
=0D
 =0D
=0D
From: Bob Briscoe <notifications@github.com> =0D
Sent: den 2 maj 2020 18:50=0D
To: quicwg/base-drafts <base-drafts@noreply.github.com>=0D
Cc: Ingemar Johansson S <ingemar.s.johansson@ericsson.com>; Comment <comm=
ent@noreply.github.com>=0D
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#=
3529)=0D
=0D
 =0D
=0D
I'm greatly in favour of draft-iyengar-quic-delayed-ack-00 (BTW, where wo=
uld you prefer me to give review comments about that?)=0D
=0D
I am much less keen on any default delayed ACK policy, whether 1:2 as now=
 in quic-transport, or the 2-10/100 numbers proposed in draft-fairhurst-q=
uic-ack-scaling-02=0D
=0D
My concerns would melt away if the default policy was explicitly /impleme=
ntation-dependent/ and the draft instead gave /guidance/ to implementers.=
=0D
=0D
*	The draft could still give the same 2-10/100 policy, but as /guidance/ =
for the current public Internet.=0D
*	The draft should also state the conditions under which this guidance wa=
s determined (e.g. Internet paths with BDP between x and y, or whatever).=
=0D
=0D
What's the difference? Stating a default policy implies this is a matter =
of interoperability. It's not. If we change to giving guidance, I'm sure =
most implementers will just use the guidance. However, implementers will =
be free to evolve their default as they gain experience.=0D
=0D
This reduces the possibility that other behaviours will evolve around any=
 default like 2-10/100. For instance, network monitoring using it as a si=
gnature. Or congestion controls optimizing around it. In turn, this will =
reduce the chance of ossification around the first numbers we thought of.=
=0D
=0D
Senders can always use the ACK frequency frame to ask a receiver to chang=
e from its default. Then receivers will gradually learn what senders pref=
er them to do, and change their default accordingly. IMO, a continually i=
mproving default is important for short flows, so senders can avoid reque=
sting a different ACK frequency right from the start.=0D
=0D
=E2=80=94=0D
You are receiving this because you commented.=0D
Reply to this email directly, view it on GitHub <https://protect2.fireeye=
.com/v1/url?k=3De0af5b33-be0fe15d-e0af1ba8-86b1886cfa64-01ac033f188a7bed&=
q=3D1&e=3D8abe6920-7020-473e-a5d8-baa4399162a3&u=3Dhttps%3A%2F%2Fgithub.c=
om%2Fquicwg%2Fbase-drafts%2Fissues%2F3529%23issuecomment-622982264> , or =
unsubscribe <https://protect2.fireeye.com/v1/url?k=3De5ce6fc1-bb6ed5af-e5=
ce2f5a-86b1886cfa64-3428571a7702a6a4&q=3D1&e=3D8abe6920-7020-473e-a5d8-ba=
a4399162a3&u=3Dhttps%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-aut=
h%2FACRZ2GBG4MMKB4D2RGHJF53RPRFMBANCNFSM4LOJ4RQA> .  <https://github.com/=
notifications/beacon/ACRZ2GDOHHO3WOKEELVMNPTRPRFMBA5CNFSM4LOJ4RQKYY3PNVWW=
K3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUQ7I6A.gif> =0D
=0D
=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-623289368=

----==_mimepart_5eafbaf7d13b5_5d3e3fca74acd9642727ba
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
Hi<br>=0D
<br>=0D
 <br>=0D
<br>=0D
Need to admit that I have not had too much time to follow the QUIC work l=
ately. <br>=0D
<br>=0D
 <br>=0D
<br>=0D
I too believe that draft-iyengar-quic-delayed-ack-00 is a good long term =
solution that allows endpoint to set a desired ACK frequency that is not =
more than necessary. As experiments show there are good incentives to kee=
p the ACK frequency as low as possible in terms of client/server load and=
 asymmetric links limitations. An ACK-FREQUENCY frame  will allow to find=
 the proper balance between the requirements given by the congestion cont=
rol, the traffic type and the above given limitations.<br>=0D
<br>=0D
<br>=0D
I am not too concerned if it takes an extra development/standards cycle t=
o have that in place in the standard and in running code as long as the Q=
UIC community shows other SDOs that the challenge with QUIC ACKs is being=
 addressed. <br>=0D
<br>=0D
 <br>=0D
<br>=0D
/Ingemar<br>=0D
<br>=0D
 <br>=0D
<br>=0D
From: Bob Briscoe &lt;notifications@github.com&gt; <br>=0D
Sent: den 2 maj 2020 18:50<br>=0D
To: quicwg/base-drafts &lt;base-drafts@noreply.github.com&gt;<br>=0D
Cc: Ingemar Johansson S &lt;ingemar.s.johansson@ericsson.com&gt;; Comment=
 &lt;comment@noreply.github.com&gt;<br>=0D
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#=
3529)<br>=0D
<br>=0D
 <br>=0D
<br>=0D
I&#39;m greatly in favour of draft-iyengar-quic-delayed-ack-00 (BTW, wher=
e would you prefer me to give review comments about that?)<br>=0D
<br>=0D
I am much less keen on any default delayed ACK policy, whether 1:2 as now=
 in quic-transport, or the 2-10/100 numbers proposed in draft-fairhurst-q=
uic-ack-scaling-02<br>=0D
<br>=0D
My concerns would melt away if the default policy was explicitly /impleme=
ntation-dependent/ and the draft instead gave /guidance/ to implementers.=
<br>=0D
<br>=0D
*	The draft could still give the same 2-10/100 policy, but as /guidance/ =
for the current public Internet.<br>=0D
*	The draft should also state the conditions under which this guidance wa=
s determined (e.g. Internet paths with BDP between x and y, or whatever).=
<br>=0D
<br>=0D
What&#39;s the difference? Stating a default policy implies this is a mat=
ter of interoperability. It&#39;s not. If we change to giving guidance, I=
&#39;m sure most implementers will just use the guidance. However, implem=
enters will be free to evolve their default as they gain experience.<br>=0D=

<br>=0D
This reduces the possibility that other behaviours will evolve around any=
 default like 2-10/100. For instance, network monitoring using it as a si=
gnature. Or congestion controls optimizing around it. In turn, this will =
reduce the chance of ossification around the first numbers we thought of.=
<br>=0D
<br>=0D
Senders can always use the ACK frequency frame to ask a receiver to chang=
e from its default. Then receivers will gradually learn what senders pref=
er them to do, and change their default accordingly. IMO, a continually i=
mproving default is important for short flows, so senders can avoid reque=
sting a different ACK frequency right from the start.<br>=0D
<br>=0D
=E2=80=94<br>=0D
You are receiving this because you commented.<br>=0D
Reply to this email directly, view it on GitHub &lt;https://protect2.fire=
eye.com/v1/url?k=3De0af5b33-be0fe15d-e0af1ba8-86b1886cfa64-01ac033f188a7b=
ed&amp;q=3D1&amp;e=3D8abe6920-7020-473e-a5d8-baa4399162a3&amp;u=3Dhttps%3=
A%2F%2Fgithub.com%2Fquicwg%2Fbase-drafts%2Fissues%2F3529%23issuecomment-6=
22982264&gt; , or unsubscribe &lt;https://protect2.fireeye.com/v1/url?k=3D=
e5ce6fc1-bb6ed5af-e5ce2f5a-86b1886cfa64-3428571a7702a6a4&amp;q=3D1&amp;e=3D=
8abe6920-7020-473e-a5d8-baa4399162a3&amp;u=3Dhttps%3A%2F%2Fgithub.com%2Fn=
otifications%2Funsubscribe-auth%2FACRZ2GBG4MMKB4D2RGHJF53RPRFMBANCNFSM4LO=
J4RQA&gt; .  &lt;https://github.com/notifications/beacon/ACRZ2GDOHHO3WOKE=
ELVMNPTRPRFMBA5CNFSM4LOJ4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN=
5WW2ZLOORPWSZGOEUQ7I6A.gif&gt; <br>=0D
<br>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/issues/3529#issuecomment-623289368">view it on GitHub</a>,=
 or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK6H=
X3LQ4Q2VLCNJMKTRPZQPPANCNFSM4LOJ4RQA">unsubscribe</a>.<img src=3D"https:/=
/github.com/notifications/beacon/AFTOJKZD2VYDEYGEK3ZXEKDRPZQPPA5CNFSM4LOJ=
4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUTKIGA.g=
if" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment=
-623289368",=0D
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-62=
3289368",=0D
"name": "View Issue"=0D
},=0D
"description": "View this Issue on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eafbaf7d13b5_5d3e3fca74acd9642727ba--


From nobody Mon May  4 03:50:18 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 51AFC3A07A7 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 03:50:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 7IW6eg01plbU for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 03:50:15 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 02B6C3A07A6 for <quic-issues@ietf.org>; Mon,  4 May 2020 03:50:14 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id CC0F6661F8A for <quic-issues@ietf.org>; Mon,  4 May 2020 03:50:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588589413; bh=mbhtzOROcFUamO82FE7j3IAH5xTGTPfBELZfnFx+Bq4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ROdO8bEdcKRFSmd+U/bRjSFeEzjn2HKa9xclFC2RzM90ak0sQ/+oMEuXHBigGOmLM 9b2ZPmFlFy/mnwv0o/ZwKJyW2oru7rGUICkquTe9iIj4kWglmZyjQgyU3DgA9ZBGTV gjW5IDZ4096tjTpA3Kq/ceZNuio4b4TF6hUAtC9c=
Date: Mon, 04 May 2020 03:50:13 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7AFBMH5GD6JHELNCF4XPKGLEVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/623393558@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eaff365bd065_1fa13fac878cd96c87161"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BRUCqCFvwLwGCfEl9HXsxc28DTg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 10:50:16 -0000

----==_mimepart_5eaff365bd065_1fa13fac878cd96c87161
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'd like to minimize changes, but I believe the status quo is that disable_active_migration applies to both the original address and SPA.  As such, all suggestions above seem like a change.

There is a mechanism to disable migration on the SPA, which is don't give out any more CIDs once they migrate.  I don't expect any hosts to support migration on the original path and not the SPA, so I don't think that's a use case worth supporting(or encouraging).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-623393558
----==_mimepart_5eaff365bd065_1fa13fac878cd96c87161
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I'd like to minimize changes, but I believe the status quo is that disable_active_migration applies to both the original address and SPA.  As such, all suggestions above seem like a change.</p>
<p>There is a mechanism to disable migration on the SPA, which is don't give out any more CIDs once they migrate.  I don't expect any hosts to support migration on the original path and not the SPA, so I don't think that's a use case worth supporting(or encouraging).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-623393558">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3CXF4RNDKDU3DXBBLRP2MWLANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZKLCQKGFHMOFY7PPDRP2MWLA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUUDWFQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-623393558",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-623393558",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eaff365bd065_1fa13fac878cd96c87161--


From nobody Mon May  4 03:51:28 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 E59D43A07A8 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 03:51:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 89BiXxhdLo60 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 03:51:25 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D3E4F3A07A7 for <quic-issues@ietf.org>; Mon,  4 May 2020 03:51:25 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id DFAFC520095 for <quic-issues@ietf.org>; Mon,  4 May 2020 03:51:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588589484; bh=jXzEzAbizAKce2yJAhQc5s8DSohPIZeIfSLP8YrCAkU=; h=Date:From:To:Subject:From; b=2bvleef93cxOPDUGR+sUcc25V2qq0ZMlB/BY2N/sEb/6aRAtSSG+p4tcMnUkO9Rjv HGrZnyABF86bME/vUq/GiAKMI7DRlnHoiO5QnePvPAjgyTQV0Dm/43IvX+YTncEEhv XWIyFxoxmaUcc3rK6X8mMFefYq2PFyiCuHTKr5Co=
Date: Mon, 04 May 2020 03:51:24 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/7c1919-66d568@github.com>
Subject: [quicwg/base-drafts] 87df8e: recovery: fix broken reference to TLS, "Discarding...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0KtwK4rbkjDBD-sFG40r8YCOspQ>
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: Mon, 04 May 2020 10:51:27 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 87df8ee7dba9a546a6f8b1ae118eb1d520de55df
      https://github.com/quicwg/base-drafts/commit/87df8ee7dba9a546a6f8b1ae118eb1d520de55df
  Author: Julian Reschke <julian.reschke@gmx.de>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  recovery: fix broken reference to TLS, "Discarding Initial Keys"


  Commit: 66d56893377e52727d620ceb305cd33dc97b3381
      https://github.com/quicwg/base-drafts/commit/66d56893377e52727d620ceb305cd33dc97b3381
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-04 (Mon, 04 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3618 from reschke/patch-28

recovery: fix broken reference to TLS, "Discarding Initial Keys"


Compare: https://github.com/quicwg/base-drafts/compare/7c19197ca320...66d56893377e


From nobody Mon May  4 03:51:33 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 F38BC3A07A8 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 03:51:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 CHVOhx4pLh6h for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 03:51:29 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DF7863A07A9 for <quic-issues@ietf.org>; Mon,  4 May 2020 03:51:28 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 3BCD46E1398 for <quic-issues@ietf.org>; Mon,  4 May 2020 03:51:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588589488; bh=RqG/7eZCpqURCw/epVHfyYaNN8basHtzLphMFYEUQV8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Nniswsuwk1nkByp5rwgbyZcaoiV7aZA4hAmbKUrE4b2HA8Jw9+RbouVIE/fiNAh7S /w+rRnJXkJ52UxkorYv7XWaDiRiWAfM3B/MbZRFU8QmvGYpe2waGO4aAb5BSoVe7HV JrA6ln55I43HzUf4XLR+Vja6KgNzu63N97i6Jgzg=
Date: Mon, 04 May 2020 03:51:28 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK27MLVOESDK45KX3UN4XPKLBEVBNHHCIZBEDA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3618/review/404881757@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3618@github.com>
References: <quicwg/base-drafts/pull/3618@github.com>
Subject: Re: [quicwg/base-drafts] recovery: fix broken reference to TLS, "Discarding Initial Keys" (#3618)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eaff3b02c8ba_32273f849e2cd9606012e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aCye7Uj7lKJy6itmtjAP2w4JBmQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 10:51:30 -0000

----==_mimepart_5eaff3b02c8ba_32273f849e2cd9606012e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3618#pullrequestreview-404881757
----==_mimepart_5eaff3b02c8ba_32273f849e2cd9606012e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3618#pullrequestreview-404881757">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY6IJPTBQIXKQHC533RP2M3BANCNFSM4MW2VMTA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5FMEYT5IJMSKYZMALRP2M3BA5CNFSM4MW2VMTKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODARACXI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3618#pullrequestreview-404881757",
"url": "https://github.com/quicwg/base-drafts/pull/3618#pullrequestreview-404881757",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eaff3b02c8ba_32273f849e2cd9606012e--


From nobody Mon May  4 03:51:40 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 4A9D13A07A8 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 03:51:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 JbqXsXpMyxXn for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 03:51:37 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5998D3A07A7 for <quic-issues@ietf.org>; Mon,  4 May 2020 03:51:37 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 6A5E1A1D9F for <quic-issues@ietf.org>; Mon,  4 May 2020 03:51:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588589496; bh=cP1jbNp/kpeHRkAVHtcM0+A0O+mjYb2prye6xWeeryM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CbQRLzDOm3coyyhImrnpz+XMLLMHWh2D39kf2o2uZjsMOoxcDGiU9w16PxhJO8zol S3fZY03oYNZn6sprTi8dKIrEp83unzN5SB1lor6oqGN8gOjS00BB2zVAGGMbZhmQtn RwsEUtt3hbujhuPB5G+jg51j6F225EptGDhycgqI=
Date: Mon, 04 May 2020 03:51:36 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZCG3SFHKOI6T3Z3SN4XPKLREVBNHHCIZBEDA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3618/issue_event/3299311763@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3618@github.com>
References: <quicwg/base-drafts/pull/3618@github.com>
Subject: Re: [quicwg/base-drafts] recovery: fix broken reference to TLS, "Discarding Initial Keys" (#3618)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eaff3b85a4d2_44483ff589acd96014561d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dfAoRKmUFa57eUsg0TZssb1yxzw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 10:51:38 -0000

----==_mimepart_5eaff3b85a4d2_44483ff589acd96014561d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3618 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3618#event-3299311763
----==_mimepart_5eaff3b85a4d2_44483ff589acd96014561d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="610542616" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3618" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3618/hovercard" href="https://github.com/quicwg/base-drafts/pull/3618">#3618</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3618#event-3299311763">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7JTMOIYE3LFFNB5RLRP2M3RANCNFSM4MW2VMTA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZJJOD2DMQI63TTDQDRP2M3RA5CNFSM4MW2VMTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYSTYBEY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3618#event-3299311763",
"url": "https://github.com/quicwg/base-drafts/pull/3618#event-3299311763",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eaff3b85a4d2_44483ff589acd96014561d--


From nobody Mon May  4 03:52:18 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 565633A0834 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 03:52:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 rDmqlnwG5LhH for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 03:52:12 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D3CE83A07F8 for <quic-issues@ietf.org>; Mon,  4 May 2020 03:52:11 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id E24BE2C11DB for <quic-issues@ietf.org>; Mon,  4 May 2020 03:52:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588589530; bh=4UbPGp5dqPMO8DH/np4D0isUs2DiEqFYTsa7OLq0Q+c=; h=Date:From:To:Subject:From; b=zhf65ej/rOcaSuma1OwlnBNrhp5qokSlGcEgIpo8MdCWyEcDo+8Sxxz0iWB/E8Wlo SkgLt02mcxHfGcQkvna/5i72Tf596Yr7PSDv8Qxvq4ba69Qsr30smpBlI/GneYZ15l K+NB45pNiwQcA8w2yCdbSliaYqg529375HIZuRyI=
Date: Mon, 04 May 2020 03:52:10 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/9e6fe5-cbcf20@github.com>
Subject: [quicwg/base-drafts] cbcf20: Script updating gh-pages from 66d56893. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RJdmtne_CMv-DFoFuBs5QAkq5L4>
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: Mon, 04 May 2020 10:52:17 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: cbcf206a7b0bd169e7a28cc4841703e411891e43
      https://github.com/quicwg/base-drafts/commit/cbcf206a7b0bd169e7a28cc4841703e411891e43
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-04 (Mon, 04 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 66d56893. [ci skip]



From nobody Mon May  4 04:24:01 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 D985F3A0772 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 04:23:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.555
X-Spam-Level: 
X-Spam-Status: No, score=-6.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 X-OFXmdMwJWj for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 04:23:57 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 847283A07D8 for <quic-issues@ietf.org>; Mon,  4 May 2020 04:23:57 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 6D5E5960683 for <quic-issues@ietf.org>; Mon,  4 May 2020 04:23:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588591436; bh=liH/pZ3HKH4M5ITiLcTvhhodPW7Epd0nGOIBhMrw5ns=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GCPmGPpnWaK7aqwPJ+Pr7CHkmR9AECrWtBlgONkEtuiNMQJYabnHlv/xn1x6keFKo 6o+xeUB/wa+5/RFpNodJLb/XECcWCssuQ+3LanZCJucTWcLYplSfunljzQCmTDZ4lm so3XP5WT/TmjF7Kbww8gTROTtMIlDaAmG6XeTiIk=
Date: Mon, 04 May 2020 04:23:56 -0700
From: Julian Reschke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4NY22E7XEBCYKKQ754XPOEZEVBMPHAEUPZM4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee/38926695@github.com>
In-Reply-To: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee@github.com>
References: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee@github.com>
Subject: Re: [quicwg/base-drafts] Merge pull request #3611 from quicwg/transport/contributor_bullets (dee3761)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eaffb4c5d976_36193fc06f8cd95c1682df"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: reschke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rDT-yUQKEHhVSlvW40iAfF1Qh3M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 11:23:59 -0000

----==_mimepart_5eaffb4c5d976_36193fc06f8cd95c1682df
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson - is this tracked somewhere? Asking because the dual nature of \<contact> being both a text-level and block-level element makes this slightly tricky.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38926695
----==_mimepart_5eaffb4c5d976_36193fc06f8cd95c1682df
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> - is this tracked somewhere? Asking because the dual nature of &lt;contact&gt; being both a text-level and block-level element makes this slightly tricky.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38926695">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK56NS725ZUJ34F4YR3RP2QUZANCNFSM4MXTLZ2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZAB5V2HDZEXZLDS73RP2QUZA5CNFSM4MXTLZ2KYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBFD6LH.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38926695",
"url": "https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38926695",
"name": "View Commit"
},
"description": "View this Commit on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eaffb4c5d976_36193fc06f8cd95c1682df--


From nobody Mon May  4 06:03:23 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 99A633A0869 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 06:03:21 -0700 (PDT)
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 YIMsokHWyK4Q for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 06:03:20 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5CACE3A0865 for <quic-issues@ietf.org>; Mon,  4 May 2020 06:03:20 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id B781A12126D for <quic-issues@ietf.org>; Mon,  4 May 2020 06:03:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588597399; bh=I7RM4C5bnEBnG5r9TCP88CctqxdcAHWdsgDmJaLFvjQ=; h=Date:From:To:Subject:From; b=D1g1ppClfS+jH2DDQyFjSws2F64dR3IuaO3XSbVphtYGrThkeoEZDFRyJW5frmgIz +U7a6+JMyZf20TAuuxkSa5PvRsQ0Ft1ygLTfzKzRiERpIaE2fe2JIY/wiMpu1xuhtX 6s3vEo6aHAAnLk+KXwjqEFs/kyJf0181APmkaZhQ=
Date: Mon, 04 May 2020 06:03:19 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/gh-pages/140b15-041541@github.com>
Subject: [quicwg/load-balancers] 193e2f: Script updating issues at 2020-03-12T14:20:54Z. [c...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mvaxcjZXGlIeLgWk4weKZrViI98>
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: Mon, 04 May 2020 13:03:22 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/load-balancers
  Commit: 193e2fb55c9e064c0fdbc4d79fd3c1f9af7d91cb
      https://github.com/quicwg/load-balancers/commit/193e2fb55c9e064c0fdbc4d79fd3c1f9af7d91cb
  Author: ID Bot <idbot@example.com>
  Date:   2020-03-12 (Thu, 12 Mar 2020)

  Changed paths:
    A .gitignore
    A _config.yml
    A draft-ietf-quic-load-balancers.html
    A draft-ietf-quic-load-balancers.txt
    A edge-cases/draft-ietf-quic-load-balancers.html
    A edge-cases/draft-ietf-quic-load-balancers.txt
    A edge-cases/index.html
    A fix-circle-config/draft-ietf-quic-load-balancers.html
    A fix-circle-config/draft-ietf-quic-load-balancers.txt
    A fix-circle-config/index.html
    A index.html
    A issues.html
    A issues.js
    A issues.json
    A mduke-nits/draft-ietf-quic-load-balancers.html
    A mduke-nits/draft-ietf-quic-load-balancers.txt
    A mduke-nits/index.html
    A pulls.json
    A test-vectors/draft-ietf-quic-load-balancers.html
    A test-vectors/draft-ietf-quic-load-balancers.txt
    A test-vectors/index.html

  Log Message:
  -----------
  Script updating issues at 2020-03-12T14:20:54Z. [ci skip]


  Commit: 4620eb951d0be32bcc49e7703b0ea10088948602
      https://github.com/quicwg/load-balancers/commit/4620eb951d0be32bcc49e7703b0ea10088948602
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    R edge-cases/draft-ietf-quic-load-balancers.html
    R edge-cases/draft-ietf-quic-load-balancers.txt
    R edge-cases/index.html
    R fix-circle-config/draft-ietf-quic-load-balancers.html
    R fix-circle-config/draft-ietf-quic-load-balancers.txt
    R fix-circle-config/index.html
    M index.html
    R mduke-nits/draft-ietf-quic-load-balancers.html
    R mduke-nits/draft-ietf-quic-load-balancers.txt
    R mduke-nits/index.html
    R test-vectors/draft-ietf-quic-load-balancers.html
    R test-vectors/draft-ietf-quic-load-balancers.txt
    R test-vectors/index.html
    A vector-line-breaks/draft-ietf-quic-load-balancers.html
    A vector-line-breaks/draft-ietf-quic-load-balancers.txt
    A vector-line-breaks/index.html

  Log Message:
  -----------
  Script updating gh-pages from d528354. [ci skip]


  Commit: 746113706aee52ba8214bd49845213c7dd623652
      https://github.com/quicwg/load-balancers/commit/746113706aee52ba8214bd49845213c7dd623652
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    A archive.json
    M issues.html
    M issues.js
    R issues.json
    R pulls.json

  Log Message:
  -----------
  Script updating archive at 2020-04-30T17:30:01Z. [ci skip]


  Commit: 7d3175f88ee5a9569a879fddf9a8c05458724127
      https://github.com/quicwg/load-balancers/commit/7d3175f88ee5a9569a879fddf9a8c05458724127
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.html
    M draft-ietf-quic-load-balancers.txt

  Log Message:
  -----------
  Script updating gh-pages from 85e0cba. [ci skip]


  Commit: b8721838c4752601adcc1264b1ee8e75c22ecab3
      https://github.com/quicwg/load-balancers/commit/b8721838c4752601adcc1264b1ee8e75c22ecab3
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.html

  Log Message:
  -----------
  Script updating gh-pages from 85e0cba. [ci skip]


  Commit: 74bedf5df3b9c70337f1fb1ae5629e71e753f422
      https://github.com/quicwg/load-balancers/commit/74bedf5df3b9c70337f1fb1ae5629e71e753f422
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    R vector-line-breaks/draft-ietf-quic-load-balancers.html
    R vector-line-breaks/draft-ietf-quic-load-balancers.txt
    R vector-line-breaks/index.html

  Log Message:
  -----------
  Remove strange directory


  Commit: 0415419ae5a87b6f4ed92b0a5ce109d8790b5c5c
      https://github.com/quicwg/load-balancers/commit/0415419ae5a87b6f4ed92b0a5ce109d8790b5c5c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-04 (Mon, 04 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.html
    M draft-ietf-quic-load-balancers.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 38132cf. [ci skip]


Compare: https://github.com/quicwg/load-balancers/compare/140b15fe42ee...0415419ae5a8


From nobody Mon May  4 06:03:27 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 DA3AA3A086B for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 06:03:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 yodgdJ40qISU for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 06:03:25 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 178953A0869 for <quic-issues@ietf.org>; Mon,  4 May 2020 06:03:25 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id E4918661F66 for <quic-issues@ietf.org>; Mon,  4 May 2020 06:03:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588597403; bh=5uGDpUpaYztDVhox5OpUWhmjB7x4Mwf++S2SHlp+9bY=; h=Date:From:To:Subject:From; b=AL+OyoJmIFqADJMQYHG4om93ffnyHGyLJIf+zfH/8AHUTS7y0L6ljmK5mC8ThVSf3 Qn4QlbonjxP//HbE3zUAXN8p2B4bKmapF3BheinhbwNduugp9SrTR3aN6WwCz86xki zO/9CmAYJFpomr5cVHJZy6f9QRrUVs+SGPpCc8yw=
Date: Mon, 04 May 2020 06:03:23 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/gh-pages/041541-666805@github.com>
Subject: [quicwg/load-balancers] 666805: Script updating archive at 2020-05-04T13:03:05Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/52ScY1rqPcFbwXsGdnqqN41rMhs>
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: Mon, 04 May 2020 13:03:27 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/load-balancers
  Commit: 666805ac87541c5f7ce9b5634cc7138dd0b2cdee
      https://github.com/quicwg/load-balancers/commit/666805ac87541c5f7ce9b5634cc7138dd0b2cdee
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-04 (Mon, 04 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-04T13:03:05Z. [ci skip]



From nobody Mon May  4 06:28:06 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 2AC4A3A088A for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 06:28:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.555
X-Spam-Level: 
X-Spam-Status: No, score=-6.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 sa-hHNxcpmqV for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 06:28:02 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8E3013A0889 for <quic-issues@ietf.org>; Mon,  4 May 2020 06:28:02 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id CFFCE660550 for <quic-issues@ietf.org>; Mon,  4 May 2020 06:28:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588598881; bh=FKmDUUGGCbujilbYIgRQ7Ts9a4kiUbtgcXPWqyR7TSw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RUcWtkNiUoBtBrf7i4DcRUAKAvbq8yazI6sbuUPGngN2kG6cEhWN3iiSqYeC13YCp DqQ6h9WFnjSedKOo0cwKzUhjoKMk7S2eQIFwTQdATzL2UytRXM7J/1pmUbI4mQNii+ 4v9ItKQzb6zz7KvxFpDhqzZDznkfT2a06WCrsfM4=
Date: Mon, 04 May 2020 06:28:01 -0700
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4DQETLVXXUHMU7LO54XP4WDEVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/623463301@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb01861c0624_43c43f9466ccd960142047"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: larseggert
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UPf4kMjv7LZhbBGLunq57BY7SoI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 13:28:04 -0000

----==_mimepart_5eb01861c0624_43c43f9466ccd960142047
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair @IngJohEricsson could you please trim the quoted text when you reply by email?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-623463301
----==_mimepart_5eb01861c0624_43c43f9466ccd960142047
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/gorryfair/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gorryfair">@gorryfair</a> <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/IngJohEricsson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/IngJohEricsson">@IngJohEricsson</a> could you please trim the quoted text when you reply by email?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3529#issuecomment-623463301">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4YHQ7G3BHPM24GL5TRP27GDANCNFSM4LOJ4RQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SEHIUXN3U3EXPIO3RP27GDA5CNFSM4LOJ4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUUUXBI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-623463301",
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-623463301",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb01861c0624_43c43f9466ccd960142047--


From nobody Mon May  4 06:31:58 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 37A413A088D for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 06:31:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 3QEkjpiL7DOM for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 06:31:55 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 250DD3A088A for <quic-issues@ietf.org>; Mon,  4 May 2020 06:31:55 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id CF26D6E1335 for <quic-issues@ietf.org>; Mon,  4 May 2020 06:31:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588599112; bh=k4q0CiHaKUAOtjdVcpVCoyYasH30oxE1tQ53rr/ojEE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zgg8S0uX3K8tL6Yot0a1i+3Sj3q+jiCiQNrww0MxMuFYPP9d06+2t+a1449nn4kWf y3P633LLqT8hkPxrht4iyLzL85oEExwvXqVm+XXrmq7jGFh+4DCca6cybzMm0IDHbk KT/IvTOMknR6xuvUA7pU376lE7MDYZk9rZriPNIk=
Date: Mon, 04 May 2020 06:31:52 -0700
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZXMVK27DXYUTZMKRN4XP5EREVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/623465406@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb01948be8a0_16e73f86e64cd9641629b3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: larseggert
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_OsfUK75f26d3S2q7qtsy_0UUTk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 13:31:56 -0000

----==_mimepart_5eb01948be8a0_16e73f86e64cd9641629b3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

(I trimmed the comments, but forwarding inline replies to email messages doesn't work well.)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-623465406
----==_mimepart_5eb01948be8a0_16e73f86e64cd9641629b3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>(I trimmed the comments, but forwarding inline replies to email messages doesn't work well.)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3529#issuecomment-623465406">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7N3T437Q7EIDX6XTDRP27URANCNFSM4LOJ4RQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7XM5MNEBIYONIKAA3RP27URA5CNFSM4LOJ4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUUVHPQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-623465406",
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-623465406",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb01948be8a0_16e73f86e64cd9641629b3--


From nobody Mon May  4 08:00:19 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 C0FE93A0A14 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 08:00:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.694
X-Spam-Level: 
X-Spam-Status: No, score=-1.694 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ufORAIGmoZ2g for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 08:00:15 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 62C2A3A0A11 for <quic-issues@ietf.org>; Mon,  4 May 2020 08:00:15 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 4F596E3F10 for <quic-issues@ietf.org>; Mon,  4 May 2020 08:00:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588604414; bh=Ro+QIGlxLGUNV/OJeMKNWUnLfdha0vjMQn3YSOjjULI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gQ4owV2UIOOt7fcQmRmgRbJ87nn6fs3N3b1kePXlm6O2Ev7I9q6pVN9YXrpP5NEc5 h7pw8Y6itHlBl0FiWuwafiVst46ZKolFcptExvsbjcjZI1mvOO3W97+KOXnvmKpgEx ZNj5XeBigJ8Zz++pLnEkOS4m7qf1uFo0QNDyK45Q=
Date: Mon, 04 May 2020 08:00:14 -0700
From: Christian Huitema <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7OFRY4RIEHMUS3IXV4XQHP5EVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623516017@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb02dfe3efec_7503fef0b6cd95c181833"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: huitema
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3tagJaZ5eBV21w--Exll1ABzySU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 15:00:18 -0000

----==_mimepart_5eb02dfe3efec_7503fef0b6cd95c181833
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

To answer the question, I did `#ifdef` the Huffman functionality in h3zero and redid the test. Compiling on an Ubuntu 19 VM with Huffman defined:
```
$ gcc -Os -c -o h3zero.o h3zero.c && strip h3zero.o && wc -c h3zero.o
13680 h3zero.o
```
And with Huffman defined out:
```
$ gcc -Os -c -o h3zero.o h3zero.c && strip h3zero.o && wc -c h3zero.o
8640 h3zero.o
```
The cost of Huffman decoding support appears to be 5KB of code. The remaining 8.6K include static QPACK and the parsing of minimal H3 frames.

The `picohttp_ct` program is a test program. It links with the test framework, so the 685K size has to be taken with a grain of salt. To give an other data point, the DNS over QUIC program built with the picoquic library is around 300KB. If I take that as a minimum reference, the added cost of Huffman decoding would be less than 1.5% of the total. But of course everything is relative, and 

@lars has experience developing QUIC for tiny devices. Maybe he has an opinion on this.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623516017
----==_mimepart_5eb02dfe3efec_7503fef0b6cd95c181833
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>To answer the question, I did <code>#ifdef</code> the Huffman functionality in h3zero and redid the test. Compiling on an Ubuntu 19 VM with Huffman defined:</p>
<pre><code>$ gcc -Os -c -o h3zero.o h3zero.c &amp;&amp; strip h3zero.o &amp;&amp; wc -c h3zero.o
13680 h3zero.o
</code></pre>
<p>And with Huffman defined out:</p>
<pre><code>$ gcc -Os -c -o h3zero.o h3zero.c &amp;&amp; strip h3zero.o &amp;&amp; wc -c h3zero.o
8640 h3zero.o
</code></pre>
<p>The cost of Huffman decoding support appears to be 5KB of code. The remaining 8.6K include static QPACK and the parsing of minimal H3 frames.</p>
<p>The <code>picohttp_ct</code> program is a test program. It links with the test framework, so the 685K size has to be taken with a grain of salt. To give an other data point, the DNS over QUIC program built with the picoquic library is around 300KB. If I take that as a minimum reference, the added cost of Huffman decoding would be less than 1.5% of the total. But of course everything is relative, and</p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/Lars/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Lars">@Lars</a> has experience developing QUIC for tiny devices. Maybe he has an opinion on this.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623516017">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7IJM7T2FUFVOEK5M3RP3J75ANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6KDMBP732NOI5H2YLRP3J75A5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUVBS4I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623516017",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623516017",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb02dfe3efec_7503fef0b6cd95c181833--


From nobody Mon May  4 08:23:32 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 E07B73A0A4F for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 08:23:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 Q5bRj6hG30gh for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 08:23:23 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5D36F3A0A79 for <quic-issues@ietf.org>; Mon,  4 May 2020 08:23:23 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 394B5C64440 for <quic-issues@ietf.org>; Mon,  4 May 2020 08:23:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588605801; bh=pbxO00vJyNhgTkSqAvWRttgqD4r6O4d9d9Scs1WBh2c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xoTj0bJv0gzcS0xckxqT7UNbRQ7krk4umikqWnaN66MxeZ3l2fyNO4jJnNP9c0MTv tyI819nY4Zz6Ty1AQbutomUKUHD1u0EGJX4QWtj1eOlSJeZZa2BgCJV99zDCGqiCxL wSYNuitksuFElOnV0n1s+S/XES2VIcdpS6Y+Y74w=
Date: Mon, 04 May 2020 08:23:21 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZWVRXXKEI2KBCYWQN4XQKGTEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623529573@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb03369293aa_19133fba6d0cd96c103943"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/omAPuXse9ha2Dq205xHaFQhVzPw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 15:23:30 -0000

----==_mimepart_5eb03369293aa_19133fba6d0cd96c103943
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

You can also trade off object code for faster decoding, see @dtikhonov's blog post https://blog.litespeedtech.com/2019/09/16/fast-huffman-decoder/

Debating optimization trade-offs for a hypothetical customer is interesting but does not meet the criteria of evidence to accept this issue IMO.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623529573
----==_mimepart_5eb03369293aa_19133fba6d0cd96c103943
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>You can also trade off object code for faster decoding, see <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/dtikhonov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dtikhonov">@dtikhonov</a>'s blog post <a href="https://blog.litespeedtech.com/2019/09/16/fast-huffman-decoder/" rel="nofollow">https://blog.litespeedtech.com/2019/09/16/fast-huffman-decoder/</a></p>
<p>Debating optimization trade-offs for a hypothetical customer is interesting but does not meet the criteria of evidence to accept this issue IMO.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623529573">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4JHKK5EQYYYIFKSTTRP3MWTANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYGM23W7I25RZB4GM3RP3MWTA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUVE4ZI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623529573",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623529573",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb03369293aa_19133fba6d0cd96c103943--


From nobody Mon May  4 08:29:58 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 E67EB3A0B88 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 08:29:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 042zdx0zOP_x for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 08:29:49 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9392B3A0B09 for <quic-issues@ietf.org>; Mon,  4 May 2020 08:29:42 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id C5AA86E53F9 for <quic-issues@ietf.org>; Mon,  4 May 2020 08:29:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588606181; bh=a4ZH+D1TioX1tgzkw0rqZRkhQl7CQEwfflaquFUwPFs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YrRgU4DwJxJ3MApFrI4T8RqYstoD1U1rDNvPYNFv81b5yp/IK44c5scdar66rIjhd ESPwb9BIYQX89fBCkS4ZZ7vxIImLGP01JZb/RFoOKMMja66Pn1UVn54P/8S9O7ebsL b/ZIF8t/jzgmV9ngn4NMOPaHaMvXXlfi3+riP54s=
Date: Mon, 04 May 2020 08:29:41 -0700
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7WDMOHIKB3I5Z2XPV4XQK6LEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623533385@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb034e5b7167_7ba73fde47ecd9602792f2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: larseggert
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4vp2wfkw6hifr9rEWDQfw9YjWDY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 15:29:51 -0000

----==_mimepart_5eb034e5b7167_7ba73fde47ecd9602792f2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

With the ARM toolchain for the Cortex M4, here is the object size (second column) of the various functions in `h3zero.c`, largest first:
```
000007a8 00001010 D h3zero_qpack_huffman_table
00000000 00000630 D qpack_static
00000eb8 000003e8 T h3zero_parse_data_stream
00000c70 00000248 T h3zero_parse_qpack_header_frame
00000814 00000228 T hzero_qpack_huffman_decode
00000638 00000170 D h3zero_qpack_index
00000a3c 00000164 T h3zero_parse_qpack_header_value
000001e4 00000100 T h3zero_qpack_int_decode
000004c4 000000d4 T h3zero_create_post_header_frame
00000ba0 000000d0 T h3zero_get_interesting_header_type
0000008c 000000b8 T h3zero_qpack_int_encode
00000598 000000b8 T h3zero_create_request_header_frame
00000700 000000a4 T h3zero_create_bad_method_header_frame
00000370 00000094 T h3zero_get_content_type_by_name
000002e4 0000008c T h3zero_get_method_by_name
00000444 00000080 T h3zero_encode_content_type
00000014 00000078 T h3zero_varint_decode
00000174 00000070 t h3zero_qpack_literal_plus_ref_encode
000007a4 00000070 T h3zero_delete_data_stream_state
00000650 00000060 T h3zero_create_response_header_frame
000006b0 00000050 T h3zero_create_not_found_header_frame
00000404 00000040 T h3zero_parse_status
00000144 00000030 t h3zero_qpack_code_encode
00000000 00000014 T h3zero_varint_skip
0000006c 00000007 r h3zero_default_setting_frame_val
00000634 00000004 D nb_h3zero_qpack_index
000017b8 00000004 D nb_h3zero_qpack_huffman_table
00000630 00000004 D h3zero_qpack_nb_static
00000068 00000004 R h3zero_default_setting_frame_size
000017bc 00000004 D h3zero_default_setting_frame
```
So the table alone is about 1K. That's not great, but I'm also not sure if `qpack_static` is the most compact representation of this data.

In terms of code size, there are some easy gains just by using minimally-sized integer types. For example, only changing `index` to `uint8_t` and `enum_as_int` to `uint16_t` in `st_h3zero_qpack_static_t` saves you 368 bytes. If you can get rid of `uint64_t` as much as possible, that would probaly save you 1-2K in size right there. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623533385
----==_mimepart_5eb034e5b7167_7ba73fde47ecd9602792f2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>With the ARM toolchain for the Cortex M4, here is the object size (second column) of the various functions in <code>h3zero.c</code>, largest first:</p>
<pre><code>000007a8 00001010 D h3zero_qpack_huffman_table
00000000 00000630 D qpack_static
00000eb8 000003e8 T h3zero_parse_data_stream
00000c70 00000248 T h3zero_parse_qpack_header_frame
00000814 00000228 T hzero_qpack_huffman_decode
00000638 00000170 D h3zero_qpack_index
00000a3c 00000164 T h3zero_parse_qpack_header_value
000001e4 00000100 T h3zero_qpack_int_decode
000004c4 000000d4 T h3zero_create_post_header_frame
00000ba0 000000d0 T h3zero_get_interesting_header_type
0000008c 000000b8 T h3zero_qpack_int_encode
00000598 000000b8 T h3zero_create_request_header_frame
00000700 000000a4 T h3zero_create_bad_method_header_frame
00000370 00000094 T h3zero_get_content_type_by_name
000002e4 0000008c T h3zero_get_method_by_name
00000444 00000080 T h3zero_encode_content_type
00000014 00000078 T h3zero_varint_decode
00000174 00000070 t h3zero_qpack_literal_plus_ref_encode
000007a4 00000070 T h3zero_delete_data_stream_state
00000650 00000060 T h3zero_create_response_header_frame
000006b0 00000050 T h3zero_create_not_found_header_frame
00000404 00000040 T h3zero_parse_status
00000144 00000030 t h3zero_qpack_code_encode
00000000 00000014 T h3zero_varint_skip
0000006c 00000007 r h3zero_default_setting_frame_val
00000634 00000004 D nb_h3zero_qpack_index
000017b8 00000004 D nb_h3zero_qpack_huffman_table
00000630 00000004 D h3zero_qpack_nb_static
00000068 00000004 R h3zero_default_setting_frame_size
000017bc 00000004 D h3zero_default_setting_frame
</code></pre>
<p>So the table alone is about 1K. That's not great, but I'm also not sure if <code>qpack_static</code> is the most compact representation of this data.</p>
<p>In terms of code size, there are some easy gains just by using minimally-sized integer types. For example, only changing <code>index</code> to <code>uint8_t</code> and <code>enum_as_int</code> to <code>uint16_t</code> in <code>st_h3zero_qpack_static_t</code> saves you 368 bytes. If you can get rid of <code>uint64_t</code> as much as possible, that would probaly save you 1-2K in size right there.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623533385">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2HPKJCQSSPXCBVXWLRP3NOLANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4JE7WTBZZJAAAP4VLRP3NOLA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUVF2SI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623533385",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623533385",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb034e5b7167_7ba73fde47ecd9602792f2--


From nobody Mon May  4 09:04:37 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 8AB833A0BEA for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 09:04:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 fjeNOJDx67dZ for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 09:04:33 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5B9B83A0BBA for <quic-issues@ietf.org>; Mon,  4 May 2020 09:04:33 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 9CA22965B57 for <quic-issues@ietf.org>; Mon,  4 May 2020 09:04:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588608271; bh=QOAyUgI2wpKEKEj/C1CLRwcGSuzo2JTSaxexLUgqimU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RfwceQc+lmkMDx+/vjQxIq+lGYr5vnFPaHm33otUdAbmX2yN2dK7elqE1mQKCFkkv W6Dy/JXdrqasAeiLZXQG2/c15EQrXFvyeEYGkbu/OLHEenyLGbv/VpUNvtS+jWHiUo 2lcNi0ROuSMvGLK6PFzd30z6AfritFax6h+RCO9c=
Date: Mon, 04 May 2020 09:04:31 -0700
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY3A6BKH4SF4Z5DPBF4XQPA7EVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623553793@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb03d0f8bf12_45513fa9424cd968380415"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: larseggert
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/31D2Ut-4eqvvcBpTGfn7Lj94A20>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 16:04:37 -0000

----==_mimepart_5eb03d0f8bf12_45513fa9424cd968380415
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Need more coffee. `h3zero_qpack_huffman_table` is obviously ~4K, since this is hex. And very large.

With some easy changes to the `int` types, it goes down 2K, which is better, but still not great.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623553793
----==_mimepart_5eb03d0f8bf12_45513fa9424cd968380415
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Need more coffee. <code>h3zero_qpack_huffman_table</code> is obviously ~4K, since this is hex. And very large.</p>
<p>With some easy changes to the <code>int</code> types, it goes down 2K, which is better, but still not great.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623553793">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZVGHDE2OKNNMNIPEDRP3RQ7ANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ37IWLVUWSJGRPZZ3RP3RQ7A5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUVK2AI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623553793",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623553793",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb03d0f8bf12_45513fa9424cd968380415--


From nobody Mon May  4 09:07:21 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 70BF83A0BFB for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 09:07:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 UJKW5FzjarYY for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 09:07:18 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 80C5A3A0BEE for <quic-issues@ietf.org>; Mon,  4 May 2020 09:07:18 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id C0D95121441 for <quic-issues@ietf.org>; Mon,  4 May 2020 09:07:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588608436; bh=hnv1FNA7H95bubQYRsqIU+p3xPtAcORwmPdS6XWyxJw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ru7vw0RsEQ9WzK4TC5vDxS5+RjrUGZ2EDfKTNedxGQpGWfAznIHVYbsLxH69H8WVQ p/TJ7B5U/K9pg4NIhDP1/BIYTUK9H4WA5unfBgYYbCdZ0OoN8QA9guq93nwy6jUA3C pEzLWx0HTY8ohxYCXvMKyBfUSboxdrH5qFZvocYE=
Date: Mon, 04 May 2020 09:07:16 -0700
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6TTO3TERC4NZTSTF54XQPLJEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623555323@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb03db47cbae_34cb3fe8d34cd960708491"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: larseggert
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1NfnkWY2RyqOMamv9iV2t-tZHdI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 16:07:19 -0000

----==_mimepart_5eb03db47cbae_34cb3fe8d34cd960708491
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

For comparison, I can fit an entire QUIC and TLS1.3 stack into 64KB.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623555323
----==_mimepart_5eb03db47cbae_34cb3fe8d34cd960708491
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>For comparison, I can fit an entire QUIC and TLS1.3 stack into 64KB.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623555323">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5FDHR6XEV3I2ZOJMLRP3R3JANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3I2HXXORYJDE6Y23DRP3R3JA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUVLF6Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623555323",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623555323",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb03db47cbae_34cb3fe8d34cd960708491--


From nobody Mon May  4 09:29:51 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 255A43A0C92 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 09:29:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.099
X-Spam-Level: 
X-Spam-Status: No, score=-3.099 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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 wOizgpL8QdYC for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 09:29:45 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1D41A3A0C97 for <quic-issues@ietf.org>; Mon,  4 May 2020 09:29:40 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 1CF34C65571 for <quic-issues@ietf.org>; Mon,  4 May 2020 09:29:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588609779; bh=GillorQCTUr9cR/OBLb+diDr7sEzaBZnY6dzlmWFW+4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zuRC8SEme1+Xeb314eMZwlXMG4EqF7yw/b7l9D3Pg0rupaVrHlNNqFfHzGX6eey9V am65xea+SznWANk3MyHJXKvmYYE3yROfXoqGjCjSULnrsY4TEro9hXo6ct4sC1hQeB FNS09uTp+MN7nmSvRJF6L3cvK5WBaUGmakzpVsiU=
Date: Mon, 04 May 2020 09:29:39 -0700
From: Victor Vasiliev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3QXGPX427EMTP32B54XQR7HEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623568022@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb042f3d3d4_705b3f82200cd9602170bc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: vasilvv
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/I4qjdX-PHNc-XYD3GpWGQFxwVm0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 16:29:50 -0000

----==_mimepart_5eb042f3d3d4_705b3f82200cd9602170bc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> How should a server that has no intention of enabling this setting respond to HEADERS that include other instructions? If the answer is to blow up the connection then the (unintended?) side effect will encourage clients to start connections by sending all requests as "Literal Header Field Without Name Reference" until they receive the setting. But that stage of a HTTP/3 connection is the exact place where static and huffman have the most value; we groomed the static table to suit best the first flights of client requests.

Well, I suggest this mechanism as an opt-in, rather than an opt-out, so it's less of "encourage" and more of "require".

This will in fact affect the first flight of requests if the client does not receive server's SETTINGS frame fast enough.  That does sound like a problem, but it will be eventually fixed when we fix #3086, so I'm not particularly concerned.

> My concern is that by trying to accommodate some smaller segment of HTTP clients, we cause a serious regression compared to HTTP/2.

That's a fair point.  On the other hand, HTTP/2 did come with a lot of features that we decided to make optional in HTTP/3, so that would be another step in this direction.

> This sort of thing seems better suited to a version that is "profile of HTTP/3" that disables some things and mandates others.

I am not sure how that kind of profile would look in practice.  The reason I am filing this for v1 is that in general, you can add complexity as an opt-in, but opting out of it does not really work.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623568022
----==_mimepart_5eb042f3d3d4_705b3f82200cd9602170bc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>How should a server that has no intention of enabling this setting respond to HEADERS that include other instructions? If the answer is to blow up the connection then the (unintended?) side effect will encourage clients to start connections by sending all requests as "Literal Header Field Without Name Reference" until they receive the setting. But that stage of a HTTP/3 connection is the exact place where static and huffman have the most value; we groomed the static table to suit best the first flights of client requests.</p>
</blockquote>
<p>Well, I suggest this mechanism as an opt-in, rather than an opt-out, so it's less of "encourage" and more of "require".</p>
<p>This will in fact affect the first flight of requests if the client does not receive server's SETTINGS frame fast enough.  That does sound like a problem, but it will be eventually fixed when we fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="505529851" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3086" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3086/hovercard" href="https://github.com/quicwg/base-drafts/issues/3086">#3086</a>, so I'm not particularly concerned.</p>
<blockquote>
<p>My concern is that by trying to accommodate some smaller segment of HTTP clients, we cause a serious regression compared to HTTP/2.</p>
</blockquote>
<p>That's a fair point.  On the other hand, HTTP/2 did come with a lot of features that we decided to make optional in HTTP/3, so that would be another step in this direction.</p>
<blockquote>
<p>This sort of thing seems better suited to a version that is "profile of HTTP/3" that disables some things and mandates others.</p>
</blockquote>
<p>I am not sure how that kind of profile would look in practice.  The reason I am filing this for v1 is that in general, you can add complexity as an opt-in, but opting out of it does not really work.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623568022">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2XEJR2RO4Y3FR74MTRP3UPHANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4ISDSPRE57SEOFLHDRP3UPHA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUVOJFQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623568022",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623568022",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb042f3d3d4_705b3f82200cd9602170bc--


From nobody Mon May  4 09:40:05 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 4C6763A0CD2 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 09:40:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZnKwBn2gzhqi for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 09:40:02 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2B9563A0C82 for <quic-issues@ietf.org>; Mon,  4 May 2020 09:39:57 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id F274B8C405E for <quic-issues@ietf.org>; Mon,  4 May 2020 09:39:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588610395; bh=yood984kYoRJW1HifOcZsLeDbIjOO1zg3XH85fdmxJM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wd82G1TD8yJATf68a3GWEQM7dZ3IwDXpUOezq3GrUN2lQdjMvsdxlpGTZlkyP6+9B ar5KQBJFxgO8YCSONWNNyWdrRZvv8RoA607zGjgnEiGt7jEUlu2UOHIZe+/c/kiqMQ tL4jCLa9l8DMd5tX5lvaEEP0nL4VkE1s4DWQqqHU=
Date: Mon, 04 May 2020 09:39:55 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7KH4CCCDASSPU64UF4XQTFXEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623573463@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb0455be3634_6e4c3fb8b46cd96c7553b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dEowlWnIEe6Fue72LX7e6MUeD8g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 16:40:03 -0000

----==_mimepart_5eb0455be3634_6e4c3fb8b46cd96c7553b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The Huffman table can be fit into 512 bytes that is used by a simple (and small), one-bit-at-a-time decoder.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623573463
----==_mimepart_5eb0455be3634_6e4c3fb8b46cd96c7553b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The Huffman table can be fit into 512 bytes that is used by a simple (and small), one-bit-at-a-time decoder.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623573463">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYBKOG26MH3YASO4ODRP3VVXANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5SMGF7NGHLJPJKZHDRP3VVXA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUVPTVY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623573463",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623573463",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb0455be3634_6e4c3fb8b46cd96c7553b--


From nobody Mon May  4 10:40:16 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 2290C3A0DE4 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 10:40:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 f0XkwWsh85bU for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 10:40:12 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AB9DD3A0E05 for <quic-issues@ietf.org>; Mon,  4 May 2020 10:40:09 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 33E65285EA2 for <quic-issues@ietf.org>; Mon,  4 May 2020 10:40:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588614007; bh=GBrOf0+fbEHHI4L2wY/zSUmufCiabp6MmegY5Olq4NY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=USILrepSvCrng4CsC4+4a+gvKA0HNIhFHSrbKbmR5/f0Sft+mWQytNKJ7F+JZxKWJ AXlAYJWE/d0vdwmmxp5/yGMYD17T0ygYGN841P8HEGFC+e90RTRiJb9urLuHl51yfY aUfT1G13bex5kPDnrpCYyiptaclZiqqoVvspfebU=
Date: Mon, 04 May 2020 10:40:07 -0700
From: Christian Huitema <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK475UTWMY6G63BPF554XQ2HPEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623604100@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb05377248c3_58263fcf3bacd95c266f6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: huitema
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uCl1wQxBbz3pMh4q976NsePFPQA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 17:40:14 -0000

----==_mimepart_5eb05377248c3_58263fcf3bacd95c266f6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@dtikhonov is right. The Huffman code in h3zero was not optimized for size -- I was more concerned about being able to directly copy tables from the specs, and making sure that the result was conformant. The result in 4K of table and 1K of code. As Dmitri says, this can be easily optimized for size -- a table of 256 elements could be represented as a flat tree of 256 entries, 16 bits per entry, thus 512 bytes. The decoding code might be reduced in size too. The code size could shrink to just over 1K of code and table.

That was not my priority. But if there is demand for that, I could certainly export h3zero in its own github project, and let volunteers drive down the code size. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623604100
----==_mimepart_5eb05377248c3_58263fcf3bacd95c266f6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/dtikhonov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dtikhonov">@dtikhonov</a> is right. The Huffman code in h3zero was not optimized for size -- I was more concerned about being able to directly copy tables from the specs, and making sure that the result was conformant. The result in 4K of table and 1K of code. As Dmitri says, this can be easily optimized for size -- a table of 256 elements could be represented as a flat tree of 256 entries, 16 bits per entry, thus 512 bytes. The decoding code might be reduced in size too. The code size could shrink to just over 1K of code and table.</p>
<p>That was not my priority. But if there is demand for that, I could certainly export h3zero in its own github project, and let volunteers drive down the code size.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623604100">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2IKUOZULDBOVHYX3LRP34XPANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK67KPKU65KRJ3J4ERTRP34XPA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUVXDBA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623604100",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623604100",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb05377248c3_58263fcf3bacd95c266f6--


From nobody Mon May  4 10:46:21 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 F1D853A0DD1 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 10:46:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 CTIgemmvZPZU for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 10:46:17 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 25F2E3A0DCF for <quic-issues@ietf.org>; Mon,  4 May 2020 10:46:17 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 31172669F2B for <quic-issues@ietf.org>; Mon,  4 May 2020 10:46:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588614376; bh=Msx50h3rZq2qwFtJ6uOsNbbagzqNtD412oehIjWVIBI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wh9sLF+/Ilj7GGggsbL68gfj11r7UXdOTb1mR8aB9R2p5NMLCmqfCqJVRc3GUfkyY Ya3XHZfC9OFx0NKVXX/d+LsOgst8g2er0JE86r4KwD8Dz8dP2iXXRaTmUKCDejSKsy sintG+3Q9HgOQwk4I2GUOYIy08/7WpulLaElF0+4=
Date: Mon, 04 May 2020 10:46:16 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5TB5WCZ2XNPQMRMDF4XQ26REVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623607334@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb054e821310_22a63fe96d2cd9685219"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/p9BCWD8hFCfMreZxTpyWzwWitRs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 17:46:19 -0000

----==_mimepart_5eb054e821310_22a63fe96d2cd9685219
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> This will in fact affect the first flight of requests if the client does not receive server's SETTINGS frame fast enough. That does sound like a problem, but it will be eventually fixed when we fix #3086, so I'm not particularly concerned.

hat-off:  I would push back against introducing a performance regression in v1 that *might* possibly be fixed in v2

> I am not sure how that kind of profile would look in practice. The reason I am filing this for v1 is that in general, you can add complexity as an opt-in, but opting out of it does not really work.

CoAP has done a pretty decent job and seems to have traction.

One way is to profile things is to create a new Application Protocol e.g. "h3-lite" or whatever, that can completely profile away all the features that are deemed as too much overhead. One could then make sweeping changes such as rewriting the message exchanges to use an ASCII-HEADERS frame that just carries verbatim headers.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623607334
----==_mimepart_5eb054e821310_22a63fe96d2cd9685219
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>This will in fact affect the first flight of requests if the client does not receive server's SETTINGS frame fast enough. That does sound like a problem, but it will be eventually fixed when we fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="505529851" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3086" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3086/hovercard" href="https://github.com/quicwg/base-drafts/issues/3086">#3086</a>, so I'm not particularly concerned.</p>
</blockquote>
<p>hat-off:  I would push back against introducing a performance regression in v1 that <em>might</em> possibly be fixed in v2</p>
<blockquote>
<p>I am not sure how that kind of profile would look in practice. The reason I am filing this for v1 is that in general, you can add complexity as an opt-in, but opting out of it does not really work.</p>
</blockquote>
<p>CoAP has done a pretty decent job and seems to have traction.</p>
<p>One way is to profile things is to create a new Application Protocol e.g. "h3-lite" or whatever, that can completely profile away all the features that are deemed as too much overhead. One could then make sweeping changes such as rewriting the message exchanges to use an ASCII-HEADERS frame that just carries verbatim headers.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623607334">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4VP2T4IQLWYDF7WALRP35ORANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYPNKGY3LRVXQVVWK3RP35ORA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUVX4JQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623607334",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623607334",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb054e821310_22a63fe96d2cd9685219--


From nobody Mon May  4 10:59:06 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 740523A0DDA for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 10:59:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 eXVeEfc1QtPq for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 10:59:03 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DD7453A0DE7 for <quic-issues@ietf.org>; Mon,  4 May 2020 10:59:02 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 2AB1C66A5A7 for <quic-issues@ietf.org>; Mon,  4 May 2020 10:59:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588615142; bh=AWArsq3R90xTdhPMZCOczPGo4Zv4AzRfkjl1IxUmC9E=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=aGJurDakchXtzhyx2zQknyn8vhOHEtm36iXW54fY2ZFDwox0fzebksZ45N+Tw7+X8 DzxI0YHPolSQ6R9Vxr93ANQuEjdwaXOluHFaHjIdoqunbGnkekPIk1C77EQ+6Neb+q UI81b/rd1t6A4ukFz7rgDZ3iztkZexNz0eTodNj0=
Date: Mon, 04 May 2020 10:59:02 -0700
From: Dragana Damjanovic <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK63DLBBR3UHUUH4QMN4XQ4ONEVBNHHCI62K2Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3624@github.com>
Subject: [quicwg/base-drafts] Does a dynamic table entry insertion needs to be acknowledged for the enttry to become evictable? (#3624)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb057e6bb22_6c63f95472cd96010659c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ddragana
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/YWA9yZXKFjI7tQh-174j063aPC4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 17:59:05 -0000

----==_mimepart_5eb057e6bb22_6c63f95472cd96010659c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> Once the insertion of a
   dynamic table entry has been acknowledged and there are no
   outstanding unacknowledged references to the entry, the entry becomes
   evictable.

Does a entry really needs to acknowledged to become evictable? Inserts are happening on the same stream so it is not possible a entry is reference after being evicted. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3624
----==_mimepart_5eb057e6bb22_6c63f95472cd96010659c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>Once the insertion of a<br>
dynamic table entry has been acknowledged and there are no<br>
outstanding unacknowledged references to the entry, the entry becomes<br>
evictable.</p>
</blockquote>
<p>Does a entry really needs to acknowledged to become evictable? Inserts are happening on the same stream so it is not possible a entry is reference after being evicted.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3624">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7FAQPF6KEIGV7EZFLRP366NANCNFSM4MY6V2XQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZDDRMQIZQDGIWPQITRP366NA5CNFSM4MY6V2X2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JD3JLKA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3624",
"url": "https://github.com/quicwg/base-drafts/issues/3624",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb057e6bb22_6c63f95472cd96010659c--


From nobody Mon May  4 13:00:40 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 797B83A0FCD for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 13:00:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 AWvJueW672De for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 13:00:37 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 236AC3A0FC9 for <quic-issues@ietf.org>; Mon,  4 May 2020 13:00:19 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 385BD660328 for <quic-issues@ietf.org>; Mon,  4 May 2020 13:00:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588622419; bh=gt4/GNuc83/Noev7ezO+caUzjIbfyzgXU7Fs2B9SmIo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wgCmwn5AUcBv0rf53IT1ynz6S34ly7yvp+Tg/l5g1LTOgwh9gTT1bOq7QZp8bwDUC T/sOS67ycjX2iKB3mYwZ3UUaxQ78NM4dxwLgYIhYu6y3ybkzFir/BD+5jooxKh2h8o Fl2dOLQsnwk43OaLzHhGTutBEDHR5iLNcrkvsxf8=
Date: Mon, 04 May 2020 13:00:19 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2TUUSYW4BUM46CGFV4XRKVHEVBNHHCI62K2Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3624/623674688@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3624@github.com>
References: <quicwg/base-drafts/issues/3624@github.com>
Subject: Re: [quicwg/base-drafts] Does a dynamic table entry insertion needs to be acknowledged for the enttry to become evictable? (#3624)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb0745328782_41153fbd83ccd960149340"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rD3SyD0ZeAgFt0wYeC8mFqL9QRM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 20:00:39 -0000

----==_mimepart_5eb0745328782_41153fbd83ccd960149340
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Yes, this is necessary.  This is done to prevent unlimited speculative insertions, otherwise wrapped [Required Insert Count](https://tools.ietf.org/html/draft-ietf-quic-qpack-14#section-4.5.1.1) does not work.  See proposal in issue #1644.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3624#issuecomment-623674688
----==_mimepart_5eb0745328782_41153fbd83ccd960149340
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Yes, this is necessary.  This is done to prevent unlimited speculative insertions, otherwise wrapped <a href="https://tools.ietf.org/html/draft-ietf-quic-qpack-14#section-4.5.1.1" rel="nofollow">Required Insert Count</a> does not work.  See proposal in issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="349123207" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/1644" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/1644/hovercard" href="https://github.com/quicwg/base-drafts/issues/1644">#1644</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3624#issuecomment-623674688">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5TAKUQ6MB2N4GCRA3RP4NFHANCNFSM4MY6V2XQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5SLT4AEOF6SCD7X7TRP4NFHA5CNFSM4MY6V2X2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUWIKQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3624#issuecomment-623674688",
"url": "https://github.com/quicwg/base-drafts/issues/3624#issuecomment-623674688",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb0745328782_41153fbd83ccd960149340--


From nobody Mon May  4 14:03:08 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 746AF3A1074 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 14:03:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 BiWfaumpCD0i for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 14:03:04 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D47F23A107D for <quic-issues@ietf.org>; Mon,  4 May 2020 14:02:58 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id ED7F4282CC9 for <quic-issues@ietf.org>; Mon,  4 May 2020 14:02:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588626177; bh=jnztmIuClL24Ac4pC7Fbrf6O7zNj3hYjPeIh8FuXSeo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qcdFrF+XoaYBffrdidB8vPotVVaNi50t+rEGVJrvY8a373Klj50M+yBOy4XYsPLdw EjxgXIMI3m0rSAb/bX5yfgOB7e7l60QQdIAKxoF5I/4oIpTW5wXdQUEC4pOG9PdLx2 o49km2D5f2GzKZt8W9BZXa8WarspjczhZ0wsXo4o=
Date: Mon, 04 May 2020 14:02:57 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ATODLUDDX5FYB7OF4XRSADEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623704092@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb08301ddb7e_3ab83fbe1cccd96c3665ba"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SrzMjh5EP6ZT79d0PeOsiycmobI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 21:03:06 -0000

----==_mimepart_5eb08301ddb7e_3ab83fbe1cccd96c3665ba
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The way we've designed SETTINGS is that you assume the minimal required capabilities from the peer until you learn that it supports more capabilities.  #3086 was an alternative design the working group did not consider acceptable given the current capabilities of TLS; any discussion of "when we fix" that issue depends on a hypothetical future version of HTTP that uses a hypothetical future version of QUIC that depends on ECHO or kin.  That may not particularly concern @vasilvv, but it concerns me.

If we reduced the minimum capability for QPACK, then the client is even further down the road of needing to either wait for the SETTINGS frame to learn capabilities or not compressing the headers.  I agree that there's some code size; there's also benefit as to size of the outgoing requests.  Based on that compression benefit, I would strongly oppose changing the default stance of the protocol.

There's actually no need for QPACK at all without these features.  There was a push in the HTTP/2 era to define a second ALPN token with more constrained defaults so that you never needed to drop back further from the defaults.  A new ALPN token that uses a simple encoding for HEADERS frames might be a better solution here.  I don't think that needs to be in the core spec; it would be a simple document to write if you think there's application demand for it.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623704092
----==_mimepart_5eb08301ddb7e_3ab83fbe1cccd96c3665ba
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>
<p>The way we've designed SETTINGS is that you assume the minimal require=
d capabilities from the peer until you learn that it supports more capabi=
lities.  <a class=3D"issue-link js-issue-link" data-error-text=3D"Failed =
to load title" data-id=3D"505529851" data-permission-text=3D"Title is pri=
vate" data-url=3D"https://github.com/quicwg/base-drafts/issues/3086" data=
-hovercard-type=3D"issue" data-hovercard-url=3D"/quicwg/base-drafts/issue=
s/3086/hovercard" href=3D"https://github.com/quicwg/base-drafts/issues/30=
86">#3086</a> was an alternative design the working group did not conside=
r acceptable given the current capabilities of TLS; any discussion of "wh=
en we fix" that issue depends on a hypothetical future version of HTTP th=
at uses a hypothetical future version of QUIC that depends on ECHO or kin=
.  That may not particularly concern <a class=3D"user-mention" data-hover=
card-type=3D"user" data-hovercard-url=3D"/users/vasilvv/hovercard" data-o=
cto-click=3D"hovercard-link-click" data-octo-dimensions=3D"link_type:self=
" href=3D"https://github.com/vasilvv">@vasilvv</a>, but it concerns me.</=
p>
<p>If we reduced the minimum capability for QPACK, then the client is eve=
n further down the road of needing to either wait for the SETTINGS frame =
to learn capabilities or not compressing the headers.  I agree that there=
's some code size; there's also benefit as to size of the outgoing reques=
ts.  Based on that compression benefit, I would strongly oppose changing =
the default stance of the protocol.</p>
<p>There's actually no need for QPACK at all without these features.  The=
re was a push in the HTTP/2 era to define a second ALPN token with more c=
onstrained defaults so that you never needed to drop back further from th=
e defaults.  A new ALPN token that uses a simple encoding for HEADERS fra=
mes might be a better solution here.  I don't think that needs to be in t=
he core spec; it would be a simple document to write if you think there's=
 application demand for it.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/issues/3622#issuecomment-623704092">view it on GitHub</a>,=
 or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK6V=
NJOO443HQ5Z7M4TRP4UQDANCNFSM4MW5NTVQ">unsubscribe</a>.<img src=3D"https:/=
/github.com/notifications/beacon/AFTOJKY76OYD6D7M5ERD4FTRP4UQDA5CNFSM4MW5=
NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUWPQHA.g=
if" height=3D"1" width=3D"1" alt=3D"" /></p>
<script type=3D"application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment=
-623704092",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-62=
3704092",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>=

----==_mimepart_5eb08301ddb7e_3ab83fbe1cccd96c3665ba--


From nobody Mon May  4 14:08:08 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 C09153A108B for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 14:08:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 FfXIu9I6PiNr for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 14:08:05 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A33963A0747 for <quic-issues@ietf.org>; Mon,  4 May 2020 14:08:05 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id CA26A1C0635 for <quic-issues@ietf.org>; Mon,  4 May 2020 14:08:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588626484; bh=STDR/noxdOc7JKvak7j9jMCcAm8U9tRsJXW9GJ8Bbjw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xpok7jIEz51nfCLmGxBcwPajYw+pBBRf1hQYek6fALB/qu/LqFjJaCHdDJslx+far MHhUD2h5gyI5R9qEwGJmgHApm6L5zLGk2ebIkEihwso0uIAiwF3lrgIyTUdC/BIGdG ZFl7pPDrQNemIXEZV5WV+irdpHxVAQgjWvu9FNeg=
Date: Mon, 04 May 2020 14:08:04 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4AXUKUMXNJPJWUHNF4XRSTJEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623706488@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb08434bab50_71cd3fc7a5ccd95c26188f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8KafowE9f2ptoQBMWRrfskGUkCM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 21:08:07 -0000

----==_mimepart_5eb08434bab50_71cd3fc7a5ccd95c26188f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

To avoid any doubt, I do not think any profiling activity such as I mentioned should take place in the scope of v1 core QUIC drafts

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623706488
----==_mimepart_5eb08434bab50_71cd3fc7a5ccd95c26188f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>To avoid any doubt, I do not think any profiling activity such as I mentioned should take place in the scope of v1 core QUIC drafts</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623706488">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZWIXS733RKR3WCTPLRP4VDJANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZMLAVEGJTGHUB5HS3RP4VDJA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUWQC6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623706488",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623706488",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb08434bab50_71cd3fc7a5ccd95c26188f--


From nobody Mon May  4 15:29:51 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 F0AED3A11C0 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 15:29:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 VKjRXNq3pUem for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 15:29:48 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D5BB43A0A67 for <quic-issues@ietf.org>; Mon,  4 May 2020 15:28:10 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 5557B8C02BF for <quic-issues@ietf.org>; Mon,  4 May 2020 15:28:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588631289; bh=KPspudaty9fhgm9C50GCIdigyKwWoj+LaRUnFoTrLWY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WE6HUx7R0GLCPtJ+yXi/V9GGloNnOA/daEqyG9TGWP/JwzhswkvmWIm673dLdMWLw l1fdI6xerQt8zN4j2d+JqtJ77xA7oASHZoZTmSVF5fZ0LnJkmQ6wx2A3KF34iHWX+i qgs3ipt/K0CnWWH6TCMnHQKC2sX1MvcJCu2XAJaU=
Date: Mon, 04 May 2020 15:28:09 -0700
From: Dragana Damjanovic <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6NSSPROC3AA7ASBOF4XR37TEVBNHHCI62K2Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3624/issue_event/3301962122@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3624@github.com>
References: <quicwg/base-drafts/issues/3624@github.com>
Subject: Re: [quicwg/base-drafts] Does a dynamic table entry insertion needs to be acknowledged for the enttry to become evictable? (#3624)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb096f945c70_480f3f92d7ccd964288750"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ddragana
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qSxOZfdnpHwGXUCtr8vb1j-yRMo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 22:29:50 -0000

----==_mimepart_5eb096f945c70_480f3f92d7ccd964288750
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3624.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3624#event-3301962122
----==_mimepart_5eb096f945c70_480f3f92d7ccd964288750
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="612059860" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3624" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3624/hovercard" href="https://github.com/quicwg/base-drafts/issues/3624">#3624</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3624#event-3301962122">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5IMGYYDKO4P6CU363RP46PTANCNFSM4MY6V2XQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZVXO75DJ2LGWDHXJLRP46PTA5CNFSM4MY6V2X2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYTH7DCQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3624#event-3301962122",
"url": "https://github.com/quicwg/base-drafts/issues/3624#event-3301962122",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb096f945c70_480f3f92d7ccd964288750--


From nobody Mon May  4 15:29: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 0A8DD3A117C for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 15:29:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.039
X-Spam-Level: 
X-Spam-Status: No, score=-1.039 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 19lWwxZ4Dj3v for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 15:29:52 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2D3973A0A78 for <quic-issues@ietf.org>; Mon,  4 May 2020 15:28:15 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 3D0A6E1191 for <quic-issues@ietf.org>; Mon,  4 May 2020 15:28:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588631294; bh=z4c6hhlZOngmuza1Tu0D5CWTtTloGrkfKg0Zq9ck+ko=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=P1a5QQrvFoois8sP9C9zh16rHFlZmFoGT+PWJ27lqOYOOc9v43bdjN0ZzXCPTVEWq LZbk4FC29/MEpU7nvKOWUYbuN3UznDLlWhYzrZvqtW/7LzSmm6ZOK1qersyWtPVWHP 0w/uu5r3jlK4a7fesVRamg//uP4JAh147/4FiSFo=
Date: Mon, 04 May 2020 15:28:14 -0700
From: Dragana Damjanovic <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYXU3UDSEET267A6H54XR375EVBNHHCI62K2Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3624/623741076@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3624@github.com>
References: <quicwg/base-drafts/issues/3624@github.com>
Subject: Re: [quicwg/base-drafts] Does a dynamic table entry insertion needs to be acknowledged for the enttry to become evictable? (#3624)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb096fe2d6a0_30a93fa3778cd96c28089d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ddragana
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7nxZCbhrBMdfqa00xtDorIwtJdM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 04 May 2020 22:29:53 -0000

----==_mimepart_5eb096fe2d6a0_30a93fa3778cd96c28089d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

thanks


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3624#issuecomment-623741076
----==_mimepart_5eb096fe2d6a0_30a93fa3778cd96c28089d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>thanks</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3624#issuecomment-623741076">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6JWPFBZ2PH6F2ND4DRP46P5ANCNFSM4MY6V2XQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZZYNK2BR6QP4RQE23RP46P5A5CNFSM4MY6V2X2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUWYRFA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3624#issuecomment-623741076",
"url": "https://github.com/quicwg/base-drafts/issues/3624#issuecomment-623741076",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb096fe2d6a0_30a93fa3778cd96c28089d--


From nobody Mon May  4 19:04:53 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 7DFBC3A1365 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 19:04:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 xqMwyeSNxGnq for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 19:04:50 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DED833A1362 for <quic-issues@ietf.org>; Mon,  4 May 2020 19:04:49 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 9E9A496048B for <quic-issues@ietf.org>; Mon,  4 May 2020 19:04:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588644288; bh=aubntAq4UGD02aOm4veuubq0q1yZoUeVx5xX2hWZXsg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NAOUwPNtMKYnEtn/EvYZJ3aHKGiv89XbTboIQYMiSEblnNNB2PzQRzIbBjd2ULPMw xW38GwSF9G5YoRu9vb02DAFZhLIfOQRkLjljDZt3t7Op7YZ++c+mfuKiKGibkBg2hH hHAnCwQf6F1hKLgVZX149WI+A7JeKiEo9z6fNtZI=
Date: Mon, 04 May 2020 19:04:48 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4TQ54AMNNAUNHFA3V4XSVMBEVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/623797945@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb0c9c08e113_702c3f95a3ecd95c10825e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OL3WYScw4unwDPKskCaUgkblhV8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 02:04:52 -0000

----==_mimepart_5eb0c9c08e113_702c3f95a3ecd95c10825e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

My proposal is that we defer the ability to signal "I support migration, but only on my preferred address" to an extension.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-623797945
----==_mimepart_5eb0c9c08e113_702c3f95a3ecd95c10825e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>My proposal is that we defer the ability to signal "I support migration, but only on my preferred address" to an extension.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-623797945">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7XRCSHQWWZPU4SK3LRP5X4BANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7BBJQ4J4FLOUTMXGTRP5X4BA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUXGNOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-623797945",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-623797945",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb0c9c08e113_702c3f95a3ecd95c10825e--


From nobody Mon May  4 19:20:35 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 304763A0B2E for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 19:20:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 5xd7FiPpL2Cc for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 19:20:31 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9D65F3A1362 for <quic-issues@ietf.org>; Mon,  4 May 2020 19:20:29 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 93019A00A3 for <quic-issues@ietf.org>; Mon,  4 May 2020 19:20:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588645228; bh=zuWXP40kF5CzMwvTcwuIiSzNk8WmwnQj8eCcl8aHPVU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=go7CSezAe7vIa47rJfTWlTy/lCfB4MhTutjFr+ndDDz6xbJ8NXebuje/4NDEyNZx7 uMo7N+TGQa8OBFloUyLYq9ldteINCpgLowmpLp4hvCyDIJu14sRPLl2bxCHp/+GnNG 467dyjkHbl8v8nqC8874xTxRp0zAdcfgkZ7W6STc=
Date: Mon, 04 May 2020 19:20:28 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYMQPP2NORMURVXYE54XSXGZEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623800917@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb0cd6c831cf_5b743fe639acd96082451"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RvW9-FNoPEg26fTiyFaXXiAX1rU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 02:20:33 -0000

----==_mimepart_5eb0cd6c831cf_5b743fe639acd96082451
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I've reached two conclusions:

1. This is a design issue.

2. I don't want to do what is being requested.  That is, I agree with Lucas about the future potential for profiling to address any need of this sort.  I hadn't considered the impact of this sort of change on h3, but it would negatively affect performance.  So let's not.

So the proposal I would make is to close this with no action.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623800917
----==_mimepart_5eb0cd6c831cf_5b743fe639acd96082451
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I've reached two conclusions:</p>
<ol>
<li>
<p>This is a design issue.</p>
</li>
<li>
<p>I don't want to do what is being requested.  That is, I agree with Lucas about the future potential for profiling to address any need of this sort.  I hadn't considered the impact of this sort of change on h3, but it would negatively affect performance.  So let's not.</p>
</li>
</ol>
<p>So the proposal I would make is to close this with no action.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623800917">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2W5VE6WTEYTSGTPT3RP5ZWZANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY3IJKPXEXM6S7EHMTRP5ZWZA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUXHEVI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623800917",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623800917",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb0cd6c831cf_5b743fe639acd96082451--


From nobody Mon May  4 21:24:24 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 785943A1355 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 21:24:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 caDHzjrEjAe6 for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 21:24:21 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 654653A13AE for <quic-issues@ietf.org>; Mon,  4 May 2020 21:24:21 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id F00A3C60504 for <quic-issues@ietf.org>; Mon,  4 May 2020 21:24:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588652659; bh=+w+YIiwVfIj7YqlSQ8xrTDM6nTeUSnm7NLL5LSrS5xw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0t9GfhDRJ+0JmRYAqx/0tGWM/CvhLGiBvgO13SlVIPOHdKVF9J9huuiVdJScvDXFR GdFABPOYOxfa1OkLrBlAJWS0sypwqVVgEv8CPXqH/K/dLd1L2yqWg9QSLLzaQILFhQ dIyuf3ISdZ6Y2/1DsWpOEQc8gr5OInolrKWU1xMM=
Date: Mon, 04 May 2020 21:24:19 -0700
From: Victor Vasiliev <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK37DUPZEKOY27KYT2V4XTFXHEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623850218@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb0ea73de280_55173fa809acd96048342"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: vasilvv
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QLV4RCGvswB9iBfPU7ORBQCW8dg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 04:24:22 -0000

----==_mimepart_5eb0ea73de280_55173fa809acd96048342
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Indeed, this is a design issue, and unfortunately the design problem turned out to be more complicated than I anticipated.  Let's close this for now.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623850218
----==_mimepart_5eb0ea73de280_55173fa809acd96048342
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Indeed, this is a design issue, and unfortunately the design problem turned out to be more complicated than I anticipated.  Let's close this for now.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623850218">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6WJYCR4FCYEUOYUDTRP6IHHANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4U4NP3Z5Y6THP53A3RP6IHHA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUXTF2Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623850218",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623850218",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb0ea73de280_55173fa809acd96048342--


From nobody Mon May  4 22:50:27 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 E8EC83A0C6C for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 22:50:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 aafq8kALiKOU for <quic-issues@ietfa.amsl.com>; Mon,  4 May 2020 22:50:24 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B4C093A0C6A for <quic-issues@ietf.org>; Mon,  4 May 2020 22:50:24 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id A415F8C1164 for <quic-issues@ietf.org>; Mon,  4 May 2020 22:50:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588657823; bh=uHzFotP/fDfIXCHoapUw8M8cw1U8MwOUGGR9riEyYfA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Z4Vp55Us9n/0yxjFDy+W3r+yn4N/fedL/Q5Olnraze0osrmb9O5EGRkycgX3xvJun ZfLWQyi7T3uC5RJLKmQ6EWOmTsrBkMJOxiR2vT02umy1AqXZgmeqfodXFmFSkPW2/j 9PU9hQ1Mf8I488xZftyGWLUL5UXbUI2t69/MSc3Q=
Date: Mon, 04 May 2020 22:50:23 -0700
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2ZU4NQLLIOY2OONCF4XTPZ7EVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/623867967@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb0fe9f9358d_56be3ff7400cd95c492364"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: larseggert
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3GLx0SRfEFN962lIWOXAIeQ37Cg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 05:50:26 -0000

----==_mimepart_5eb0fe9f9358d_56be3ff7400cd95c492364
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Labelled as requested. @vasilvv, should i close entirely or label as v2?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623867967
----==_mimepart_5eb0fe9f9358d_56be3ff7400cd95c492364
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Labelled as requested. <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/vasilvv/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/vasilvv">@vasilvv</a>, should i close entirely or label as v2?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623867967">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4A5BKIIDN6YQAZDA3RP6SJ7ANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3UEJZXCVS4BAIR5N3RP6SJ7A5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUXXQPY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623867967",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-623867967",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb0fe9f9358d_56be3ff7400cd95c492364--


From nobody Tue May  5 04:45:41 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 AC47C3A1643 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 04:45:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 uPePHILi1FMO for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 04:45:37 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 794973A085D for <quic-issues@ietf.org>; Tue,  5 May 2020 04:45:37 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 5B31F9605FC for <quic-issues@ietf.org>; Tue,  5 May 2020 04:45:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588679135; bh=pr3lWN8FA1xcOeZ80/ZiylThNatjZStVheqolt1iT3s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ovwDzkiQjascXjWWcSxL4eij0cBkdlrrWguBOwLrxF7jZXovt1a9hmb2jloVRCJhz VXStEgiNNQitlF02XdZJI0S2a7WznMA1NrjcpHG0ZtMCQ3mUyDiMKl1eGQWzrv+N8n D7hCq838btpRkUcEMpHT8iHTvjQIbePqBMGADd9A=
Date: Tue, 05 May 2020 04:45:35 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK35WBQK4E6MUUQRVQN4XUZN7EVBMPHAEUTCXI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee/38953658@github.com>
In-Reply-To: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee@github.com>
References: <quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee@github.com>
Subject: Re: [quicwg/base-drafts] Merge pull request #3611 from quicwg/transport/contributor_bullets (dee3761)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb151df4abd4_7fb73fdc320cd96c179538b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Y4gHepAaJe7D1TcvVJI6V3yCc78>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 11:45:39 -0000

----==_mimepart_5eb151df4abd4_7fb73fdc320cd96c179538b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Discussion ended up in just creating an issue for now: https://trac.tools.ietf.org/tools/xml2rfc/trac/ticket/519

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38953658
----==_mimepart_5eb151df4abd4_7fb73fdc320cd96c179538b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Discussion ended up in just creating an issue for now: <a href="https://trac.tools.ietf.org/tools/xml2rfc/trac/ticket/519" rel="nofollow">https://trac.tools.ietf.org/tools/xml2rfc/trac/ticket/519</a></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38953658">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK32RS5F3KW2F64U6KTRP7357ANCNFSM4MXTLZ2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4LKUEGBIAPBX3C4A3RP7357A5CNFSM4MXTLZ2KYY3PNVWWK3TUL52HS4DFVVBW63LNNF2EG33NNVSW45FKMNXW23LFNZ2F62LEZYBFEYV2.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38953658",
"url": "https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd9061ca0e79f866a0ee#commitcomment-38953658",
"name": "View Commit"
},
"description": "View this Commit on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb151df4abd4_7fb73fdc320cd96c179538b--


From nobody Tue May  5 05:41:33 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 89A773A0365 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 05:41:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.554
X-Spam-Level: 
X-Spam-Status: No, score=-6.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, 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 wnRZm31xqPy6 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 05:41:29 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 184B33A0363 for <quic-issues@ietf.org>; Tue,  5 May 2020 05:41:28 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 22996A0327 for <quic-issues@ietf.org>; Tue,  5 May 2020 05:41:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588682488; bh=ChFmT8JYpzqjVVyZJW0qb6Ohg1o9YzDncgSwoXp/D40=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=0l6V5QYfsn8JNncXFzdAHdvSGY4K+Fci9bUpxF9jxM2KU2I/y+oQcTq3aqAs3dthU 6T7zkoTc+Q3E+eLyoAbCs9JpIJffSZp7T0OIQc/o0OXEO6kPUyuO6Jtw0t2X6H3GbQ B5MK7ES5C23s1Pufx9batPa5XJw2BYhL/ePc0B/Q=
Date: Tue, 05 May 2020 05:41:28 -0700
From: =?UTF-8?B?QmVuY2UgQsOpa3k=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3FTSDINASFS63M5454XU77REVBNHHCJAY2SU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3625@github.com>
Subject: [quicwg/base-drafts] [HTTP/3] Merge two redundant paragraphs on frame ordering. (#3625)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb15ef812a21_24563fcff26cd96c174386b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: bencebeky
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7g2BikmVRj35MPrhhQiqigB6QgI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 12:41:31 -0000

----==_mimepart_5eb15ef812a21_24563fcff26cd96c174386b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3625

-- Commit Summary --

  * [HTTP/3] Merge two redundant paragraphs on frame ordering.

-- File Changes --

    M draft-ietf-quic-http.md (12)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3625.patch
https://github.com/quicwg/base-drafts/pull/3625.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3625

----==_mimepart_5eb15ef812a21_24563fcff26cd96c174386b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3625'>https://github.com/quicwg/base-drafts/pull/3625</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>[HTTP/3] Merge two redundant paragraphs on frame ordering.</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3625/files#diff-3d2f9fd0738589657498f2c06ee02f2f">draft-ietf-quic-http.md</a>
    (12)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3625.patch'>https://github.com/quicwg/base-drafts/pull/3625.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3625.diff'>https://github.com/quicwg/base-drafts/pull/3625.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3625">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZRPPEM3BABKQZTTYLRQACPRANCNFSM4MZRHT5A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY3PXG2PQSMRID3WHTRQACPRA5CNFSM4MZRHT5KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JEDDKKQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3625",
"url": "https://github.com/quicwg/base-drafts/pull/3625",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb15ef812a21_24563fcff26cd96c174386b--


From nobody Tue May  5 05:44:06 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 831483A040A for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 05:44:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.098
X-Spam-Level: 
X-Spam-Status: No, score=-3.098 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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 qSOpgrqCDBI1 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 05:44:03 -0700 (PDT)
Received: from out-13.smtp.github.com (out-13.smtp.github.com [192.30.254.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 72A293A0365 for <quic-issues@ietf.org>; Tue,  5 May 2020 05:43:45 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id DE81E260195 for <quic-issues@ietf.org>; Tue,  5 May 2020 05:43:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588682624; bh=MyHf2/2nY99BPzaM0UhtB88VVC5+AIcm2KFtpHQJm6A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2axjMBRGW/oQ6BRYX3+hNWGtkHo7EnAisleV5srG+IrWnG/CAYeBYXBzJ9Z/55cwq tenLPfnPhE0iSCEPGk8kz/LJ4yGpTP1vfH6X1Nd1fjg4bQphtPXW0y3JMjSfIQLLXp PU+yrMQKuYrXOmQtUX8LaiUtvSCLI5aeAl+uB6YA=
Date: Tue, 05 May 2020 05:43:44 -0700
From: =?UTF-8?B?RmVsaXggR8O8bnRoZXI=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5YDP2DCY2MEQPIC3F4XVAIBEVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/624032621@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb15f80998bd_24b63fbc55ecd960583190"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: fxguenther
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/raOw9rWLRWftgNd9iJCslnRzbO0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 12:44:04 -0000

----==_mimepart_5eb15f80998bd_24b63fbc55ecd960583190
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I reproduced Martin's analysis of CCM based on [Rogaway's 2011 evaluation](https://crossbowerbt.github.io/docs/crypto/rogaway_modes.pdf) of the bounds by [Jonsson](https://link.springer.com/content/pdf/10.1007%2F3-540-36492-7_7.pdf). (Myself not being an expert in producing such bounds, I found the second-level confirmation by Rogaway to be helpful.)

I essentially agree with the numbers, except that --when following the same metric as the [AEBounds paper](https://www.isg.rhul.ac.uk/~kp/TLS-AEbounds.pdf)-- the advantage over an ideal PRP (instead of PRF) should be considered. This simply means losing a 1/2 factor in the bound:

**Confidentiality bound:** `(ql)^2 / 2^n`

`q = 2^24.5` yields an advantage of `2^-59`. I'd hence say it's fine to keep TLS 1.3's recommendation on sending max. full-sized `2^24.5` records.


**Integrity bound:** `v/2^t + (l*(v + q))^2 / 2^n`

`v+q <= 2^25.5`, hence `v <= 24.5` yields an advantage of `2^-57` (matching the other analyses).


Most importantly, I concur with Martin that AEAD_AES_128_CCM_8 would need either much lower bounds or a different risk assessment: applying the same limit of `v = 24.5` would bring the advantage incurred through the `v/2^t` bound up to `2^-39.5`.


Would it still be the best approach to define the same anti-forgery limit across all cipher suites, even if this means going down to `2^24.5`?


Of course, I'm happy to discuss more with @ad-l !

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-624032621
----==_mimepart_5eb15f80998bd_24b63fbc55ecd960583190
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I reproduced Martin's analysis of CCM based on <a href="https://crossbowerbt.github.io/docs/crypto/rogaway_modes.pdf" rel="nofollow">Rogaway's 2011 evaluation</a> of the bounds by <a href="https://link.springer.com/content/pdf/10.1007%2F3-540-36492-7_7.pdf" rel="nofollow">Jonsson</a>. (Myself not being an expert in producing such bounds, I found the second-level confirmation by Rogaway to be helpful.)</p>
<p>I essentially agree with the numbers, except that --when following the same metric as the <a href="https://www.isg.rhul.ac.uk/~kp/TLS-AEbounds.pdf" rel="nofollow">AEBounds paper</a>-- the advantage over an ideal PRP (instead of PRF) should be considered. This simply means losing a 1/2 factor in the bound:</p>
<p><strong>Confidentiality bound:</strong> <code>(ql)^2 / 2^n</code></p>
<p><code>q = 2^24.5</code> yields an advantage of <code>2^-59</code>. I'd hence say it's fine to keep TLS 1.3's recommendation on sending max. full-sized <code>2^24.5</code> records.</p>
<p><strong>Integrity bound:</strong> <code>v/2^t + (l*(v + q))^2 / 2^n</code></p>
<p><code>v+q &lt;= 2^25.5</code>, hence <code>v &lt;= 24.5</code> yields an advantage of <code>2^-57</code> (matching the other analyses).</p>
<p>Most importantly, I concur with Martin that AEAD_AES_128_CCM_8 would need either much lower bounds or a different risk assessment: applying the same limit of <code>v = 24.5</code> would bring the advantage incurred through the <code>v/2^t</code> bound up to <code>2^-39.5</code>.</p>
<p>Would it still be the best approach to define the same anti-forgery limit across all cipher suites, even if this means going down to <code>2^24.5</code>?</p>
<p>Of course, I'm happy to discuss more with <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ad-l/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ad-l">@ad-l</a> !</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-624032621">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6VPTHRGSZJVZZNGRLRQACYBANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY5ACMATKV4DYJGP3LRQACYBA5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUY7W3I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-624032621",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-624032621",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb15f80998bd_24b63fbc55ecd960583190--


From nobody Tue May  5 06:15:16 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 958243A0736 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 06:15:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 EOjK0AYwI7OX for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 06:15:12 -0700 (PDT)
Received: from out-15.smtp.github.com (out-15.smtp.github.com [192.30.254.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1CAC63A0659 for <quic-issues@ietf.org>; Tue,  5 May 2020 06:15:11 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 8130C26173C for <quic-issues@ietf.org>; Tue,  5 May 2020 06:15:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588684511; bh=othaPBcDxY30OlTJAoA7zuIPu6i1OC4Lwd2AWYRNdzE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Jss1DTBT0vloHHQL58VdyqaxU+09z629D5jI141uBxdHipntygUhMhrTXqyqIRtzU JeEHt9rkaDaXS9+/c7PvAJJJLGuUtYvVpwl/bJNLrl5L0RoPZJJLj4bCn+A9qRUeVt cieeeu96IY0KWtqIyOsp+DHCTiuH6oLt5IfDCygQ=
Date: Tue, 05 May 2020 06:15:11 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYLNP5XN5UZBEGJ5P54XVD57EVBNHHCJAY2SU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3625/review/405774545@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3625@github.com>
References: <quicwg/base-drafts/pull/3625@github.com>
Subject: Re: [quicwg/base-drafts] [HTTP/3] Merge two redundant paragraphs on frame ordering. (#3625)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb166df3afd8_66b13ff8186cd96430727ee"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3yHKEd7fDD-hKczGm5ropqMHJQI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 13:15:14 -0000

----==_mimepart_5eb166df3afd8_66b13ff8186cd96430727ee
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3625#pullrequestreview-405774545
----==_mimepart_5eb166df3afd8_66b13ff8186cd96430727ee
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3625#pullrequestreview-405774545">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYZ7KCEB6KAKOVTP7DRQAGN7ANCNFSM4MZRHT5A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZQ35OH6CWUCHHM6BLRQAGN7A5CNFSM4MZRHT5KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODAX2BUI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3625#pullrequestreview-405774545",
"url": "https://github.com/quicwg/base-drafts/pull/3625#pullrequestreview-405774545",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb166df3afd8_66b13ff8186cd96430727ee--


From nobody Tue May  5 06:39: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 7AF2D3A0794 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 06:39:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.555
X-Spam-Level: 
X-Spam-Status: No, score=-6.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 gwCNziT4bLSi for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 06:39:53 -0700 (PDT)
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 395B73A074D for <quic-issues@ietf.org>; Tue,  5 May 2020 06:39:53 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 695E9282C72 for <quic-issues@ietf.org>; Tue,  5 May 2020 06:39:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588685992; bh=OSTVnoqdpD2K4IkB++C6gAPWdLNTYR5FmpfjLv+Bdqk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qE3o/TLkEpcD4kmzjANb0fgvHm/N8dAxr6PmPW76YweF1jTdLMVnwwqiF8lAGI3fW KqqRoNdvH9ICG5O0R4isuPb8HPg0h0PGxcrMM3flXvoqT+MuMijA7aJRG0y3/8awB4 99L4tSsPkNwNFrQce1ZhO3bqTyIuK+b0ASV17n64=
Date: Tue, 05 May 2020 06:39:52 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYQT5AJY42BIX4CCEF4XVG2REVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/624061222@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb16ca85b0f4_70903fe6846cd96429466da"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fzookSwTcQ_3nZ99veqMWb3tX6Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 13:39:55 -0000

----==_mimepart_5eb16ca85b0f4_70903fe6846cd96429466da
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson And leave the current behavior of disable_active_migration applies to both the original address and SPA?

I'm a bit concerned that makes SPA somewhat useless.  Is this issue a candidate for parking and we can come back to and see if we can live with the status quo?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624061222
----==_mimepart_5eb16ca85b0f4_70903fe6846cd96429466da
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> And leave the current behavior of disable_active_migration applies to both the original address and SPA?</p>
<p>I'm a bit concerned that makes SPA somewhat useless.  Is this issue a candidate for parking and we can come back to and see if we can live with the status quo?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624061222">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6SQVSHKJHMWSGTNV3RQAJKRANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYREU4DFAAHMLHA6D3RQAJKRA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEUZGWJQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624061222",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624061222",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb16ca85b0f4_70903fe6846cd96429466da--


From nobody Tue May  5 10:45:19 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 953C33A0B09 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 10:45:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 RvvEhSXuiJB2 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 10:45:14 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4895C3A0B08 for <quic-issues@ietf.org>; Tue,  5 May 2020 10:45:14 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 0108DA0D75 for <quic-issues@ietf.org>; Tue,  5 May 2020 10:45:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588700713; bh=W/doYFv18kihHRGue+7on+fpEJBI/mFOkHRtyICVG4I=; h=Date:From:To:Subject:From; b=wYln4JmRbca6ExsGys1kKDtnnYMPgQoa+kDSDeq9A6v6Su8YGMfLI97noVtFMLO0P 53uRgT6ClyIyAtyEwn+IAJkxKBxxueYsFw71ipm72URBU66FeU/PwAoWthRYMg4EP3 fPil4UbqEAiiC7SQO/LHVk0kQmPXmNKg0gBhnHLs=
Date: Tue, 05 May 2020 10:45:12 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/66d568-fd1142@github.com>
Subject: [quicwg/base-drafts] fd1142: [HTTP/3] Merge two redundant paragraphs on frame o...
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/dnPlgJm9I_GOJmiyJqLPAYsKfTw>
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: Tue, 05 May 2020 17:45:17 -0000

  Branch: refs/heads/master=0D
  Home:   https://github.com/quicwg/base-drafts=0D
  Commit: fd1142b09af589b871fb7b84745c7e4c03e80f22=0D
      https://github.com/quicwg/base-drafts/commit/fd1142b09af589b871fb7b=
84745c7e4c03e80f22=0D
  Author: Bence B=C3=A9ky <bnc@google.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  [HTTP/3] Merge two redundant paragraphs on frame ordering.=0D
=0D
=0D


From nobody Tue May  5 10:45:48 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 0E4743A0B08 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 10:45:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 22IVN0zSTtII for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 10:45:24 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B61163A0B0B for <quic-issues@ietf.org>; Tue,  5 May 2020 10:45:24 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id EAF721C02EC for <quic-issues@ietf.org>; Tue,  5 May 2020 10:45:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588700723; bh=ktItJlg1cX1EQ4X9qN3rZUeiDiq2zfCjqee2TtvlCJ8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FxjTlKVWNd0rg5RPqQyH7PgzcjQPWsMH7MxudnKggJnlqvVRPDjm4dG+Hx3hF7Pmn RLnoYzIMjVITzExlephdlN9gQmfdiUUD9Vrc3BNAthkRtMHGNk6IbihySeVMi4XWZv 7auuM6cG7zkJWzdfs5bGU+dqBoG/mufDkuGCa6pY=
Date: Tue, 05 May 2020 10:45:23 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5UL5MOZAPI54EKCZF4XWDTHEVBNHHCJAY2SU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3625/issue_event/3305323959@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3625@github.com>
References: <quicwg/base-drafts/pull/3625@github.com>
Subject: Re: [quicwg/base-drafts] [HTTP/3] Merge two redundant paragraphs on frame ordering. (#3625)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1a633d9380_285e3fdd3c8cd9682663bd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/q05fLfGs1qIn2Rfh49Xeqtqbzt4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 17:45:27 -0000

----==_mimepart_5eb1a633d9380_285e3fdd3c8cd9682663bd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3625 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3625#event-3305323959
----==_mimepart_5eb1a633d9380_285e3fdd3c8cd9682663bd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="612571797" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3625" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3625/hovercard" href="https://github.com/quicwg/base-drafts/pull/3625">#3625</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3625#event-3305323959">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4VOE4N7IKQELKPDX3RQBGDHANCNFSM4MZRHT5A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZXYIGM6AO5WAJKQLLRQBGDHA5CNFSM4MZRHT5KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYUBT3NY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3625#event-3305323959",
"url": "https://github.com/quicwg/base-drafts/pull/3625#event-3305323959",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1a633d9380_285e3fdd3c8cd9682663bd--


From nobody Tue May  5 10:46:31 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 711A53A0B0C for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 10:46:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 jstOX6DyAdYd for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 10:46:25 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8318A3A0B0B for <quic-issues@ietf.org>; Tue,  5 May 2020 10:46:25 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 9362D8C114E for <quic-issues@ietf.org>; Tue,  5 May 2020 10:46:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588700784; bh=knkjSIpW6M/CeqnFiiU6fe64cubEOHScFQLDQPUAkGE=; h=Date:From:To:Subject:From; b=c3WGoJ6+Spuf/Z1QEv8j0LyPeUqtF2rUE6x2xQ67ji89W4l1MV9gxCh3MI989XIxs /a3QvVn1Nc7kSGc3PDjD32rWHYCwsO0TeUmVlru4aI5L6CnmxwdkHRnF138riM/E5I ck0wPFUy8vmKCiP3A2Nv8sXQs2hUapjS1SY6ALws=
Date: Tue, 05 May 2020 10:46:24 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/cbcf20-8712a2@github.com>
Subject: [quicwg/base-drafts] 8712a2: Script updating gh-pages from fd1142b0. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UVmUdLXfmgaNM_a0LPqFfQPbIOQ>
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: Tue, 05 May 2020 17:46:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8712a257c996b032bf83facab69e83375ef556e7
      https://github.com/quicwg/base-drafts/commit/8712a257c996b032bf83facab69e83375ef556e7
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from fd1142b0. [ci skip]



From nobody Tue May  5 10:46:44 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 AA36C3A0B0F for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 10:46:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 IE01v6VAj243 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 10:46:35 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AB8F43A0B0E for <quic-issues@ietf.org>; Tue,  5 May 2020 10:46:35 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 7BD416A110A for <quic-issues@ietf.org>; Tue,  5 May 2020 10:46:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588700794; bh=XNJcb+EmAfZWC8eDyH94dNOKPX4ePggroQWIUc0xR9s=; h=Date:From:To:Subject:From; b=SFQGFEIWnHAdiILHUnn+uyDanb2oCH58lEt3tWkznQs1fvseHT4hOpLc1GsOZPgTZ hhuEay6eQYQpVtM1fsGWXhK06Rh4QgjfjGCPmiztkZqDyqHiYWBk/dTaTmLE8b1q3+ uAtER+n90bG4gnGtoiFVVcxhqR8jk3HDoBwllq7s=
Date: Tue, 05 May 2020 10:46:34 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8712a2-24451d@github.com>
Subject: [quicwg/base-drafts] 24451d: Script updating archive at 2020-05-05T17:46:14Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/17Zed2P_vI-h4h-QfFW3Qhj3gRc>
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: Tue, 05 May 2020 17:46:38 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 24451de51d188450f9116e749303203cbaa86f2e
      https://github.com/quicwg/base-drafts/commit/24451de51d188450f9116e749303203cbaa86f2e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-05T17:46:14Z. [ci skip]



From nobody Tue May  5 10:54:16 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 E33C03A0B2B for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 10:54:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.48
X-Spam-Level: 
X-Spam-Status: No, score=-1.48 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 QjrNywruPu4B for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 10:54:12 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3CB953A0B0A for <quic-issues@ietf.org>; Tue,  5 May 2020 10:54:12 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id E8EEF6E007C for <quic-issues@ietf.org>; Tue,  5 May 2020 10:54:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588701249; bh=RewDh+EoddIKw7FUtU4TUWnI6iUWaoDdOsU4lrlOoAs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rHz2y+rFkKnAkeTbxGTfkoF25EDYXl4EE+CzoLy4ee+00HfuefwcqbHqc6w6e9VZm a7aBExPqY3UYCfVa5Suskd4/iYItUTTKc2kt1AWMr41TaCzBJIDzMQAO35PU8KwCt4 fL7aNP1etHR45314XYs70VM9Z8Un7UO/eRINBo34=
Date: Tue, 05 May 2020 10:54:09 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2UZWVQ433G4HD5BK54XWEUDEVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/624210446@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1a841d9f48_45a83f84d7ccd9683882b6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HthlN2HkdNsBVxeB_-H2i2alOTA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 17:54:15 -0000

----==_mimepart_5eb1a841d9f48_45a83f84d7ccd9683882b6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> There is a mechanism to disable migration on the SPA, which is don't give out any more CIDs once they migrate.

Which, again, not only disables migration, it disables the ability to rotate CIDs.  That's not something we want servers to be doing.

@kazuho's argument is convincing that it's improbable for something which supports SPA to not be able to uniquely identify connections (whether by CID or because the SPA endpoint is unique).  Therefore, I'd support scoping disable_active_migration to the handshake address, and defer the ability to disable it on the SPA to an extension.

Loosening this definition doesn't make any current clients break, so I suspect it's bearable despite the schedule.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624210446
----==_mimepart_5eb1a841d9f48_45a83f84d7ccd9683882b6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>There is a mechanism to disable migration on the SPA, which is don't give out any more CIDs once they migrate.</p>
</blockquote>
<p>Which, again, not only disables migration, it disables the ability to rotate CIDs.  That's not something we want servers to be doing.</p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/kazuho/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a>'s argument is convincing that it's improbable for something which supports SPA to not be able to uniquely identify connections (whether by CID or because the SPA endpoint is unique).  Therefore, I'd support scoping disable_active_migration to the handshake address, and defer the ability to disable it on the SPA to an extension.</p>
<p>Loosening this definition doesn't make any current clients break, so I suspect it's bearable despite the schedule.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624210446">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6JHB2N2INYWZD5SHTRQBHEDANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK27MB7NVNWDIXYRLR3RQBHEDA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEU2LEDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624210446",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624210446",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1a841d9f48_45a83f84d7ccd9683882b6--


From nobody Tue May  5 10:57:52 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 C09F13A0B33 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 10:57:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 lI087JzhohM4 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 10:57:47 -0700 (PDT)
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 A8F4D3A0B32 for <quic-issues@ietf.org>; Tue,  5 May 2020 10:57:47 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id C2FB7282D2C for <quic-issues@ietf.org>; Tue,  5 May 2020 10:57:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588701466; bh=Mn7eNFtqizTq17fEAxiAuoRunqiniqlosbtgn6GPcps=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LcEO6UC7zzQsMn/xWKpvRW6n/dcXoUhI97NBkAwXWAljU41Des9l8UDIdjWv9Hqww Zscvpl9gBN5cxG7S577E2XW+C+dO3kNdwZmW/ruggkqmOHrcX+vpFvca6NHrbeMjNQ F2s2LFqusWo4MRulb7n982H1omMKlVx0u+xOKyaQ=
Date: Tue, 05 May 2020 10:57:46 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2RWQD44JV2YYCQSEV4XWFBVEVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/624212362@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1a91ab4371_69bd3fc74b2cd95c511865"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TgaerGxX16LtIj6x-yAUmG1fH74>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 17:57:50 -0000

----==_mimepart_5eb1a91ab4371_69bd3fc74b2cd95c511865
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If we're going to make a change, I support @kazuho and @MikeBishop direction of scoping disable_active_migration to the handshake address.

And I agree that I don't expect this breaks many existing clients.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624212362
----==_mimepart_5eb1a91ab4371_69bd3fc74b2cd95c511865
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>If we're going to make a change, I support <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/kazuho/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a> and <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/MikeBishop/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/MikeBishop">@MikeBishop</a> direction of scoping disable_active_migration to the handshake address.</p>
<p>And I agree that I don't expect this breaks many existing clients.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624212362">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2CDE5VVQ2KJUMGBOTRQBHRVANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK27DFJD5TJB7PKTEJDRQBHRVA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEU2LTCQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624212362",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624212362",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1a91ab4371_69bd3fc74b2cd95c511865--


From nobody Tue May  5 12:57:18 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 C03AE3A07BD for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 12:57:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 iwQjbKjPjKqH for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 12:57:15 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B2B223A07A3 for <quic-issues@ietf.org>; Tue,  5 May 2020 12:57:14 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 92CB16605E2 for <quic-issues@ietf.org>; Tue,  5 May 2020 12:57:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588708633; bh=fZJslbnpiiCXeOphhvb09/0TswI2Ucpr83IWAbCoous=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pWOIi+j7G+eK4ePBIxKJ3/e7fsNP5Eqza2H04f7gr/gi9iGU1lsBmlLHZs1PHSVb7 Zk1TClGawFT7dGHxYd/O7yTagnaDj/LYYXQgleh7k5mhAquUnEP2nadd63jbHulkgo 1oMK1tqHCa7m7hEOddrZWy82MvM+yOabRV8udYWg=
Date: Tue, 05 May 2020 12:57:13 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6XOET6IXFOLH3JNPF4XWTBTEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/624273617@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1c51982314_67323febb1acd96092663f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OziXopqrAfqJZ66IfDAIVgUYN7I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 19:57:17 -0000

----==_mimepart_5eb1c51982314_67323febb1acd96092663f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I would like to see this labelled as v2 if possible - I think making it so that HTTP SETTINGS are available before the client can send its first request would be a very useful feature for v2, and that would make this change not impact performance.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-624273617
----==_mimepart_5eb1c51982314_67323febb1acd96092663f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I would like to see this labelled as v2 if possible - I think making it so that HTTP SETTINGS are available before the client can send its first request would be a very useful feature for v2, and that would make this change not impact performance.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-624273617">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5FBWU2GUX7ZURCEYTRQBVRTANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7JEKPG3MFQQG7VKPLRQBVRTA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEU22RUI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-624273617",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-624273617",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1c51982314_67323febb1acd96092663f--


From nobody Tue May  5 13:19:17 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 B0ED13A09D9 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 13:19:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 QejaToPYK0hB for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 13:19:12 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B430A3A09D6 for <quic-issues@ietf.org>; Tue,  5 May 2020 13:19:12 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id E972D6602AD for <quic-issues@ietf.org>; Tue,  5 May 2020 13:19:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588709951; bh=IHh3xBgjCpLEaNef5hqiW8yG5So5XMQVZu1hIYX8dhk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VTLcNM2d+fFHDRZ31jPop6weQ0SnydpUnvSx78vM9L7zLDEhmbyJ1pNDvVtSCLhIn gLM+DWRG1kFHDBO7YlnirewkzhOLFzAb3LWAZiLkY+tWs83584XbgFf5uSTteAnBA9 1AFZhOb0x1UUMyWTesHV5gyE0BwRa3liSvPoW5Wg=
Date: Tue, 05 May 2020 13:19:11 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7LGXUL3YGY2OJQULV4XWVT7EVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/624283935@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1ca3fda01a_28d23ff9046cd96810786ea"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8rKMKO5OQorUYscrz0aq3tu6TVA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 20:19:15 -0000

----==_mimepart_5eb1ca3fda01a_28d23ff9046cd96810786ea
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I personally find the proposed change confusing. I'm not sure I find the use-case of "my original address doesn't support migration but my preferred address does" compelling. Since this can be easily solved by an extension with no downside over it being in the core docs, I don't see a reason to change the spec at this point in the process.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624283935
----==_mimepart_5eb1ca3fda01a_28d23ff9046cd96810786ea
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I personally find the proposed change confusing. I'm not sure I find the use-case of "my original address doesn't support migration but my preferred address does" compelling. Since this can be easily solved by an extension with no downside over it being in the core docs, I don't see a reason to change the spec at this point in the process.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624283935">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5MZXP5EZ4CESZOOH3RQBYD7ANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2Y6JTWOSCFX2RW6CTRQBYD7A5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEU25CHY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624283935",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-624283935",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1ca3fda01a_28d23ff9046cd96810786ea--


From nobody Tue May  5 15:01:08 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 D73263A0BEF for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:00:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.039
X-Spam-Level: 
X-Spam-Status: No, score=-1.039 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 BQ7x01p-PG1k for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:00:56 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 88B753A0BEA for <quic-issues@ietf.org>; Tue,  5 May 2020 15:00:43 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id AB05E1C0657 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:00:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588716042; bh=EkwgfpUSA1oa0sK0b45ADvWrRbgNjB0fq6qpMlpUGT4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vlUuwKKa8UqXbqIahSiKCWsGw5T1pokt3h61y3TorEI9F57SLsO/bGDLUPwsjksco XSqjBqtkMcdXvPi//QCHs/vRXS1tYjHem0+S2IWzYdRxT07tieasnFn5l8siu1bZjF AUyHc5d56BJpIrpQpWKjTCH2XgOJut9QJYpgjvHY=
Date: Tue, 05 May 2020 15:00:42 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7LBWRQ2ORN4SWUK554XXBQVEVBNHHCIE6WVA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3596/c624329383@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3596@github.com>
References: <quicwg/base-drafts/pull/3596@github.com>
Subject: Re: [quicwg/base-drafts] avoid setting the loss timer when amplification limited (#3596)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1e20a9c5d5_7bc3ff9f26cd960168018b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xPAJvPsuBac9oiYik-BtJvJQOk4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:00:58 -0000

----==_mimepart_5eb1e20a9c5d5_7bc3ff9f26cd960168018b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm closing this, please re-open if you disagree.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3596#issuecomment-624329383
----==_mimepart_5eb1e20a9c5d5_7bc3ff9f26cd960168018b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I'm closing this, please re-open if you disagree.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3596#issuecomment-624329383">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6IIG27LDQEUD2XYZLRQCEAVANCNFSM4MOZDX5Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYK2NS3N5HLMMJTQH3RQCEAVA5CNFSM4MOZDX52YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEU3IFJY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3596#issuecomment-624329383",
"url": "https://github.com/quicwg/base-drafts/pull/3596#issuecomment-624329383",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1e20a9c5d5_7bc3ff9f26cd960168018b--


From nobody Tue May  5 15:01:14 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 CC2BC3A0BEC for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:00:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 NNBBk08RP8sd for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:00:57 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C88583A0BF1 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:00:45 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id C33AA5208AB for <quic-issues@ietf.org>; Tue,  5 May 2020 15:00:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588716044; bh=Q0K63HiFLGrOn+oWfRIsJ9FqhnpNjWFSI1T/F0dMv1I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=j//M2k2TvqL+LKztcZERzEGG3Oi+z/EPnKzBhtj31aPv2EtHslr/azUZSJ0ulsFiz xDwvhj8S/f63/r4R4MNdXC4JN5f13xwEihBJrXKLdMwlh75QjHYIPv7UypaAic9kao tc4DGLhO1mXHrzTNqOWw1CB4Lu61MzHuuLBvs2LQ=
Date: Tue, 05 May 2020 15:00:44 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZKGQNO5JJB43KSKQ54XXBQZEVBNHHCIE6WVA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3596/issue_event/3306176307@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3596@github.com>
References: <quicwg/base-drafts/pull/3596@github.com>
Subject: Re: [quicwg/base-drafts] avoid setting the loss timer when amplification limited (#3596)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1e20cb3240_5e063f86efccd96c18009c2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZnPgN1QCNQAGc9V_3e1kU5UpBXU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:01:00 -0000

----==_mimepart_5eb1e20cb3240_5e063f86efccd96c18009c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3596.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3596#event-3306176307
----==_mimepart_5eb1e20cb3240_5e063f86efccd96c18009c2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="605279912" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3596" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3596/hovercard" href="https://github.com/quicwg/base-drafts/pull/3596">#3596</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3596#event-3306176307">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK32CQAIZ7HUMGZZDWTRQCEAZANCNFSM4MOZDX5Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK25XZS7CI52EIEEYVLRQCEAZA5CNFSM4MOZDX52YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYUID6MY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3596#event-3306176307",
"url": "https://github.com/quicwg/base-drafts/pull/3596#event-3306176307",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1e20cb3240_5e063f86efccd96c18009c2--


From nobody Tue May  5 15:01:34 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 15A813A0BE9 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:01:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 C50Wtphxfq7I for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:01:31 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E80B43A0BE7 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:01:30 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 2AE66660E48 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:01:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588716090; bh=C6w6KcoyIXKZWsbFoc6/esikiMYdPVxzf2QMkHFz/VA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=e8o9LKsCAqobV5qqin1wqvaZ4bF67jOnxlFJEKoFpm0x19H2Xd8WpESmK52PZ/+6b fvIamzWe5d0K5Y4+V20RxqKILAE+C4LomgAIh4TA8oIWx/tDp16hJRZowaM5kbX+DP x2ErZETbxw9eRf/y8t9gQ2PnXHhcpaO4d00btS9g=
Date: Tue, 05 May 2020 15:01:30 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZR2PBUPJRKTKTH5YV4XXBTVEVBNHHCIVPKP4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3617/review/406186258@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3617@github.com>
References: <quicwg/base-drafts/pull/3617@github.com>
Subject: Re: [quicwg/base-drafts] Scrub for backticks (#3617)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1e23a1bb05_45d13f84d7ccd968196092d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/31LjyPkdBlL4UIPXjajcTeuoBvk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:01:32 -0000

----==_mimepart_5eb1e23a1bb05_45d13f84d7ccd968196092d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3617#pullrequestreview-406186258
----==_mimepart_5eb1e23a1bb05_45d13f84d7ccd968196092d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3617#pullrequestreview-406186258">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6PNLXB77645UUYGJLRQCEDVANCNFSM4MVGITCQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7AY4DS6N44TADIBE3RQCEDVA5CNFSM4MVGITC2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODA26SEQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3617#pullrequestreview-406186258",
"url": "https://github.com/quicwg/base-drafts/pull/3617#pullrequestreview-406186258",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1e23a1bb05_45d13f84d7ccd968196092d--


From nobody Tue May  5 15:02:37 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 B86CA3A0BE7 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:02:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.039
X-Spam-Level: 
X-Spam-Status: No, score=-1.039 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 Vh_3wlTQlSBW for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:02:29 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AA7EB3A0BE5 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:02:29 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 85E7FE0078 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:02:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588716148; bh=BWqZkbSakG/aWCBmwdQxcmC825IZTv8pndopE+nCNwY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=l1h17d2urlXJAFU/3ilo5aLVxNHca85S4i1nfc0OSlxER95r0TbOIejsfEyNL6aBj bfmVuhr4+P95Gr1DjWno3gISZC1DsqHXyOJjilinOIA9nM4iecVzejdl3S2w+NkStq R3iVfXkZ1kGItci+yOiMO4xRR4v54Xp0CBvF2Inc=
Date: Tue, 05 May 2020 15:02:28 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZDDKXLLCCHRK4Q6I54XXBXJEVBNHHCIVPKP4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3617/c624330131@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3617@github.com>
References: <quicwg/base-drafts/pull/3617@github.com>
Subject: Re: [quicwg/base-drafts] Scrub for backticks (#3617)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1e27473dcf_5e8f3f86efccd96c18865ab"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lad-c7aYCX6NMYdy865QySFHAzk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:02:31 -0000

----==_mimepart_5eb1e27473dcf_5e8f3f86efccd96c18865ab
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I can merge this and we can deal with qpack separately.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3617#issuecomment-624330131
----==_mimepart_5eb1e27473dcf_5e8f3f86efccd96c18865ab
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I can merge this and we can deal with qpack separately.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3617#issuecomment-624330131">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6MSIMINOPRD5AJOY3RQCEHJANCNFSM4MVGITCQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZMOZAZTGURVYGGDFTRQCEHJA5CNFSM4MVGITC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEU3ILEY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3617#issuecomment-624330131",
"url": "https://github.com/quicwg/base-drafts/pull/3617#issuecomment-624330131",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1e27473dcf_5e8f3f86efccd96c18865ab--


From nobody Tue May  5 15:04:53 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 214B63A0BE7 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:04:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 88tA5jL-ottz for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:04:50 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BB3BD3A0BE0 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:04:49 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 19989E11A1 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:04:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588716289; bh=M5Rdz9d/vbDywF2PiuQKeq/Z49IVXojUXyY+ZyDYh44=; h=Date:From:To:Subject:From; b=P8TJpt8rj/rSnH1+Xgmx5KlTzpjyvoN1xLfmH/rPA2DLRJXaYTfPPvS8l5oKrs8bP o8ZO9bMhxpCAuN6OZX8e8UHlrTbSuI7WVPVRlBcp8KmLO9ZYdZPf4BE3MynfyYo18h EtTq0X9AVdkpb5eCjDKosZje1IqOXdM5+8ZtIrHU=
Date: Tue, 05 May 2020 15:04:49 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/backticks/5fd618-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cBnRDT527NhkqjaIZHbe4w9osZc>
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: Tue, 05 May 2020 22:04:51 -0000

  Branch: refs/heads/backticks
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May  5 15:05:05 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 C55C63A0BE0 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:04:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 4NyNdC0RkRBO for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:04:50 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BE5D73A0BE5 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:04:49 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id D869CA044F for <quic-issues@ietf.org>; Tue,  5 May 2020 15:04:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588716288; bh=JXAiff+gbUl6UdAHQ7q0ZkJtM80sFv1BQXP8Up2H5Ho=; h=Date:From:To:Subject:From; b=Silj8dQYYuGmLWf5eg5lci6NmMgjTerhrfVuwWK4LqUMhOVzWL176k5KcNCBLySbo ozZp7HkgiJ6nLPrIphL/Z+RVSX1FYSqQm2uUXnlTiw6rSS3YzUbBRG33BB2xU/ddJm SDOHpDIM5h50qMuYg9rTJLROKls9yIrKV2oMzCok=
Date: Tue, 05 May 2020 15:04:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/fd1142-6da585@github.com>
Subject: [quicwg/base-drafts] 5fd618: Scrub for backticks
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_w79lXzh6CZXCgV73uOp9O8C1Lk>
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: Tue, 05 May 2020 22:04:52 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5fd61877c43e2f7c4788f084c177aa658a1fed46
      https://github.com/quicwg/base-drafts/commit/5fd61877c43e2f7c4788f084c177aa658a1fed46
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-qpack.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Scrub for backticks

This doesn't do qpack because qpack is weird and needs a lot more work.

The places where I kept backticks are for the inline formulae that were
used for the reserved codepoints.  That seemed like it was worth quoting
somehow still.  I also kept backticks for references to variables in
examples.

However, this last principle really hurts in qpack and I don't know what
to do about that.

Closes #3609 (we'll need another issue for qpack).


  Commit: 6da585a501ddb3a451b1905db42165402dfc3d27
      https://github.com/quicwg/base-drafts/commit/6da585a501ddb3a451b1905db42165402dfc3d27
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-qpack.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3617 from quicwg/backticks

Scrub for backticks


Compare: https://github.com/quicwg/base-drafts/compare/fd1142b09af5...6da585a501dd


From nobody Tue May  5 15:05:09 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 E1CAC3A0BE7 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:05:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 f5lMXtvqprEI for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:04:59 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A79703A0BE0 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:04:59 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 02F57E0452 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:04:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588716299; bh=sz556MLhaPXk6imTOWOokVvZUnDukE/2Sl+GYFmx/Hk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sUQycmTnKzASTnUOHAD7jvaBv0lEGzePVpHlII57ArCnnsd6+3DAkuuBvWqBIbhE6 hKqPxuSyFCK8vvdFQ3G24FxQOhmz4XQ131MChXPan3ks1IzZgDqIYza0Cli5Lysz00 9WxKG6wJFOcmXUoDO/cDH5nwRCYIxJLgfbOgFmlo=
Date: Tue, 05 May 2020 15:04:58 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3WUK3OXYA4XDFO5K54XXCAVEVBNHHCITZMLA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3609/issue_event/3306188553@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3609@github.com>
References: <quicwg/base-drafts/issues/3609@github.com>
Subject: Re: [quicwg/base-drafts] Backticks around parameter names (#3609)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1e30ae7ad5_67213feda26cd96c22820d1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zBv7tYAXXsOv-MlL7-Pi9f8ielk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:05:01 -0000

----==_mimepart_5eb1e30ae7ad5_67213feda26cd96c22820d1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3609 via #3617.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3609#event-3306188553
----==_mimepart_5eb1e30ae7ad5_67213feda26cd96c22820d1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="609168472" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3609" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3609/hovercard" href="https://github.com/quicwg/base-drafts/issues/3609">#3609</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="609610367" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3617" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3617/hovercard" href="https://github.com/quicwg/base-drafts/pull/3617">#3617</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3609#event-3306188553">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4ANV4JXOPW24QJWXDRQCEQVANCNFSM4MT3B7YA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYBFYCLNDGFFFZP4QTRQCEQVA5CNFSM4MT3B7YKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYUIG6CI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3609#event-3306188553",
"url": "https://github.com/quicwg/base-drafts/issues/3609#event-3306188553",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1e30ae7ad5_67213feda26cd96c22820d1--


From nobody Tue May  5 15:05:14 2020
Return-Path: <bounces+848413-a050-quic-issues=ietf.org@sgmail.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 D2F333A0BE0 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:05:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, UNPARSEABLE_RELAY=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 kWnCHRR7K0Vh for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:05:00 -0700 (PDT)
Received: from o10.sgmail.github.com (o10.sgmail.github.com [167.89.101.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4E6EB3A0BE5 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:05:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=GJuofdcwr7yy8j4XixZr6OOIV3d1ukMF1e7I9dDf9pc=; b= xPbsOIPA/22fBiL7Z0upvM9ZnJiNKWqVoYi9oOLWZ6a95Qk9TXJjzyMqSRRmAZRD A41NXgAfzRZHORbVdmPU8dgPrD+mx+xjo0/qVxQIjWgDkb/0vGIDkcF9WIgAT49E OCasueeHYSdTMkrnbKivSfOmzK0W4VltiReEMbB6iHI=
Received: by filter1331p1las1.sendgrid.net with SMTP id filter1331p1las1-7482-5EB1E30B-19 2020-05-05 22:04:59.600581705 +0000 UTC m=+1717535.098007878
Received: from out-27.smtp.github.com (unknown) by ismtpd0054p1iad1.sendgrid.net (SG) with ESMTP id I0xugCcOQ0ypkSzRp_VPdA for <quic-issues@ietf.org>; Tue, 05 May 2020 22:04:59.441 +0000 (UTC)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 32575E0F65 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:04:59 -0700 (PDT)
Date: Tue, 05 May 2020 22:04:59 +0000 (UTC)
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6L3TFCGY3KZZ7UJO54XXCAXEVBNHHCIVPKP4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3617/issue_event/3306188546@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3617@github.com>
References: <quicwg/base-drafts/pull/3617@github.com>
Subject: Re: [quicwg/base-drafts] Scrub for backticks (#3617)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1e30b2305f_2adc3f98ad8cd96413385cb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak3ICR05gwoS/sd/tbv409tprFRBiQnwfG1WGo I78WQu8/CAPO8TplhQh9WnAePzSirP4xtbgk3TX+zis69EAmSD/dZmDPRSa+PFdSHOj+T3JcfNwxql n8hmTVqWVY6Eu5+k0g+uDqumJGBW6M0Vybo6v6wBcqFARkPjtx9k5qm61/9JU7b4GkTfelbeTQFm4L U=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/m_KhodR7cxgZpqTLUPoSLrOR20w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:05:04 -0000

----==_mimepart_5eb1e30b2305f_2adc3f98ad8cd96413385cb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3617 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3617#event-3306188546
----==_mimepart_5eb1e30b2305f_2adc3f98ad8cd96413385cb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="609610367" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3617" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3617/hovercard" href="https://github.com/quicwg/base-drafts/pull/3617">#3617</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3617#event-3306188546">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6PZ7P6HA4ZT2LP47DRQCEQXANCNFSM4MVGITCQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7OIP6GYYMFAQVMNGDRQCEQXA5CNFSM4MVGITC2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYUIG6AQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3617#event-3306188546",
"url": "https://github.com/quicwg/base-drafts/pull/3617#event-3306188546",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1e30b2305f_2adc3f98ad8cd96413385cb--


From nobody Tue May  5 15:05:49 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 BEB5A3A0BE5 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:05:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 9-LrTuM5s8no for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:05:46 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 58C873A0BE0 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:05:46 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id A9D35A0145 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:05:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588716345; bh=K3BfwH1vKNOt7z8lEPH40SBKJHLD4A5QD6Fq2VqM4fY=; h=Date:From:To:Subject:From; b=vRUPx/aqXGY4D3AxFYborfmZXH4qYpXTDz0xghQBBfon+BbKIHei//iDnpWzqc8SB 5mjkhUWdrBL9pIq6/zIVs34Q6gDbPgfkPrT0Ik8BUV5K9jQeQSyzZx8DUkJh7weL1+ 1JOatW28UyeiGgsmx7CGvJVc85Vl2oBj43P4Iwvo=
Date: Tue, 05 May 2020 15:05:45 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/24451d-722ca2@github.com>
Subject: [quicwg/base-drafts] 722ca2: Script updating gh-pages from 6da585a5. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Oc4tqXHETozy74FkeRyLmf1ohls>
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: Tue, 05 May 2020 22:05:48 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 722ca278b62a31dec4fba247c5b4d9cc87488a82
      https://github.com/quicwg/base-drafts/commit/722ca278b62a31dec4fba247c5b4d9cc87488a82
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6da585a5. [ci skip]



From nobody Tue May  5 15:14:04 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 E52BC3A0BE7 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:14:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 4TUB2221hdC2 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:14:01 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4D1193A0BCC for <quic-issues@ietf.org>; Tue,  5 May 2020 15:14:01 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 6EF12660CA9 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:14:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588716840; bh=KXdQUqOWVpKr3nso9nVJGl2u+JlG7+A/WR6rce+SDbo=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=I/pHwf3ciDbuUY13N5MfYAChZksleLosalMtJFejSTUKNGi986uAwioiBqivma+hl hU/MRpQCA1TIgG5sFt/KNLzQo/jMlDNgQhc1+3eJfOn48yZFttZE5hy/ki1Leu1CZu yAIBDByUoE+Gmsp5KdrHcptpjGUXh1zjliSBTjKI=
Date: Tue, 05 May 2020 15:14:00 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3AKMAMOT7AVEBAILN4XXDCREVBNHHCJCEICM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3626@github.com>
Subject: [quicwg/base-drafts] Backticks in qpack (#3626)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1e5285fa5d_58143fd310acd96019541ec"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5boZi0MZZ_gkrCI1gPxAOX_8piE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:14:03 -0000

----==_mimepart_5eb1e5285fa5d_58143fd310acd96019541ec
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In #3617 I came up with a principle that might apply to use of `backtick quoting`.  Field names, frame names, transport parameter names, and error codes don't use any form of decoration.  But if reference is being made to a variable in pseudocode, we would use backticks to distinguish it from.

Qpack is a little tricky here because there is a mix of things.

Note: backticks are quoted in `<code>` for HTML and in double quotes (`"`) in text output.  Sparing use is probably best.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3626
----==_mimepart_5eb1e5285fa5d_58143fd310acd96019541ec
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>In <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="609610367" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3617" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3617/hovercard" href="https://github.com/quicwg/base-drafts/pull/3617">#3617</a> I came up with a principle that might apply to use of <code>backtick quoting</code>.  Field names, frame names, transport parameter names, and error codes don't use any form of decoration.  But if reference is being made to a variable in pseudocode, we would use backticks to distinguish it from.</p>
<p>Qpack is a little tricky here because there is a mix of things.</p>
<p>Note: backticks are quoted in <code>&lt;code&gt;</code> for HTML and in double quotes (<code>"</code>) in text output.  Sparing use is probably best.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3626">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZP267PIEWBNA6C663RQCFSRANCNFSM4MZ6MYRQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SX6TEPMZ5JDK33NTRQCFSRA5CNFSM4MZ6MYR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JEIRAJQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3626",
"url": "https://github.com/quicwg/base-drafts/issues/3626",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1e5285fa5d_58143fd310acd96019541ec--


From nobody Tue May  5 15:19:37 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 9DD263A0BDF for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:19:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 jlBskstqUPoE for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:19:34 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 71B823A0BD1 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:19:34 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id BA0B5660036 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:19:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588717173; bh=ZS11DObZPoJM7d2ny1ovGZ2MRj7QtJY44Ga1n0EvcdE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BxWXOxRJov8pcHNvTXKlmH7L+gFwIjctf0QNSLqaYaq7oCNlO2fSwWnY7vRDjl6RR C+4V5GMWeIzOZ+vxwrI0oLQnuA6piPuCb130YsNqk+PJKLr/rSGHHaEjQ+FsFvHV5t VmV9RBmfPKICPdXjvIh+ieb9gWzTG5nSVmBLuj7o=
Date: Tue, 05 May 2020 15:19:33 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4YZD7JSFXSIT6IKEN4XXDXLEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/624336629@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1e675ab672_5e293f9ce42cd95c7295"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ycCTQ7rXXI-5r1I1mF-g4ygYJv4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:19:36 -0000

----==_mimepart_5eb1e675ab672_5e293f9ce42cd95c7295
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The proposal is to mark this as v2.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-624336629
----==_mimepart_5eb1e675ab672_5e293f9ce42cd95c7295
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The proposal is to mark this as v2.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-624336629">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK77F7VB2Z3G76YLCXTRQCGHLANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3JN23LOXK2UVOSZJLRQCGHLA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEU3J55I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-624336629",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-624336629",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1e675ab672_5e293f9ce42cd95c7295--


From nobody Tue May  5 15:26:11 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 4CA8B3A0BF3 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:26:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 ALNxeEgNns9z for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:26:08 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 25EA33A0BF0 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:26:07 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id A82DC6A0A52 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:26:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588717566; bh=xbkK4rrsWi5T4CW8snO+eTdcVEvpZh+o+1DAqkMH0xc=; h=Date:From:To:Subject:From; b=yHD5PkfPKtPlxlrliCs2wfiGYY536fOKc5pGzaDe3AsSKNcCDdElEJo7G7SB4u2/H 1uMvqhxEkTCrOI+cmUcvfQ6rKOZ3Aas0xsbs0sCJq3h2uaBVrBC5AoNbB8Dk0KolQR dhDPJAfOzY6BUXk6LNQqv8NHLROAmxGxGH/Eb33w=
Date: Tue, 05 May 2020 15:26:06 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/6da585-6a1ea1@github.com>
Subject: [quicwg/base-drafts] 6a1ea1: Initial Contributors
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XWTQtKqv4Cr6eKEaI4Jhv1uoL_k>
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: Tue, 05 May 2020 22:26:09 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6a1ea10afffb0c1b8047596bc0198619522969c9
      https://github.com/quicwg/base-drafts/commit/6a1ea10afffb0c1b8047596bc0198619522969c9
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Initial Contributors



From nobody Tue May  5 15:26:25 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 F0C133A0BF3 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:26:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 SdqspNsPYXdw for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:26:08 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 531AB3A0BF2 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:26:08 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 94742A1C12 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:26:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588717567; bh=FOK+mX4kl169S3Qf5vIkyH3WBLsk+s/UnTRXXqaj5XI=; h=Date:From:To:Subject:From; b=1fEcRsWa06LdLI/ViCzGKAD9E7pF/rZXr/CpkVg8Xi4+1QAA/G0o3cvv45YZeapkH 699/dFX188DbwqHTlFHAwb6n0NCLVNIaT8Rfnm9xQaukxvfcMUZ1M7OmZi4tL6lRKk lHUidrBCEDeV1MKMB4r666zCRcvwFozlJ9l3VvSA=
Date: Tue, 05 May 2020 15:26:07 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/acknowledgements/59e87b-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GuvyIwch6oqGXQPSXCvdbzp9Zw8>
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: Tue, 05 May 2020 22:26:10 -0000

  Branch: refs/heads/http/acknowledgements
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May  5 15:26:32 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 DB6BC3A0C3A for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:26:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Yvml32JcF2mH for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:26:19 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C2D0D3A0C0E for <quic-issues@ietf.org>; Tue,  5 May 2020 15:26:18 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 1583BE004F for <quic-issues@ietf.org>; Tue,  5 May 2020 15:26:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588717578; bh=Gswmmv/dTInMtywUXT98m9Kvo1wLD+e+1pWtCCW9Ku4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RbFYnh7Czy0x54rc+NznnbjnHje0TsmA3Z77WiH4nBSP+omvX9iFsLJq1YCmZw5lO iOO3RJtTOys/4J/15sr7bPuK2Jj4xrA83wDH3W6n7+gkBAfNay6/8PQUVqEFFRvV0i XVcvzLmnB6Z2xTMDNpXSmCgpFaHddAwBbGJAVvNs=
Date: Tue, 05 May 2020 15:26:18 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6OBVAUTSNS5WAUHRV4XXEQVEVBNHHCIUKPEA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3612/issue_event/3306242668@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3612@github.com>
References: <quicwg/base-drafts/pull/3612@github.com>
Subject: Re: [quicwg/base-drafts] Initial Contributors for HTTP (#3612)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1e80a65fa_17b63ff82c4cd95c506b9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6n2kWuEIb-D-3S8vdZlTOvNXdo8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:26:26 -0000

----==_mimepart_5eb1e80a65fa_17b63ff82c4cd95c506b9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3612 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3612#event-3306242668
----==_mimepart_5eb1e80a65fa_17b63ff82c4cd95c506b9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="609308448" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3612" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3612/hovercard" href="https://github.com/quicwg/base-drafts/pull/3612">#3612</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3612#event-3306242668">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4XWNGV3R6URI634OTRQCHAVANCNFSM4MUAISBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6G7JBXGDCGZSXL53LRQCHAVA5CNFSM4MUAISBKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYUIUE3A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3612#event-3306242668",
"url": "https://github.com/quicwg/base-drafts/pull/3612#event-3306242668",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1e80a65fa_17b63ff82c4cd95c506b9--


From nobody Tue May  5 15:27:57 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 81DF43A0BFA for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:27:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.033
X-Spam-Level: 
X-Spam-Status: No, score=-1.033 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_PASS=-0.001, T_SPF_HELO_TEMPERROR=0.01] autolearn=no 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 r096rg2u7pGA for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:27:52 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 662073A0BF3 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:27:52 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 929C02C1901 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:27:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588717671; bh=3g3+3gRaQiL+ASQclrJ/PXzPIrLdqXvu7uhb7l8a9+I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BFew9HJrg5yjkOic2e0SmMzPAjvDChhsBCc3O4CX2XIu9N3pKlZZmALOcK6MRLxpU COo0Z4/z3iNFDrqPgFhwxpdCiqrA0SFIyQaTnCTFPAPleGwWp2CUmqtB4ARmzjahRo +dwfUrd6V/vZTd3JONXRHUI/0/EDIWgdRVlwf6nE=
Date: Tue, 05 May 2020 15:27:51 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3QIJJP2RIGPZZTCTN4XXEWPEVBNHHCIQTSZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3602/review/406198703@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3602@github.com>
References: <quicwg/base-drafts/pull/3602@github.com>
Subject: Re: [quicwg/base-drafts] editorial advice for h2<->h3 error propagation (#3602)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1e86782d3d_7b853feea34cd96c10168"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ne8iVE9nR1-bkR1i4V1d14qHuPM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:27:57 -0000

----==_mimepart_5eb1e86782d3d_7b853feea34cd96c10168
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3602#pullrequestreview-406198703
----==_mimepart_5eb1e86782d3d_7b853feea34cd96c10168
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3602#pullrequestreview-406198703">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7VCAVCGJW5OSZFAF3RQCHGPANCNFSM4MS3DGGQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZGZHSCW3QFGS44ZDLRQCHGPA5CNFSM4MS3DGG2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODA3BTLY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3602#pullrequestreview-406198703",
"url": "https://github.com/quicwg/base-drafts/pull/3602#pullrequestreview-406198703",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1e86782d3d_7b853feea34cd96c10168--


From nobody Tue May  5 15:28:04 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 1FE103A0BF7 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:27:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 CLbKo0q0iHYU for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:27:55 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C6C333A0BF8 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:27:55 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 4CF56261742 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:27:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588717675; bh=McGQTBc0Rn3ZwCL/XIWR9vKngA2XlWiZBS/AMaz4Su0=; h=Date:From:To:Subject:From; b=Jg1uYFHdbRrqXVXgk4idrcYr986DMNjboRB7RrE49q/upkxE8trrhTNKdf4K7Dsl8 KUfsXOEiDq5sm+U9HbiMtXtoE22cohUEWKaNC86Y+LxVS/iBHJ/qGV9rje1qK3lHAL GkNR3o1BfbPxB9+w5ME0hH0B5lYJzQfstTY/18tU=
Date: Tue, 05 May 2020 15:27:55 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/722ca2-cadf9a@github.com>
Subject: [quicwg/base-drafts] cadf9a: Script updating gh-pages from 6a1ea10a. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UmQcLRUTN67UD-gBTAsKDeL4jLI>
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: Tue, 05 May 2020 22:27:57 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: cadf9a12a5ea4cd290e04732d543ceea4c058a99
      https://github.com/quicwg/base-drafts/commit/cadf9a12a5ea4cd290e04732d543ceea4c058a99
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6a1ea10a. [ci skip]



From nobody Tue May  5 15:31:58 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 675663A0C80 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:31:50 -0700 (PDT)
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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 G54Ow6vfrDcm for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:31:49 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5BA1E3A0C67 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:31:46 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 877B98C083D for <quic-issues@ietf.org>; Tue,  5 May 2020 15:31:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588717905; bh=AN7C0pJLO2D7+QrOwltLYx+peKVITaXVHeAmlxhlaZ4=; h=Date:From:To:Subject:From; b=TFglj4d5t95+QStQC7++0s9EGcOcqNc9AgD5WMG1spKSg5gGtJWdGr35gWaoqoKGH 1miaKsGA23pVn2hGdi6SlH9KJGLyIVBNFYuNFI0+emhNnbPog7sAZmGgs37Jisqdkt 4CFGGbhyg4/gmpMsSr+3zC2ncx6HpWXccJbxZLGw=
Date: Tue, 05 May 2020 15:31:45 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-min-cwnd/72c7ec-1e67d0@github.com>
Subject: [quicwg/base-drafts] 1e67d0: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SkUMqJzmh237tnN0DOHszEqkL54>
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: Tue, 05 May 2020 22:31:57 -0000

  Branch: refs/heads/ianswett-min-cwnd
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1e67d0fb1c81085c81ab5812621111608d824cdf
      https://github.com/quicwg/base-drafts/commit/1e67d0fb1c81085c81ab5812621111608d824cdf
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Tue May  5 15:32:14 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 0DBF73A0C95 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:32:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 Enh9IyzKJ3Zq for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:32:03 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7E8353A0C9E for <quic-issues@ietf.org>; Tue,  5 May 2020 15:31:56 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id D0ED08C0CFD for <quic-issues@ietf.org>; Tue,  5 May 2020 15:31:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588717915; bh=g3vFNMs9YiBAN8jJHT5trr44HqGUYdfraAx8c4OJmuM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YHPyAAdlZfd4zk3YTdJgFn7vjZO+h/VS1pGNYYv5LwbTd+2L7js4T1GxeMRYvvWtf S65zbbiJv3CF+EoqoYidiVkXGWSc5YtQ74aHvCToviUtzF1Vy7R61zZ4Wpjx/8cpzY GO7g8GKqySxWeFzbangYwWl/6diT7EvOrl74+KHY=
Date: Tue, 05 May 2020 15:31:55 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3586/push/5026279276@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3586@github.com>
References: <quicwg/base-drafts/pull/3586@github.com>
Subject: Re: [quicwg/base-drafts] Why min CWND of 2 instead of 1 (#3586)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1e95bc1d0a_75323ff3ec0cd968179423"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Z9ANg9uV2Ps2xHoj9YY52B37j9k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:32:12 -0000

----==_mimepart_5eb1e95bc1d0a_75323ff3ec0cd968179423
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

1e67d0fb1c81085c81ab5812621111608d824cdf  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3586/files/72c7eced88de7b859edf4d1f093277851433ab8a..1e67d0fb1c81085c81ab5812621111608d824cdf

----==_mimepart_5eb1e95bc1d0a_75323ff3ec0cd968179423
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/1e67d0fb1c81085c81ab5812621111608d824cdf">1e67d0f</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3586/files/72c7eced88de7b859edf4d1f093277851433ab8a..1e67d0fb1c81085c81ab5812621111608d824cdf">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5FFY5PZ4FSPHJ62DDRQCHVXANCNFSM4ML6ZUXA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3OICLQUJ3QAM33BDLRQCHVXA5CNFSM4ML6ZUXKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDKNZTHE3TOOCQOVZWQIZVGAZDMMRXHEZDONQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3586/files/72c7eced88de7b859edf4d1f093277851433ab8a..1e67d0fb1c81085c81ab5812621111608d824cdf",
"url": "https://github.com/quicwg/base-drafts/pull/3586/files/72c7eced88de7b859edf4d1f093277851433ab8a..1e67d0fb1c81085c81ab5812621111608d824cdf",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb1e95bc1d0a_75323ff3ec0cd968179423--


From nobody Tue May  5 15:32:51 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 555E23A0BF6 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:32:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 taiFquR6kgVO for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:32:48 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 030573A0BF7 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:32:38 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 2FDC852050A for <quic-issues@ietf.org>; Tue,  5 May 2020 15:32:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588717958; bh=aUMFTn1BGqkqpBNoGkCGvj7VVOVuud+QGWmtDfToswQ=; h=Date:From:To:Subject:From; b=hPMeh2aTryuV3gSu9UiUbRuD7zAepfqVkVaGadilYtluemGvsqvR2dp2psmk0IyV9 c6OEvaUrnc4wg4y/BBcWBNYBhPCsVuKEMBsAkN6Fnt5u/oqHH+in/MYchN3fqf+FNj J5/KDhGUqyS/Qrfm9LxmFSwjNjDrslaof+0vYGg0=
Date: Tue, 05 May 2020 15:32:38 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/cadf9a-0c593b@github.com>
Subject: [quicwg/base-drafts] 0c593b: Script updating gh-pages from 1e67d0fb. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KvtekMxPVBjEOOJg5ZB35M5KJA0>
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: Tue, 05 May 2020 22:32:49 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0c593be68e9b60287d21cf431543f91297758cf7
      https://github.com/quicwg/base-drafts/commit/0c593be68e9b60287d21cf431543f91297758cf7
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-http.html
    M ianswett-min-cwnd/draft-ietf-quic-http.txt
    M ianswett-min-cwnd/draft-ietf-quic-invariants.html
    M ianswett-min-cwnd/draft-ietf-quic-invariants.txt
    M ianswett-min-cwnd/draft-ietf-quic-qpack.html
    M ianswett-min-cwnd/draft-ietf-quic-qpack.txt
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M ianswett-min-cwnd/draft-ietf-quic-tls.html
    M ianswett-min-cwnd/draft-ietf-quic-tls.txt
    M ianswett-min-cwnd/draft-ietf-quic-transport.html
    M ianswett-min-cwnd/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 1e67d0fb. [ci skip]



From nobody Tue May  5 15:32:57 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 431623A0BF7 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:32:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.097
X-Spam-Level: 
X-Spam-Status: No, score=-2.097 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 GDXvr2Sr8VfI for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:32:55 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E321C3A0BF6 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:32:54 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 3A7F56E04F6 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:32:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588717974; bh=E0X1mVZvX/seU//pVpT4n8x2J8Ql9UOk5yrC/pHh1qI=; h=Date:From:To:Subject:From; b=Ea+bRpXyFENfVKqMMbM32H8NCRzGkpMG4lZT4ORATjUg+DfVRaWfFrT/O6kQFmHaB a+DIqPNs0Q5R98jh20096kGuhZcjGAiKjTz5lW2/Hm1FZjK2eA/NuYUZlOY91GCeWe UtDQVUbXwqkETWiNp8/Zoq7qbvsO8edxMmIe6QBk=
Date: Tue, 05 May 2020 15:32:54 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-min-cwnd/1e67d0-b32ab8@github.com>
Subject: [quicwg/base-drafts] b32ab8: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Mr_zprRFAi3li4UuB0xYWkxK3XA>
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: Tue, 05 May 2020 22:32:56 -0000

  Branch: refs/heads/ianswett-min-cwnd
  Home:   https://github.com/quicwg/base-drafts
  Commit: b32ab8c350ac15b92b520f7a3b15f7415b22083b
      https://github.com/quicwg/base-drafts/commit/b32ab8c350ac15b92b520f7a3b15f7415b22083b
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Tue May  5 15:33:09 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 8E3C73A0BF7 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:33:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 JrNLly4j6Zh9 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:33:05 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9E06F3A0BF3 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:33:05 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id C5C49C60A0F for <quic-issues@ietf.org>; Tue,  5 May 2020 15:33:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588717984; bh=cm6lg1ewOOFTZuRRXi0CIcHdG4udDbZUMhWL12jf0IY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ccJ4NI9wgy7a9dkePvT44D9Zo8u54wiT3EypwWlm4+Zas/+9k0WrMafMEbulU5RXs h5Pb2Ci3nedtW7Tc0kDS78BnOBx+k+oNeNgDdA9opOg3lU8JUzdi6MNavUOIn/C6Xf ZeKnlA23nhCpDN4HDHcKjYCKzONEhqBALAlK9nW8=
Date: Tue, 05 May 2020 15:33:04 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3586/push/5026283208@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3586@github.com>
References: <quicwg/base-drafts/pull/3586@github.com>
Subject: Re: [quicwg/base-drafts] Why min CWND of 2 instead of 1 (#3586)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1e9a0b6299_5d683f9ce42cd95c18651e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4irknlTCQYPLyGt4i1Lm8KjWckc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:33:08 -0000

----==_mimepart_5eb1e9a0b6299_5d683f9ce42cd95c18651e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

b32ab8c350ac15b92b520f7a3b15f7415b22083b  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3586/files/1e67d0fb1c81085c81ab5812621111608d824cdf..b32ab8c350ac15b92b520f7a3b15f7415b22083b

----==_mimepart_5eb1e9a0b6299_5d683f9ce42cd95c18651e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/b32ab8c350ac15b92b520f7a3b15f7415b22083b">b32ab8c</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3586/files/1e67d0fb1c81085c81ab5812621111608d824cdf..b32ab8c350ac15b92b520f7a3b15f7415b22083b">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2N6BTXWPLHBEXDXYDRQCH2BANCNFSM4ML6ZUXA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6ZWNYTB3HPNE3QS63RQCH2BA5CNFSM4ML6ZUXKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDKNZTHE3TOOCQOVZWQIZVGAZDMMRYGMZDAOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3586/files/1e67d0fb1c81085c81ab5812621111608d824cdf..b32ab8c350ac15b92b520f7a3b15f7415b22083b",
"url": "https://github.com/quicwg/base-drafts/pull/3586/files/1e67d0fb1c81085c81ab5812621111608d824cdf..b32ab8c350ac15b92b520f7a3b15f7415b22083b",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb1e9a0b6299_5d683f9ce42cd95c18651e--


From nobody Tue May  5 15:33:34 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 09C6B3A0BFC for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:33:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 MVrqjGJ7_o8Z for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:33:27 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2B2AF3A0BFA for <quic-issues@ietf.org>; Tue,  5 May 2020 15:33:27 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 7EAFDA01FD for <quic-issues@ietf.org>; Tue,  5 May 2020 15:33:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718006; bh=1Z7rGSkEk2j9hOohgN+qiMSiiF6dqSOR21s9w8w8JHA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0gKFYg/lpTFUvbYN9r1lkCa79Eg8YBpx8Nim75XtqUnR6/qpE2BDxhKoYuhuoUKgf VZJjB1+Rz1Ck9jBO3T425MiEpHdEV9gEh2o6AVX1mkW9ItC3kiSZ19N0yjOOsitZi/ TDpdncuIOOg5mjJT/3+I0MhIm3PDFRqDWPIIUyHw=
Date: Tue, 05 May 2020 15:33:26 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3FDLMHX23YECPANI54XXFLNEVBNHHCIPNKJY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3601/review/406201192@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3601@github.com>
References: <quicwg/base-drafts/pull/3601@github.com>
Subject: Re: [quicwg/base-drafts] Define the use of generic TLS alerts (#3601)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1e9b66e02c_2c2c3f8a6f8cd96018242f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0VfUrL95wg5RbRBH5JYjPuFrSf8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:33:30 -0000

----==_mimepart_5eb1e9b66e02c_2c2c3f8a6f8cd96018242f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3601#pullrequestreview-406201192
----==_mimepart_5eb1e9b66e02c_2c2c3f8a6f8cd96018242f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@LPardue</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3601#pullrequestreview-406201192">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5DQMS4LH2CLD224HDRQCH3NANCNFSM4MSPU6MA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6EBSLXDE4N7GSZOFTRQCH3NA5CNFSM4MSPU6MKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODA3CG2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3601#pullrequestreview-406201192",
"url": "https://github.com/quicwg/base-drafts/pull/3601#pullrequestreview-406201192",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1e9b66e02c_2c2c3f8a6f8cd96018242f--


From nobody Tue May  5 15:34:31 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 064BB3A0BFA for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:34:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 GKsxe42TYFgX for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:34:27 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D7D2D3A0BF8 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:34:26 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 2D906A0B7C for <quic-issues@ietf.org>; Tue,  5 May 2020 15:34:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718066; bh=rgBA06nJ9Add5PGa0eupG4OBCcgz3OqOuLAMVnZFNWE=; h=Date:From:To:Subject:From; b=pd3/8/5QYByleYiEWW3XZxzuEYs6ddZBPrOrZVD4Y+VrNH8NnPf7cEuZf/7cmf1mD L9ZlxXoqKYH48EJKSzaxwYywiBdnzeLfBSXumyZvv+e22+pH2OJRVUmhwqWCtC9vDu gx6cnvIe9dJ5r/1/jli48JaRtGt1R6BnI9RNIwFQ=
Date: Tue, 05 May 2020 15:34:26 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0c593b-52158b@github.com>
Subject: [quicwg/base-drafts] 52158b: Script updating gh-pages from b32ab8c3. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/74655MKUBfLbFgDVzw6TxJuV0h4>
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: Tue, 05 May 2020 22:34:30 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 52158bc1cd8c1355b3544abf933646791b29b55a
      https://github.com/quicwg/base-drafts/commit/52158bc1cd8c1355b3544abf933646791b29b55a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b32ab8c3. [ci skip]



From nobody Tue May  5 15:34:51 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 A7D333A0BFF for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:34:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 4eC3BvQHhLkC for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:34:44 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AF90E3A0BF3 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:34:43 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id C9CF2E0F68 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:34:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718082; bh=R25ZrjYNjiFZJZK47LaW298Hu/GnJhUHg4MZ5AeMy/I=; h=Date:From:To:Subject:From; b=bAyqcUxKwxUT9jTB9NLIEJ1YwuW42iWDK40R6NFu2uYgArXRi7S4TQ+cptOsPqPvt IhpwbgtYlHjnpMq4/isPseCvVPnlfsyOZU3uOEt2tJeEzrBZcLAXHTMvgft2ZzIocy KfNSgKvY6SvyEJ6Bbr4HNPDUJmWnrrum9BVXziSU=
Date: Tue, 05 May 2020 15:34:42 -0700
From: Lucas Pardue <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/6a1ea1-c6a32d@github.com>
Subject: [quicwg/base-drafts] c6a32d: editorial advice for h2<->h3 error propagation (#3...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FlJLVvb44Xc85KHqUtQCGgXLTH4>
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: Tue, 05 May 2020 22:34:46 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: c6a32d20a9d9a05779076434da2884773cf8aefe
      https://github.com/quicwg/base-drafts/commit/c6a32d20a9d9a05779076434da2884773cf8aefe
  Author: Lucas Pardue <lucaspardue.24.7@gmail.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  editorial advice for h2<->h3 error propagation (#3602)

* editorial advice for h2<->h3 error propagation

* Mike's feedback: invert the advice



From nobody Tue May  5 15:34:59 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 3B47F3A0C04 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:34:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 97mse8VJO8ZX for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:34:53 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 957AC3A0C0F for <quic-issues@ietf.org>; Tue,  5 May 2020 15:34:53 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id EDFEF6E002C for <quic-issues@ietf.org>; Tue,  5 May 2020 15:34:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718092; bh=OlDqvVLQfeG8ju1ITvik1CYxPoMWqwkRkJMltYyMUgc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=T4qqUZHlkP/8Q9fF1vIJ6+/hWfPG2H4X/G9fpESwo6qaSx6V4he4mJBZum1tDpqjc psgKMZUTlX+x7Mb+WvwpiVqXdPyfkYLbuKpZUphAiCul+Q9hbDiK4hVRmDDRcrPztn M1PsBZRNMtVMK2PWAZB+TgmJ8rSHKQiDOaC3r2h0=
Date: Tue, 05 May 2020 15:34:52 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7E3ANP4RRQR4GLDWF4XXFQZEVBNHHBWTRIUM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/2817/issue_event/3306261760@github.com>
In-Reply-To: <quicwg/base-drafts/issues/2817@github.com>
References: <quicwg/base-drafts/issues/2817@github.com>
Subject: Re: [quicwg/base-drafts] Guidance for propogation of errors between H2 and H3 (#2817)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1ea0cdfa5d_59e73fb3834cd96815901"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AH1FI7Ia8Ygi4hlY7l0QuVxe-AM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:34:56 -0000

----==_mimepart_5eb1ea0cdfa5d_59e73fb3834cd96815901
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #2817 via #3602.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/2817#event-3306261760
----==_mimepart_5eb1ea0cdfa5d_59e73fb3834cd96815901
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="458107043" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/2817" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/2817/hovercard" href="https://github.com/quicwg/base-drafts/issues/2817">#2817</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="608334537" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3602" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3602/hovercard" href="https://github.com/quicwg/base-drafts/pull/3602">#3602</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/2817#event-3306261760">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZQITSTOP7DYPSYYDRQCIAZANCNFSM4HZLJJ3Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK675BDHLCTNYONGGKLRQCIAZA5CNFSM4HZLJJ32YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYUIY2AA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/2817#event-3306261760",
"url": "https://github.com/quicwg/base-drafts/issues/2817#event-3306261760",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1ea0cdfa5d_59e73fb3834cd96815901--


From nobody Tue May  5 15:35:03 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 63D373A0C1B for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:34:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 DDLvrB7ecr00 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:34:54 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EE9213A0C0E for <quic-issues@ietf.org>; Tue,  5 May 2020 15:34:53 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 4CC396E04D8 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:34:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718093; bh=I4zVnV1m8puvq+NnpsSKHJeVouXY0nH9SJJGhuwikcM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KWX83DjkIMUflb9mY90q+QqAGK4XzH1Gl6oYrdHO3/tm3hyPwJ2QNj5eshxtp7/+4 RlMPKr2nSslFdtNtxSNIHtmtJ13mam+kMNnfwfxdO3NzOQ6kjcr/d3Ya/ybxXQGj7H y2S2AgYolAp/zPEWqqjmIrAxcj+YsLCVtMHFqD80=
Date: Tue, 05 May 2020 15:34:53 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5PQGOF66UAZMBWLXN4XXFQ3EVBNHHCIQTSZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3602/issue_event/3306261752@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3602@github.com>
References: <quicwg/base-drafts/pull/3602@github.com>
Subject: Re: [quicwg/base-drafts] editorial advice for h2<->h3 error propagation (#3602)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1ea0d3ca2b_23063fbbe32cd95c101554"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lYephsxklLf_E3GbC-qi8y828Gw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:34:58 -0000

----==_mimepart_5eb1ea0d3ca2b_23063fbbe32cd95c101554
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3602 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3602#event-3306261752
----==_mimepart_5eb1ea0d3ca2b_23063fbbe32cd95c101554
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="608334537" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3602" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3602/hovercard" href="https://github.com/quicwg/base-drafts/pull/3602">#3602</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3602#event-3306261752">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYV5ERDL36LYBTJF63RQCIA3ANCNFSM4MS3DGGQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYL7NGU3AE3KHFRYTDRQCIA3A5CNFSM4MS3DGG2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYUIYZ6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3602#event-3306261752",
"url": "https://github.com/quicwg/base-drafts/pull/3602#event-3306261752",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1ea0d3ca2b_23063fbbe32cd95c101554--


From nobody Tue May  5 15:35:41 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 EA8C73A0BFA for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:35:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 wWida0xtHMVC for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:35:38 -0700 (PDT)
Received: from out-13.smtp.github.com (out-13.smtp.github.com [192.30.254.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8B1DB3A0BF3 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:35:38 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 4234A261740 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:35:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718138; bh=ovYoDFuyUl/kr1MpXBzVFSz8qkeqwThDQsUmWrV0PaA=; h=Date:From:To:Subject:From; b=xykDpCgUwyN8QLht6B+qmsnPnRmRvZAU2LkrvgL7pyuoXdklabDnvXf1u4sPds/NP +QuSk6gSHleYphGhFYqRt9BK21PnvdtyxBLVqWc0mtE/tsANzlBZCVZRaFqiT/oXsV V5n4u3pC8+6U7sWcgPSl56FtX/lWpYl5Tso9Vcv0=
Date: Tue, 05 May 2020 15:35:37 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/52158b-6df82e@github.com>
Subject: [quicwg/base-drafts] 6df82e: Script updating gh-pages from c6a32d20. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/A7sS9nlh38fH8BsU9CWNcnUaUDM>
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: Tue, 05 May 2020 22:35:40 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6df82ebe4158e354862c5e6f0fc7552dc3a7ec37
      https://github.com/quicwg/base-drafts/commit/6df82ebe4158e354862c5e6f0fc7552dc3a7ec37
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c6a32d20. [ci skip]



From nobody Tue May  5 15:36:31 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 70DE53A0BFC for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 D9Jq6Phuzg6i for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:24 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0A62D3A0BFA for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:24 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 58098E06E2 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718183; bh=e6pbY9YXj94R34hu/Sf/ENFDIGSYreWFlx5NKLCVdOo=; h=Date:From:To:Subject:From; b=aOLcaFk9LJ65OfDiMWWzjuLLOXO64lmNk4rdYvMZya3OlLnaNBXmcA66+rTXYQLGS hfDI0BE1VpiSY0GpsPQ/OOb8zEWB4Q6rUQMWQpXsmgAqFUEh/n0Yb9JLCPehI8JHpL /27y7JXydSBvt0DVo+2tYgiKFxL9O7z7Q8MAReg0=
Date: Tue, 05 May 2020 15:36:23 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-backtick/000000-beb5e7@github.com>
Subject: [quicwg/base-drafts] beb5e7: [qpack] Remove backticks
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2aXh-XrcLoSVQqPBGscealHl0I4>
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: Tue, 05 May 2020 22:36:29 -0000

  Branch: refs/heads/qpack-backtick
  Home:   https://github.com/quicwg/base-drafts
  Commit: beb5e70c27f5d1e9e8ee43f9432487e54d5701dd
      https://github.com/quicwg/base-drafts/commit/beb5e70c27f5d1e9e8ee43f9432487e54d5701dd
  Author: Alan Frindell <afrind@fb.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  [qpack] Remove backticks

The new principle is to only use backticks when referring to variables in pseudocode.  There were two such instances that remain.

Fixes #3626



From nobody Tue May  5 15:36:38 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 184753A0C00 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 MIKmtyx7bNyu for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:36 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CFE5F3A0BFA for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:36 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 1F7D12C15A9 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718196; bh=lhQSIcymMU5LX3C5drp5Hnw5cTtVEUkVNphPMMw1/sw=; h=Date:From:To:Subject:From; b=x7XhN8bMK3HzVVTsS3Th9n/lf4xvaueO/19Z28b6j/cQU66NhrNsB9dSqyL9/W7Tg 6W0nZjRjjnXaM7O1R0yMUnCo3zydk6/EI0Mv8OoXNAbIFAsZgQwAtqXJ4XMg5k+ZEY FtI1CifmeyXSA0snbZq7Q/DjJueFcpB2eAcc/Mss=
Date: Tue, 05 May 2020 15:36:36 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/c6a32d-a09979@github.com>
Subject: [quicwg/base-drafts] cb3e9a: Clarify anti-deadlock Handshake PTO
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bGOpXt2dyA7mtl0L8nK5InZONtg>
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: Tue, 05 May 2020 22:36:38 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: cb3e9a4961fffdba7493a77b0db2d73f63f072ca
      https://github.com/quicwg/base-drafts/commit/cb3e9a4961fffdba7493a77b0db2d73f63f072ca
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Clarify anti-deadlock Handshake PTO

This is what the pseudocode says, but I couldn't find anywhere in the text that clarified that if there were no ack-eliciting packets to arm PTO from, use Now().


  Commit: 05c12786fd19607933556d87eb28bfe1111b6c27
      https://github.com/quicwg/base-drafts/commit/05c12786fd19607933556d87eb28bfe1111b6c27
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: eac517cfa6e3e58dd1caf817ee2218513204b905
      https://github.com/quicwg/base-drafts/commit/eac517cfa6e3e58dd1caf817ee2218513204b905
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: a09979ec646c0bad69f079fb78ed5c8dd1084899
      https://github.com/quicwg/base-drafts/commit/a09979ec646c0bad69f079fb78ed5c8dd1084899
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3603 from quicwg/ianswett-deadlock-handshake-pto

Clarify anti-deadlock Handshake PTO


Compare: https://github.com/quicwg/base-drafts/compare/c6a32d20a9d9...a09979ec646c


From nobody Tue May  5 15:36:43 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 92F253A0BFA for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:38 -0700 (PDT)
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, TVD_SPACE_RATIO=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 eDWiW7wgtu_h for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:37 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A63253A0BFC for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:37 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 583BB261577 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718197; bh=Hc3L20/ix5IvDfdAgkB3XeljBLeUdgEvks6qGSDrse0=; h=Date:From:To:Subject:From; b=dq2QLTOk8BQ/PjPj2zQF9zXQ+ZNfUEhFEon+cCHpUG38ggCCfE0oFLzDaYRkXog+e hCiOCU2N0u/89XQdlLHIIvTKYkcFfXcGfyRjqHb7HfM+QbMyFwuKKyGyANuSivJYDS 69dfBD8BGOreV4ULeCkWF8HDN9TfNyLiNSA5yba4=
Date: Tue, 05 May 2020 15:36:37 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-deadlock-handshake-pto/eac517-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dK_Q3qR0S4vThHbUFHStOO4biI4>
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: Tue, 05 May 2020 22:36:39 -0000

  Branch: refs/heads/ianswett-deadlock-handshake-pto
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May  5 15:36:48 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 677663A0C07 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.693
X-Spam-Level: 
X-Spam-Status: No, score=-1.693 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 qP2PUDwlizBX for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:42 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C1ADF3A0BFA for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:41 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 1F9B91C0801 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718201; bh=XK7tP2Rh/rYRBXKZ2d7lGBxruEqJmdNclf+yS6x6yEA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ejA4hBtwrdVWkmFwHuklxVYtP29JipOGxVkGRk6DJM+Qgxq90AegAZvp03g40b7sD fLeKFq4JLIOrAxA38yPcpmmQw7WCCgFRGmWqVNMzQZ6cQSmTUM1HOiYhFbWJg8+WCa 0OvIEXXOaeo9IdPmV/JrRetoQ1+HML6kYqN5oRgc=
Date: Tue, 05 May 2020 15:36:41 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK32I6KBDQDEK2ZZB3N4XXFXTEVBNHHCJCFMZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3627@github.com>
Subject: [quicwg/base-drafts] [qpack] Remove backticks (#3627)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1ea79f2ce_46593fbc7dccd96c209447"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6Yr8CwK2m_6ZmiEJ-vY7fVtdcx0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:36:44 -0000

----==_mimepart_5eb1ea79f2ce_46593fbc7dccd96c209447
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The new principle is to only use backticks when referring to variables in pseudocode.  There were two such instances that remain.

Fixes #3626
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3627

-- Commit Summary --

  * [qpack] Remove backticks

-- File Changes --

    M draft-ietf-quic-qpack.md (6)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3627.patch
https://github.com/quicwg/base-drafts/pull/3627.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3627

----==_mimepart_5eb1ea79f2ce_46593fbc7dccd96c209447
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The new principle is to only use backticks when referring to variables in pseudocode.  There were two such instances that remain.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3626.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="612927507" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3626" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3626/hovercard" href="https://github.com/quicwg/base-drafts/issues/3626">#3626</a></p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3627'>https://github.com/quicwg/base-drafts/pull/3627</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>[qpack] Remove backticks</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3627/files#diff-c3ed24528f71fade042cdefbeadbd7b9">draft-ietf-quic-qpack.md</a>
    (6)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3627.patch'>https://github.com/quicwg/base-drafts/pull/3627.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3627.diff'>https://github.com/quicwg/base-drafts/pull/3627.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3627">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYUWNUKPLL2EKTRPVLRQCIHTANCNFSM4MZ6X3NQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK62G3EZVWA6SSP4ZLTRQCIHTA5CNFSM4MZ6X3N2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JEIVTEQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3627",
"url": "https://github.com/quicwg/base-drafts/pull/3627",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb1ea79f2ce_46593fbc7dccd96c209447--


From nobody Tue May  5 15:36:52 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 8871E3A0C19 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:44 -0700 (PDT)
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 w7Em2KHKwEYf for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:43 -0700 (PDT)
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 59C723A0C06 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:43 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 0F0FE26173E for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718203; bh=0IXzpP6ys+59isWgqkWdP2hUy3hP42WNjvlG0/M52y0=; h=Date:From:To:Subject:From; b=NXtIWJ5I4rzJrIszeakZWnEJziAUDpLGBIuu6ry0HkS3jXdJIO9xaCNtOuF2+7YOC 4Bz1BLa3bHfuUv1vJTgdQBvwxCplRYj8nINfRVfrVVOW4qEkqgUuG8bzOJeSQel+lY EZD0lkg8C+vdPy5nCxFkCYASIaIsv8y1Neu2O+/o=
Date: Tue, 05 May 2020 15:36:42 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/a09979-58a2fb@github.com>
Subject: [quicwg/base-drafts] b41c84: Define the use of generic TLS alerts
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iFpIfnQ-fAhdeJft4A9azBbrKog>
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: Tue, 05 May 2020 22:36:45 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: b41c848f281bda976192136c6281185808c5e021
      https://github.com/quicwg/base-drafts/commit/b41c848f281bda976192136c6281185808c5e021
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Define the use of generic TLS alerts

This was already permitted by the transport document, but it was not
adequately explained.  The example that tripped us up was ALPN, which
has received a bit of attention here.

Closes #3580.


  Commit: 475242d0c9ca9e32113c90859748c7adf577fdfc
      https://github.com/quicwg/base-drafts/commit/475242d0c9ca9e32113c90859748c7adf577fdfc
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Tweaks from review


  Commit: 58a2fbbc75252ee3c8503ead31e5146e5f74349b
      https://github.com/quicwg/base-drafts/commit/58a2fbbc75252ee3c8503ead31e5146e5f74349b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #3601 from quicwg/alpn-generic

Define the use of generic TLS alerts


Compare: https://github.com/quicwg/base-drafts/compare/a09979ec646c...58a2fbbc7525


From nobody Tue May  5 15:36: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 0B80C3A0BFA for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 mN2wuC2ZVX1d for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:44 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 523BD3A0C12 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:44 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id A4D2F8C0448 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718203; bh=JyD5BCBTrI+2+G2urrJUe4s+dU+wfh0uDcL9432/bok=; h=Date:From:To:Subject:From; b=ww7A9+iFgKlXCWKxMgoUuYRZWwm/rwBWH7+/XLG5vY3C3Gx7GvLRX30+e9njZtB2I WtBoRLwTj3dAplIhNUqKlXPS404tth7hd8MGfdAqA92gSKhiEusv+MDimffCl8lZYa 3eAuknOeXoJvSNEaY7uzimpMdyWfrGEUyi5MleWk=
Date: Tue, 05 May 2020 15:36:43 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/alpn-generic/475242-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TYByLe7x5lNB7JW1HrSc2CxFyAQ>
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: Tue, 05 May 2020 22:36:46 -0000

  Branch: refs/heads/alpn-generic
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May  5 15:36:59 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 B06BD3A0C00 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 jUhRffnt_VsP for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:47 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5000F3A0BFA for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:47 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 9699E2C1614 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718206; bh=/eirSUFLvhtxvs032WbqDN3UC/82v5BdcR3rPLoggf0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eM6wy7+GdZVYtsKfyaXJkKINoaKGpAmgmBnz5R+1dNOxkTfRx8hifAOVA6Jt/SXdM JS7J/+48G/enD3LPRFAaPvbV52fwDX/dBW6runIWmEeLyb4mh+n1/G4r49MH9BNjam AoASPpfyttEWPujccUiXtSa+L0gK/Z9dS5utgl/w=
Date: Tue, 05 May 2020 15:36:46 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4LN6LEFNB3MLL6KP54XXFX5EVBNHHCIRI3MY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3603/issue_event/3306266068@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3603@github.com>
References: <quicwg/base-drafts/pull/3603@github.com>
Subject: Re: [quicwg/base-drafts] Clarify anti-deadlock Handshake PTO (#3603)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1ea7e85ee9_1f553f9a468cd9601570a4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/arPlOAZC31-spN4ZdEaAvWy0Ofo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:36:49 -0000

----==_mimepart_5eb1ea7e85ee9_1f553f9a468cd9601570a4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3603 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3603#event-3306266068
----==_mimepart_5eb1ea7e85ee9_1f553f9a468cd9601570a4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="608508774" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3603" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3603/hovercard" href="https://github.com/quicwg/base-drafts/pull/3603">#3603</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3603#event-3306266068">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYCHBHBT4JEJLCKCXTRQCIH5ANCNFSM4MTBO45A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4GAV34CXMKIB67NJ3RQCIH5A5CNFSM4MTBO45KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYUIZ3VA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3603#event-3306266068",
"url": "https://github.com/quicwg/base-drafts/pull/3603#event-3306266068",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1ea7e85ee9_1f553f9a468cd9601570a4--


From nobody Tue May  5 15:37:02 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 903B43A0C05 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ccuFYl6kEsNd for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:53 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 720073A0BFA for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:53 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id B074E282834 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718212; bh=JONAv05kJ91BBHSrlqMTp8swUxdjjBScn3J4jiJYBS8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TtwUDLZ9qZMZCqlf8S4vUOi5e2D9Jh5HZNrSh+zMsLT3XtTPkPEnNYavnu2V2lHKs y0n0Sdsk3AA5UUpBF9An10eBw1P3nWUAZVca/R2c0xxIsAm0QoEn2Ujc2oMWxJE/QU 6A+IuH9f23KLBJ7brQjCexoqpA7nxHvEdQXV+2wQ=
Date: Tue, 05 May 2020 15:36:52 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5AZZOOH6V6G6NX3KF4XXFYJEVBNHHCIPNKJY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3601/issue_event/3306266286@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3601@github.com>
References: <quicwg/base-drafts/pull/3601@github.com>
Subject: Re: [quicwg/base-drafts] Define the use of generic TLS alerts (#3601)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1ea84a1907_36493fa284acd968875af"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SUuDPE2aZI1zaeRlhwbEgI-6KKk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:36:55 -0000

----==_mimepart_5eb1ea84a1907_36493fa284acd968875af
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3601 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3601#event-3306266286
----==_mimepart_5eb1ea84a1907_36493fa284acd968875af
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="608021070" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3601" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3601/hovercard" href="https://github.com/quicwg/base-drafts/pull/3601">#3601</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3601#event-3306266286">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZKZYVAM5YMX5R6XPDRQCIIJANCNFSM4MSPU6MA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZZSAFWGDGJGYUYSKTRQCIIJA5CNFSM4MSPU6MKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYUIZ5LQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3601#event-3306266286",
"url": "https://github.com/quicwg/base-drafts/pull/3601#event-3306266286",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1ea84a1907_36493fa284acd968875af--


From nobody Tue May  5 15:37:05 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 8C3003A0C04 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 TIPMhu2Yy2c8 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:36:54 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3FEFC3A0C00 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:54 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 89B7E1C0DAE for <quic-issues@ietf.org>; Tue,  5 May 2020 15:36:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718213; bh=SRgJ5FQc54slTOuVwLsaXwMsqaOB6ie4miVaq7rnSqc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rgqey1YKoEauHbrQx/4nPC5tPR0v8Gw+nbv37fS1V3Uuw53GW+1AUK0SnMoDmAanz F5IewB1nu4C3aCH59IXzA78pA6B9Z9DpAdM1AwaqA8nYPogSgzaEBvJNagCHen+KVL G4ocWE3ry2Rrhy7w8eN8cmMb7BlmRCEf+7TIxAy0=
Date: Tue, 05 May 2020 15:36:53 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZIMI2LUWSNKKNSNP54XXFYLEVBNHHCHP77D4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3580/issue_event/3306266292@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3580@github.com>
References: <quicwg/base-drafts/issues/3580@github.com>
Subject: Re: [quicwg/base-drafts] TLS alert no_application_protocol is not always possible (#3580)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1ea857a355_6ae33fbc862cd968894e9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ofY3AGatBsOubzvAbYUYCzEdWEE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:36:56 -0000

----==_mimepart_5eb1ea857a355_6ae33fbc862cd968894e9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3580 via #3601.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3580#event-3306266292
----==_mimepart_5eb1ea857a355_6ae33fbc862cd968894e9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="599785247" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3580" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3580/hovercard" href="https://github.com/quicwg/base-drafts/issues/3580">#3580</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="608021070" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3601" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3601/hovercard" href="https://github.com/quicwg/base-drafts/pull/3601">#3601</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3580#event-3306266292">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2JBP4CLXPH4O46SITRQCIILANCNFSM4MH7AOMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3N4DL5RJXKXWQ2FITRQCIILA5CNFSM4MH7AOM2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYUIZ5NA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3580#event-3306266292",
"url": "https://github.com/quicwg/base-drafts/issues/3580#event-3306266292",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1ea857a355_6ae33fbc862cd968894e9--


From nobody Tue May  5 15:37:24 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 60B253A0BFF for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:37:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 rcD223-OZ-GM for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:37:20 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8FA503A0BFA for <quic-issues@ietf.org>; Tue,  5 May 2020 15:37:20 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id DDDE61C0096 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:37:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718239; bh=BBrkcOPACjkIeDrasyetQcqUEC9MGF09LOiyfEd6aSc=; h=Date:From:To:Subject:From; b=R6LP3Iu/HvLW/n+m2UfTQcWGjw75Svg3EnU2WdSpc1vfPN6JzLSYYEanOxHX6NkbY p0ZDgAN0Qzyi9vRQTvwvLmSTEKhneCXKdNY8yESp7besdqe79KlyRcjNpPkM/paZCz BT7/953XOCrmtfegFZ6ZMwtCvSsuY8bAD9rOVnrA=
Date: Tue, 05 May 2020 15:37:19 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6df82e-6e6415@github.com>
Subject: [quicwg/base-drafts] 6e6415: Script updating gh-pages from beb5e70c. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Lm9I4v96KPgTyK1pzSbdVpGaSYo>
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: Tue, 05 May 2020 22:37:22 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6e64153834b297597309335571f526394fb6092d
      https://github.com/quicwg/base-drafts/commit/6e64153834b297597309335571f526394fb6092d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M index.html
    A qpack-backtick/draft-ietf-quic-http.html
    A qpack-backtick/draft-ietf-quic-http.txt
    A qpack-backtick/draft-ietf-quic-invariants.html
    A qpack-backtick/draft-ietf-quic-invariants.txt
    A qpack-backtick/draft-ietf-quic-qpack.html
    A qpack-backtick/draft-ietf-quic-qpack.txt
    A qpack-backtick/draft-ietf-quic-recovery.html
    A qpack-backtick/draft-ietf-quic-recovery.txt
    A qpack-backtick/draft-ietf-quic-tls.html
    A qpack-backtick/draft-ietf-quic-tls.txt
    A qpack-backtick/draft-ietf-quic-transport.html
    A qpack-backtick/draft-ietf-quic-transport.txt
    A qpack-backtick/index.html

  Log Message:
  -----------
  Script updating gh-pages from beb5e70c. [ci skip]



From nobody Tue May  5 15:37:32 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 21DF03A0BFC for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:37:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 3TDF9_MsNRtu for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:37:30 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0145D3A0BFA for <quic-issues@ietf.org>; Tue,  5 May 2020 15:37:29 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 4675D5205A3 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:37:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718249; bh=jeGdl8fSMo7jdVbFGEFeORX4YYBpw8vNuG+5dzT7IIY=; h=Date:From:To:Subject:From; b=sahAdBdmh4Vzp3buXG6oWo63WjfLOKUynbtId+IM07ju+cf8dMcerPr0HjUSKwC33 3Feyrf8nBLmHi2uRf8PuG6Cv6m34mNgFN+87650+8AKQITiy32ftyA95vuxv0EH0Gn 5nDQhTn8mSG2tep6sci+DxYvx1FKQzoHUEVmZnnY=
Date: Tue, 05 May 2020 15:37:29 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6e6415-f3e53b@github.com>
Subject: [quicwg/base-drafts] f3e53b: Script updating gh-pages from 58a2fbbc. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RIkX4lKvY-quzkXdVcMearTymUE>
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: Tue, 05 May 2020 22:37:31 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f3e53bf400b0ab59a2d9c5b989d5c621889a5d07
      https://github.com/quicwg/base-drafts/commit/f3e53bf400b0ab59a2d9c5b989d5c621889a5d07
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 58a2fbbc. [ci skip]



From nobody Tue May  5 15:38:03 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 9F7E43A0C00 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:38:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZHyTfAmNvOh5 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:38:00 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 89E353A0BFF for <quic-issues@ietf.org>; Tue,  5 May 2020 15:38:00 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id AE5726A0DC2 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:37:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718279; bh=gp5W8JYbunjFEbNETlMPIMZjM37wwrhspXmeLBdHbt0=; h=Date:From:To:Subject:From; b=Mx4HsEYeO5MasmwWOkPZB7KCS+CbscP/iOgDNBaidLJD6SSyzHxhN9n9+tD/dC7Jy BMMIv7sQP6mN8KdF8Wzvp4UniXXC4SiojEQq0e2JYa77zE4sCkv0VraI/ymZnu6h7D Ni+Bx0WpkqllJFJi/ZA5KG6NE5Kt/KgTzdII9jd4=
Date: Tue, 05 May 2020 15:37:59 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f3e53b-18f527@github.com>
Subject: [quicwg/base-drafts] 18f527: Script updating gh-pages from a09979ec. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Nl-7V0VM1H4wHFy9IwhOC-UL3f4>
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: Tue, 05 May 2020 22:38:02 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 18f52726b19338ce5afcfc30581d8d6d25c32f2a
      https://github.com/quicwg/base-drafts/commit/18f52726b19338ce5afcfc30581d8d6d25c32f2a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from a09979ec. [ci skip]



From nobody Tue May  5 15:42:39 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 CBA0C3A0C07 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:42:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 XJ3EcoHe0N38 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:42:35 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9416A3A0C06 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:42:35 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id E493CE0BC6 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:42:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718554; bh=6MV+XW2QWOfVHfn2/2Aj22IznqXnAyB6NIh8Q7sjiPY=; h=Date:From:To:Subject:From; b=AI/tUDYPb1jjVQgGAIhz/cLzgjpQnM70eEyryfUwgAAMwNT7FRPp8qfRkC/pIloKj EN9KGpHaX+arlMzqLC2nQz7uXUZouMIV3w+C7hEaV5IzuidQosC6nzdkyyPR25Gfa+ K8qaWReFsel/Ypnt9sEEysERazcYIeNtyv4okkwk=
Date: Tue, 05 May 2020 15:42:34 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-security/4c3256-090e72@github.com>
Subject: [quicwg/base-drafts] 090e72: Apply suggestions from code review=0D
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xjc5i_vo5ahB4sBGGrbhkDUY31M>
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: Tue, 05 May 2020 22:42:37 -0000

  Branch: refs/heads/qpack-security
  Home:   https://github.com/quicwg/base-drafts
  Commit: 090e72253f2285fb616c497e3e054af67769b1cf
      https://github.com/quicwg/base-drafts/commit/090e72253f2285fb616c497e3e054af67769b1cf
  Author: afrind <afrind@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  Apply suggestions from code review

Feedback from Mike

Co-authored-by: Mike Bishop <mbishop@evequefou.be>



From nobody Tue May  5 15:42:47 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 B16403A0C08 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:42:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 VBLMEl_luMnr for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:42:45 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5DF8D3A0C07 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:42:45 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id B8BA1960596 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:42:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718564; bh=+/eGONa1Jw80pro8OMQdk1VYdUxBeuA/UisPc0Sv4lM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XSqYXAzBpkyMtzwFwKHAsGBCWxV4v3ojQ1+Gjnw1/MkvVpoQJbK9jXRkWCnueMA/6 Rl49uvfIepzmsGnHRDgPMgEGIDGKgPmo56CZrjMmDGV7m1h+bjvx7fruTHTODT0dEy uc/TR+oBiKbRqNaxKuJGv6GWh+rxAjgh8QLHtSyk=
Date: Tue, 05 May 2020 15:42:44 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3575/push/5026315697@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3575@github.com>
References: <quicwg/base-drafts/pull/3575@github.com>
Subject: Re: [quicwg/base-drafts] QPACK security considerations (#3575)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1ebe4a995b_21ba3ffa410cd96c15756d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/olWaV8-bOrSy8YL1hmc1gDIXLxM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:42:47 -0000

----==_mimepart_5eb1ebe4a995b_21ba3ffa410cd96c15756d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@afrind pushed 1 commit.

090e72253f2285fb616c497e3e054af67769b1cf  Apply suggestions from code review


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3575/files/4c3256a0f07e838ae04aa16d2105f4f82869d0da..090e72253f2285fb616c497e3e054af67769b1cf

----==_mimepart_5eb1ebe4a995b_21ba3ffa410cd96c15756d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/afrind" class="user-mention">@afrind</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/090e72253f2285fb616c497e3e054af67769b1cf">090e722</a>  Apply suggestions from code review
</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3575/files/4c3256a0f07e838ae04aa16d2105f4f82869d0da..090e72253f2285fb616c497e3e054af67769b1cf">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3ENBA6K7SIIKB7LGLRQCI6JANCNFSM4MHIMGKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3R33ESFLFIICZWTJLRQCI6JA5CNFSM4MHIMGK2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDEOBWGIYDKNKQOVZWQIZVGAZDMMZRGU3DSNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3575/files/4c3256a0f07e838ae04aa16d2105f4f82869d0da..090e72253f2285fb616c497e3e054af67769b1cf",
"url": "https://github.com/quicwg/base-drafts/pull/3575/files/4c3256a0f07e838ae04aa16d2105f4f82869d0da..090e72253f2285fb616c497e3e054af67769b1cf",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb1ebe4a995b_21ba3ffa410cd96c15756d--


From nobody Tue May  5 15:43:24 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 C5A213A0C07 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:43:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 U4gBUhgNxmjt for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:43:20 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A79BF3A0C06 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:43:20 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id C43F266110A for <quic-issues@ietf.org>; Tue,  5 May 2020 15:43:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718599; bh=RnmhjaBVstPogg9KNoK//pupLEKEEDCHY6zjy46VkcY=; h=Date:From:To:Subject:From; b=X5u4aR1/BsbxiuNS0FJ4htG3eLVcjW/6xIiEjHedFtBTQSp6pPuBH/SOlIERJjFFN /hA+heSZ9e9lXP6i91js3lIsDCUSOGCwLvZVARGsSRTP9S0s4FQrKyKtgCXQIdi4Of 2rajhpxxqLATOgLKgts+pR7EXBu5suy1lJtoy3yE=
Date: Tue, 05 May 2020 15:43:19 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/18f527-24d353@github.com>
Subject: [quicwg/base-drafts] 24d353: Script updating gh-pages from 090e7225. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eCmFPiwWAcmQc50T1tpaekXDuRc>
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: Tue, 05 May 2020 22:43:22 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 24d35327867f49c99643591c060e55454979f924
      https://github.com/quicwg/base-drafts/commit/24d35327867f49c99643591c060e55454979f924
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M index.html
    M qpack-security/draft-ietf-quic-http.html
    M qpack-security/draft-ietf-quic-http.txt
    M qpack-security/draft-ietf-quic-invariants.html
    M qpack-security/draft-ietf-quic-invariants.txt
    M qpack-security/draft-ietf-quic-qpack.html
    M qpack-security/draft-ietf-quic-qpack.txt
    M qpack-security/draft-ietf-quic-recovery.html
    M qpack-security/draft-ietf-quic-recovery.txt
    M qpack-security/draft-ietf-quic-tls.html
    M qpack-security/draft-ietf-quic-tls.txt
    M qpack-security/draft-ietf-quic-transport.html
    M qpack-security/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 090e7225. [ci skip]



From nobody Tue May  5 15:45:10 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 50A5C3A0C08 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:45:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 tYonoOPG6oPO for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:45:07 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CD7E63A0C07 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:45:06 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 1A63F520552 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:45:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718706; bh=P/hkzotMrxgA7Jllnx1KzPjexIcLrCMtK0hQ30O95IE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hrtCvJbbrip6DNSmYHgHkeJnxmyp0eNkXWUSdmTix7bOoXnYvBVuwUtzP28BFisQ0 2IjRraNgPk2bUJcMYTllwiebZ7GnHnylMBdTffjNREscNVGSIq09ov6bKaB9kp+BOG asvzyh2SKyneUw20Dy2Vj1j+sdL86pFMdmQRpWwo=
Date: Tue, 05 May 2020 15:45:05 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYJA674Y7UJDTH2C4V4XXGXDEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/624345346@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1ec71ef668_de73fab756cd968106038"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/llupcs_6nEy96C34PmgYmSf9NGE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:45:08 -0000

----==_mimepart_5eb1ec71ef668_de73fab756cd968106038
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I don't oppose the v2 marking.  Having SETTINGS available before any application data is sent would enable a broader design such as #1343 if we have interest, with "no static table" being one possible choice; a parallel option for the Huffman table would make sense.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-624345346
----==_mimepart_5eb1ec71ef668_de73fab756cd968106038
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I don't oppose the v2 marking.  Having SETTINGS available before any application data is sent would enable a broader design such as <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="321703587" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/1343" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/1343/hovercard" href="https://github.com/quicwg/base-drafts/issues/1343">#1343</a> if we have interest, with "no static table" being one possible choice; a parallel option for the Huffman table would make sense.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-624345346">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY6FFEZUWZX427BUEDRQCJHDANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3W6KX3VZOPBLLIXO3RQCJHDA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEU3MCAQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-624345346",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-624345346",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1ec71ef668_de73fab756cd968106038--


From nobody Tue May  5 15:46:20 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 C51723A0C0C for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:46:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 kDqPVvkXeGFe for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:46:16 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 523B43A0C0A for <quic-issues@ietf.org>; Tue,  5 May 2020 15:46:16 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 36315A045A for <quic-issues@ietf.org>; Tue,  5 May 2020 15:46:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718775; bh=FHqDgd1TwnanWQdejpkk1CDwQ4iQeokaOIqyfAlAee0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LfQT458gpswPGY1EKSc1CMDGtr6EcbsE6EC4yQz6GxX7n6X+I+O1nAZt2QYu+LEEc /caxhT866EPGK+0CE9MKhtvEs1xi/p5Nvzr3cx/1deC4YXLOwaUqyn1jEG9kydhFdo uVCj4vfZagi7Q4XkfFtYxIsnvpmQHXNcwcayskkM=
Date: Tue, 05 May 2020 15:46:15 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK54RN5B4H7JY2N37554XXG3PEVBNHHCH3TLYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3586/review/406200734@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3586@github.com>
References: <quicwg/base-drafts/pull/3586@github.com>
Subject: Re: [quicwg/base-drafts] Why min CWND of 2 instead of 1 (#3586)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1ecb7269ce_586b3fdbe92cd968154750"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ebH9OtmngtUz3IG0CdVGpdgddDo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:46:19 -0000

----==_mimepart_5eb1ecb7269ce_586b3fdbe92cd968154750
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> @@ -245,6 +245,15 @@ QUIC specifies a time-based definition to ensure one or more packets are sent
 prior to a dramatic decrease in congestion window; see
 {{persistent-congestion}}.
 
+### The Minimum Congestion Window is 2 Packets

```suggestion
### The Minimum Congestion Window is Two Packets
```

> +QUIC recommends that the minimum congestion window be 2 packets instead
+of the 1 packet minimum in TCP. A 2 packet minimum congestion window avoids
+waiting for a probe timeout (see {{pto}}) every time a single packet is lost.
+A minimum of 2 packets also avoids waiting for a delayed acknowledgement, which
+can substantially decrease throughput, particularly if the max_ack_delay is
+larger than the round trip time.

```suggestion
TCP uses a minimum congestion window of one packet, but this can be fragile
in practice. Loss of a single packet sent with that window limits the sender to
waiting for a PTO ({{pto}}) to recover from that loss, which can be a
substantial period of time depending on the amount of backoff. Sending a
single data packet also increases the chances of incurring additional latency
when a receiver delays its acknowledgement. QUIC therefore recommends that
the minimum congestion window be two packets. While this increases network
load, it is considered safe, since the sender will still reduce its sending rate
exponentially under persistent congestion ({{pto}}).
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3586#pullrequestreview-406200734
----==_mimepart_5eb1ecb7269ce_586b3fdbe92cd968154750
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3586#discussi=
on_r420445601">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -245,6 +245,15 @@ QUIC specifies a time=
-based definition to ensure one or more packets are sent=0D
 prior to a dramatic decrease in congestion window; see=0D
 {{persistent-congestion}}.=0D
 =0D
+### The Minimum Congestion Window is 2 Packets=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-### The Minimum Congestion Window is 2 Packet=
s=0D
+### The Minimum Congestion Window is Two Packets=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3586#discussi=
on_r420450546">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +QUIC recommends that the minimum congesti=
on window be 2 packets instead=0D
+of the 1 packet minimum in TCP. A 2 packet minimum congestion window avo=
ids=0D
+waiting for a probe timeout (see {{pto}}) every time a single packet is =
lost.=0D
+A minimum of 2 packets also avoids waiting for a delayed acknowledgement=
, which=0D
+can substantially decrease throughput, particularly if the max_ack_delay=
 is=0D
+larger than the round trip time.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-QUIC recommends that the minimum congestion w=
indow be 2 packets instead=0D
-of the 1 packet minimum in TCP. A 2 packet minimum congestion window avo=
ids=0D
-waiting for a probe timeout (see {{pto}}) every time a single packet is =
lost.=0D
-A minimum of 2 packets also avoids waiting for a delayed acknowledgement=
, which=0D
-can substantially decrease throughput, particularly if the max_ack_delay=
 is=0D
-larger than the round trip time.=0D
+TCP uses a minimum congestion window of one packet, but this can be frag=
ile=0D
+in practice. Loss of a single packet sent with that window limits the se=
nder to=0D
+waiting for a PTO ({{pto}}) to recover from that loss, which can be a=0D=

+substantial period of time depending on the amount of backoff. Sending a=
=0D
+single data packet also increases the chances of incurring additional la=
tency=0D
+when a receiver delays its acknowledgement. QUIC therefore recommends th=
at=0D
+the minimum congestion window be two packets. While this increases netwo=
rk=0D
+load, it is considered safe, since the sender will still reduce its send=
ing rate=0D
+exponentially under persistent congestion ({{pto}}).=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3586#pullrequestreview-406200734">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K4ES6BJRAB35SKK7H3RQCJLPANCNFSM4ML6ZUXA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKYNEPLBB55BA7KWT5DRQCJLPA5CNFSM4=
ML6ZUXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODA3CDHQ.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3586#pullrequestrev=
iew-406200734",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3586#pullrequestreview=
-406200734",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb1ecb7269ce_586b3fdbe92cd968154750--


From nobody Tue May  5 15:46:37 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 33A433A0C0A for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:46:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 97Jlnj-57Lcn for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:46:17 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4F6D03A0C08 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:46:17 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 738141C02FD for <quic-issues@ietf.org>; Tue,  5 May 2020 15:46:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718776; bh=mzgNYNXbZjtXbHJeWD5lvrODuRvUrNsj1BCLGzpxDis=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=F4RXIJzH/Nc2AcKKRHdThLkuMEyxaguz8Qr7/kLWJ8OMlstvwNRE5xW5HfE2yzjGs iUBiMTCfToO39GAbSS+p4j5hzTaE50PwkastUHw/JEYiatrR0NVJjQ2dzD4apsb5rQ fRFDeK4lmVD2cLSuYeKefNCDtvREz8cq0XSCJTWo=
Date: Tue, 05 May 2020 15:46:16 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2JG6Q2OTSYGJZCV2V4XXG3REVBNHHCJCFMZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3627/review/406206796@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3627@github.com>
References: <quicwg/base-drafts/pull/3627@github.com>
Subject: Re: [quicwg/base-drafts] [qpack] Remove backticks (#3627)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1ecb863c1f_42ae3feb956cd96c1981d7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Cb8REDwS6z0zxsxgoDcEhSFBdiY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:46:27 -0000

----==_mimepart_5eb1ecb863c1f_42ae3feb956cd96c1981d7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3627#pullrequestreview-406206796
----==_mimepart_5eb1ecb863c1f_42ae3feb956cd96c1981d7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@LPardue</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3627#pullrequestreview-406206796">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7ASDQGCBATYDIVGP3RQCJLRANCNFSM4MZ6X3NQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7CVTSTINMX3KKW5SDRQCJLRA5CNFSM4MZ6X3N2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODA3DSTA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3627#pullrequestreview-406206796",
"url": "https://github.com/quicwg/base-drafts/pull/3627#pullrequestreview-406206796",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1ecb863c1f_42ae3feb956cd96c1981d7--


From nobody Tue May  5 15:46:54 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 D638F3A0C0A for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:46:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.097
X-Spam-Level: 
X-Spam-Status: No, score=-2.097 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 ZDUYDTtCDHaj for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:46:52 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BD2FA3A0C08 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:46:52 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id CBBDD8C0936 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:46:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718811; bh=KzXhTgtrG6mKnZCpAY8IgNdPMT5JIYwfuGpVz0lCGnM=; h=Date:From:To:Subject:From; b=Y8D2T7HkYQyYAu/coRN2aV2qBq67fXscLonPEpIh0IHJ8kMdfpvayMzNNy+8r/dSu UjRZEtoORBJFcyYaXt+1mepmCzBpUsjO55QhekldaGARRPv4+wGF60FpxSSo1o6cEz 1Zd0NBixR8IIeF+pDGm+AC8I3maEWb8xodzD5nls=
Date: Tue, 05 May 2020 15:46:51 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-min-cwnd/b32ab8-b27045@github.com>
Subject: [quicwg/base-drafts] b27045: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Kxphl4LWwkM3pOCwHoXQ3V9_IUs>
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: Tue, 05 May 2020 22:46:54 -0000

  Branch: refs/heads/ianswett-min-cwnd
  Home:   https://github.com/quicwg/base-drafts
  Commit: b270451746cc6ae9655ceb30281de6bf6bbdb628
      https://github.com/quicwg/base-drafts/commit/b270451746cc6ae9655ceb30281de6bf6bbdb628
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue May  5 15:47:07 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 30F3A3A0C0A for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:47:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.551
X-Spam-Level: 
X-Spam-Status: No, score=-1.551 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 u8ASIb-WTuaA for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:47:03 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 03B213A0C08 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:47:02 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 4DA788C0FBF for <quic-issues@ietf.org>; Tue,  5 May 2020 15:47:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718822; bh=ip5gWV9a+8LlfeVU334FtJPVeqeZJ5bMXNlntTFUi4E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=U45kq0LfVOeqCTFkazhg/7bl5KH13jljrcaoubsZ1G2oyB3ZhqE4xI2Yby/XZlbSU RO0A7vmqcs4bCGMt84dgRtoFsgJLOwcQcyOx34jpIMp3IBZBZdVpev9oeLqOxiIXoV 4BdY7RHoLrtKF27Oc8O9zkD5MXX7xKKf02UMxwVM=
Date: Tue, 05 May 2020 15:47:02 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3586/push/5026329908@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3586@github.com>
References: <quicwg/base-drafts/pull/3586@github.com>
Subject: Re: [quicwg/base-drafts] Why min CWND of 2 instead of 1 (#3586)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1ece63d421_5e293f9ce42cd95c1303ac"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CMXnMTtdxawooBfBJIqvN_PjaaY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:47:05 -0000

----==_mimepart_5eb1ece63d421_5e293f9ce42cd95c1303ac
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

b270451746cc6ae9655ceb30281de6bf6bbdb628  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3586/files/b32ab8c350ac15b92b520f7a3b15f7415b22083b..b270451746cc6ae9655ceb30281de6bf6bbdb628

----==_mimepart_5eb1ece63d421_5e293f9ce42cd95c1303ac
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/b270451746cc6ae9655ceb30281de6bf6bbdb628">b270451</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3586/files/b32ab8c350ac15b92b520f7a3b15f7415b22083b..b270451746cc6ae9655ceb30281de6bf6bbdb628">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3QYKISWKQF5X2IJHLRQCJONANCNFSM4ML6ZUXA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZDK7AEWJJFVASFPRLRQCJONA5CNFSM4ML6ZUXKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDKNZTHE3TOOCQOVZWQIZVGAZDMMZSHE4TAOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3586/files/b32ab8c350ac15b92b520f7a3b15f7415b22083b..b270451746cc6ae9655ceb30281de6bf6bbdb628",
"url": "https://github.com/quicwg/base-drafts/pull/3586/files/b32ab8c350ac15b92b520f7a3b15f7415b22083b..b270451746cc6ae9655ceb30281de6bf6bbdb628",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb1ece63d421_5e293f9ce42cd95c1303ac--


From nobody Tue May  5 15:47:40 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 AC3833A0C0A for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:47:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 P91qpoLSdpst for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:47:37 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7C7323A0C08 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:47:37 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id D46239604FE for <quic-issues@ietf.org>; Tue,  5 May 2020 15:47:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588718856; bh=o65p52zoKWnossbFfjik0nXb2TDCwRCGld1kkuL9dXQ=; h=Date:From:To:Subject:From; b=F7KAitkzAwjDZqh6X3w4zVdHleZs57BH5Cte6lEYh2A/5iAk1hOimVfakDpAPrH10 ioXwXMj3OGQltwv6bDsvZr94yvTJCK53hxnxg2gzdP80+uo0dM6dD3Y7pTVlZiQynZ NzuqPZ+ZMMqnxKoPXlHaJkrl5IyVpT9A6d2H2RZU=
Date: Tue, 05 May 2020 15:47:36 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/24d353-4c1c73@github.com>
Subject: [quicwg/base-drafts] 4c1c73: Script updating gh-pages from b2704517. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KxmmHkupeK9OG-RQBnX-NmFO8is>
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: Tue, 05 May 2020 22:47:39 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4c1c73ab72ffb40f7bc6ebbb891ad9d0cf9bf600
      https://github.com/quicwg/base-drafts/commit/4c1c73ab72ffb40f7bc6ebbb891ad9d0cf9bf600
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b2704517. [ci skip]



From nobody Tue May  5 15:50:52 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 669893A0C10 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:50:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 SHR4sYoQU-iF for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:50:49 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0D6253A0C0E for <quic-issues@ietf.org>; Tue,  5 May 2020 15:50:48 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 3F699C6049D for <quic-issues@ietf.org>; Tue,  5 May 2020 15:50:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719048; bh=vbdPhyn0pDu9frooDhDs/Kb+xVvTPklaGJf8/F7cXVk=; h=Date:From:To:Subject:From; b=OraUNmONaOTgFSwy40Lip5B5dSgExfyedGdh9RoKF24NB/A1+Y7KyOBITeoxBtYEe SOaPXJZLL4qBo9tjWFt2J6uLKnql5HSZi4+tpGEcQ6E8BkTHOkHnmb/iVWiiPnSeBw WyDK//yH5KhuUr+62rBlPMH0/htED35hMHc0oRaI=
Date: Tue, 05 May 2020 15:50:48 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-security/090e72-753a49@github.com>
Subject: [quicwg/base-drafts] 753a49: Wordsmithing suggestion from Bence
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/64HYj43AtqnTXaeJ0vwQMD31fB8>
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: Tue, 05 May 2020 22:50:51 -0000

  Branch: refs/heads/qpack-security
  Home:   https://github.com/quicwg/base-drafts
  Commit: 753a49d8af28ca967dd5fe245032089f0199fff0
      https://github.com/quicwg/base-drafts/commit/753a49d8af28ca967dd5fe245032089f0199fff0
  Author: afrind <afrind@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  Wordsmithing suggestion from Bence



From nobody Tue May  5 15:51:07 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 628A73A0C10 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:51:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 o-5Dw9E1CDdp for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:50:58 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 813CA3A0C0E for <quic-issues@ietf.org>; Tue,  5 May 2020 15:50:58 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 048C7120B2B for <quic-issues@ietf.org>; Tue,  5 May 2020 15:50:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719058; bh=VhkXh1PmT9+X6r6TzMutOvuQaHMP9WJWYcaOLClSe5Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0HZ5pNFQ+LM5OsmNgkipdUyEJgVE/j9VZrWX+v7Rry26Dk7gceb82XUl0xJUdcSUF /e2ZX1SfcAT+h9tqGcJCYriK2bMA39jbBmreWvV9Nqd1xOM/2d5sEl8MabB2crdeGu Y6GNPousgkU+G/h80qdmzPfHYYT32E9qDoNWfFCw=
Date: Tue, 05 May 2020 15:50:57 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3575/push/5026343039@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3575@github.com>
References: <quicwg/base-drafts/pull/3575@github.com>
Subject: Re: [quicwg/base-drafts] QPACK security considerations (#3575)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1edd1b31f5_dea3fd5d14cd95c203747"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hvDwjcsJqruN4s8MdQFuayxAqzM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:51:01 -0000

----==_mimepart_5eb1edd1b31f5_dea3fd5d14cd95c203747
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@afrind pushed 1 commit.

753a49d8af28ca967dd5fe245032089f0199fff0  Wordsmithing suggestion from Bence


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3575/files/090e72253f2285fb616c497e3e054af67769b1cf..753a49d8af28ca967dd5fe245032089f0199fff0

----==_mimepart_5eb1edd1b31f5_dea3fd5d14cd95c203747
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/afrind" class="user-mention">@afrind</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/753a49d8af28ca967dd5fe245032089f0199fff0">753a49d</a>  Wordsmithing suggestion from Bence</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3575/files/090e72253f2285fb616c497e3e054af67769b1cf..753a49d8af28ca967dd5fe245032089f0199fff0">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2W5KEYZP2DHSJAX4DRQCJ5DANCNFSM4MHIMGKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3XNYLDUEB6JDMSFWDRQCJ5DA5CNFSM4MHIMGK2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDEOBWGIYDKNKQOVZWQIZVGAZDMMZUGMYDGOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3575/files/090e72253f2285fb616c497e3e054af67769b1cf..753a49d8af28ca967dd5fe245032089f0199fff0",
"url": "https://github.com/quicwg/base-drafts/pull/3575/files/090e72253f2285fb616c497e3e054af67769b1cf..753a49d8af28ca967dd5fe245032089f0199fff0",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb1edd1b31f5_dea3fd5d14cd95c203747--


From nobody Tue May  5 15:51:45 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 4B0513A0C15 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:51:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 BT0T1-DuBuJK for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:51:42 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 186B63A0C13 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:51:41 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 36E296E04D8 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:51:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719101; bh=rC7oOFrUaYFLjg95E3AsjYcPq3WX7mEb3zt8auJZRF4=; h=Date:From:To:Subject:From; b=MUmWN2aGHxUet9HjZYyfKcoJRKW2qMJzc4pL/VM2UX1JVM9HVjmvYHc5zNm6E/KcM c3kv6onhAwfnQYqHEIRjtNQZ9mJyY03PmlRLUqhW8556L1rJVN8FyWY2lC/UNY1XQw 1Y4Oq7DCeK0Ti0w/n6fhqivaM4OcyB8DneFkkrxc=
Date: Tue, 05 May 2020 15:51:41 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4c1c73-bf0c1b@github.com>
Subject: [quicwg/base-drafts] bf0c1b: Script updating gh-pages from 753a49d8. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/L4xKVJkLQKJpAPTc_Gt8c1UaVNc>
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: Tue, 05 May 2020 22:51:44 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: bf0c1bb328a57a61e696178e42546f48cd3868d1
      https://github.com/quicwg/base-drafts/commit/bf0c1bb328a57a61e696178e42546f48cd3868d1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M index.html
    M qpack-security/draft-ietf-quic-qpack.html
    M qpack-security/draft-ietf-quic-qpack.txt

  Log Message:
  -----------
  Script updating gh-pages from 753a49d8. [ci skip]



From nobody Tue May  5 15:54:56 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 958253A0C14 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:54:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.097
X-Spam-Level: 
X-Spam-Status: No, score=-2.097 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 CsuJYlIlQiOa for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:54:52 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C9BD63A0C13 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:54:52 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 014F58C10F5 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:54:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719292; bh=3rhSl+H/1PB9Z+zLe8/o37lAAJZUsd9ST9znNmVNz+0=; h=Date:From:To:Subject:From; b=Rjf0hqRxQO8iFZSd3ERgeKGu3jROKKoX6CFNp4H/yPA0V86Bq8cZy71ZTpa/7uLH/ WGpClXHc/gBVGZh64UNkTLqRacw/iC2vTnajxxqKZ9uo6K0e0lgnJ/zITY+YxpkmXV Q9Sp9bZA9vDyFe0Bzr6x2VIhJGbz425dFWHoVMSI=
Date: Tue, 05 May 2020 15:54:51 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-min-cwnd/b27045-9f7739@github.com>
Subject: [quicwg/base-drafts] 9f7739: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Yvyt1cO4MHtcWqAyLgA-uRV58yc>
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: Tue, 05 May 2020 22:54:55 -0000

  Branch: refs/heads/ianswett-min-cwnd
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9f773931b7c57a232ef9a9814fb664832eb7436e
      https://github.com/quicwg/base-drafts/commit/9f773931b7c57a232ef9a9814fb664832eb7436e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue May  5 15:55:15 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 4EE2A3A0C14 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:55:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 gN1WLXN42uHx for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:55:03 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C22993A0C13 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:55:03 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 1E1212C1C3A for <quic-issues@ietf.org>; Tue,  5 May 2020 15:55:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719303; bh=KtsZ5IcBaJZDPjGj9Eq5E9s7+A1gq1pCGnO0vUcS4zw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=z+CPJvva9ANfsfQYZ1TgFr51JYai0RzoJqGr/aw/zQmecaP0VwdCxLyAeuhTDe67W ACY+MMS6cxfJgCa2jDl4stZ05pUaLeqM0SukD8V9gwqSpA+ZjJ1RkEU6QVJoQrlU2h wIaaRxVe18ZF4D9pt5y9vkz/vp3DyvklXi1BH5ZE=
Date: Tue, 05 May 2020 15:55:03 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3586/push/5026356277@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3586@github.com>
References: <quicwg/base-drafts/pull/3586@github.com>
Subject: Re: [quicwg/base-drafts] Why min CWND of 2 instead of 1 (#3586)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1eec78ded_26303fd2b40cd96c29152c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/__2NTFCCaXxaKAlaCYl9YpjGZWU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:55:06 -0000

----==_mimepart_5eb1eec78ded_26303fd2b40cd96c29152c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

9f773931b7c57a232ef9a9814fb664832eb7436e  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3586/files/b270451746cc6ae9655ceb30281de6bf6bbdb628..9f773931b7c57a232ef9a9814fb664832eb7436e

----==_mimepart_5eb1eec78ded_26303fd2b40cd96c29152c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/9f773931b7c57a232ef9a9814fb664832eb7436e">9f77393</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3586/files/b270451746cc6ae9655ceb30281de6bf6bbdb628..9f773931b7c57a232ef9a9814fb664832eb7436e">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7HSV6WZ5DCUR62HV3RQCKMPANCNFSM4ML6ZUXA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7HQVKSATEVXWVOWBLRQCKMPA5CNFSM4ML6ZUXKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDKNZTHE3TOOCQOVZWQIZVGAZDMMZVGYZDONY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3586/files/b270451746cc6ae9655ceb30281de6bf6bbdb628..9f773931b7c57a232ef9a9814fb664832eb7436e",
"url": "https://github.com/quicwg/base-drafts/pull/3586/files/b270451746cc6ae9655ceb30281de6bf6bbdb628..9f773931b7c57a232ef9a9814fb664832eb7436e",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb1eec78ded_26303fd2b40cd96c29152c--


From nobody Tue May  5 15:55:49 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 87D2D3A0C18 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:55:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 GZVHzGouTD5j for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:55:45 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 598533A0C14 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:55:45 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 875C29606AB for <quic-issues@ietf.org>; Tue,  5 May 2020 15:55:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719344; bh=rASxzQi6kS39JpbAQTthS8U8hkKJWE0VPO/gT3YtEhE=; h=Date:From:To:Subject:From; b=JJfXYV0agHSQFJSBlvkIrBu6Qx3SF4pY4JPvYjW+Otlf2s9UTMnEwQrYOCi7XlRRu s5ic2CwscAW4iXzBqFPfxB2a9DEEYtYhuJE2hX9epjjAqJ1brf39xrnYHeRdFqMxA1 U+C16Pyob6nt46lnNOAQPSTX6D8Oi7luF/dPrRdY=
Date: Tue, 05 May 2020 15:55:44 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/bf0c1b-70f942@github.com>
Subject: [quicwg/base-drafts] 70f942: Script updating gh-pages from 9f773931. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8DgdSAoi-lNpFLDIkn-BITv-nRI>
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: Tue, 05 May 2020 22:55:48 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 70f942ebc7eba4bbf6f1e1d3eb2246c4e122746f
      https://github.com/quicwg/base-drafts/commit/70f942ebc7eba4bbf6f1e1d3eb2246c4e122746f
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 9f773931. [ci skip]



From nobody Tue May  5 15:56: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 AB75F3A0C1E for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:56:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.097
X-Spam-Level: 
X-Spam-Status: No, score=-2.097 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 gSkQeVOioe3i for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:56:51 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0E73A3A0C1C for <quic-issues@ietf.org>; Tue,  5 May 2020 15:56:50 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 0BC3A6A041F for <quic-issues@ietf.org>; Tue,  5 May 2020 15:56:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719410; bh=x7nfYQ8L+SCDhGXvYwzHm4wVwzQQRqR3Mvlj4vEenpc=; h=Date:From:To:Subject:From; b=nvld/FPbuBTeuqNrz6ZpM84pKAHiMk0GOjqKMR0MxhTCNeJDNTHPHzbauu/C3N8ZF P88z7HImcfAxEjIcKCYJYMVDdGEO4rUFNswIXVxDEHf5nDECYr8wUqNLKbQdJgojv/ w2k3PLonfNLJU0/8ZabtL6IK+y4LmSsWhZZ8KqV4=
Date: Tue, 05 May 2020 15:56:49 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-min-cwnd/9f7739-c5b9e7@github.com>
Subject: [quicwg/base-drafts] c5b9e7: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/h6jZba9w-NnWOqFoqDMQVtnlFmk>
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: Tue, 05 May 2020 22:56:53 -0000

  Branch: refs/heads/ianswett-min-cwnd
  Home:   https://github.com/quicwg/base-drafts
  Commit: c5b9e72880734f6e9e54bcbbd0339d72bdded5bc
      https://github.com/quicwg/base-drafts/commit/c5b9e72880734f6e9e54bcbbd0339d72bdded5bc
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Tue May  5 15:57:04 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 E69E03A0C1C for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:57:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.551
X-Spam-Level: 
X-Spam-Status: No, score=-1.551 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 E9-jLxJ3BWp2 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:57:00 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C4B953A0C1E for <quic-issues@ietf.org>; Tue,  5 May 2020 15:57:00 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id E75961C0DD2 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:56:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719419; bh=YDTdetM3zXWe283Yn0xvaWA6eeG/anngFB7SnQNYLTg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=j37XBfHPRYLyOcNQkzQSVkJJwkgGezNVlnB+AEeohX8stIT6IUKONso8e2IGl+M5l 5eK6Iy+wB0EKYbdLGnHx8aG/F4r0iUnkJbHQoPiTbFm/mmWmGHa9Kssj2ZMVHh+QvA zI0P/obClclUAlTpbqdHq71EsJwqOmxes47iyMi8=
Date: Tue, 05 May 2020 15:56:59 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3586/push/5026362524@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3586@github.com>
References: <quicwg/base-drafts/pull/3586@github.com>
Subject: Re: [quicwg/base-drafts] Why min CWND of 2 instead of 1 (#3586)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1ef3bd3cbb_36713fbda7acd95c770938"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Cj61fvd_A5cohpgm4ajHtpNUcAg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:57:03 -0000

----==_mimepart_5eb1ef3bd3cbb_36713fbda7acd95c770938
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

c5b9e72880734f6e9e54bcbbd0339d72bdded5bc  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3586/files/9f773931b7c57a232ef9a9814fb664832eb7436e..c5b9e72880734f6e9e54bcbbd0339d72bdded5bc

----==_mimepart_5eb1ef3bd3cbb_36713fbda7acd95c770938
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/c5b9e72880734f6e9e54bcbbd0339d72bdded5bc">c5b9e72</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3586/files/9f773931b7c57a232ef9a9814fb664832eb7436e..c5b9e72880734f6e9e54bcbbd0339d72bdded5bc">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZOSD6CAOJYUEMPPGTRQCKTXANCNFSM4ML6ZUXA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3UWVP5ZPWF6K7XRMTRQCKTXA5CNFSM4ML6ZUXKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDKNZTHE3TOOCQOVZWQIZVGAZDMMZWGI2TENA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3586/files/9f773931b7c57a232ef9a9814fb664832eb7436e..c5b9e72880734f6e9e54bcbbd0339d72bdded5bc",
"url": "https://github.com/quicwg/base-drafts/pull/3586/files/9f773931b7c57a232ef9a9814fb664832eb7436e..c5b9e72880734f6e9e54bcbbd0339d72bdded5bc",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb1ef3bd3cbb_36713fbda7acd95c770938--


From nobody Tue May  5 15:58:01 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 0F9103A0C20 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:57:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Dw9fM4v6pVhe for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:57:51 -0700 (PDT)
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 8DDBB3A0C28 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:57:51 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id CB036282A47 for <quic-issues@ietf.org>; Tue,  5 May 2020 15:57:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719470; bh=4d9r8S0wSXAyYW+JuCLkAglo0slR4rWYpW0i1LqD0KI=; h=Date:From:To:Subject:From; b=H16S5oD28ArafzCa8RZFNg9HSkqESucbZkYasiXJdvIytcpoCLCUUdC53pSBkMIx3 P2dzmiiQoDul0JNtNdQN+JjiBuqBUBO3wjYpZQtD3UeA5OT07JLNxexr2Zx4YKUGsG UCJ4iS8vSttedFcrOQIE2wV1k7AGX1i0j/0q/v2I=
Date: Tue, 05 May 2020 15:57:50 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/70f942-2bf870@github.com>
Subject: [quicwg/base-drafts] 2bf870: Script updating gh-pages from c5b9e728. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7WG4VYY7OxQDKHRzOhvKd5vOisg>
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: Tue, 05 May 2020 22:58:00 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2bf8706e778ca48b32b242ad1a126794a6703c6c
      https://github.com/quicwg/base-drafts/commit/2bf8706e778ca48b32b242ad1a126794a6703c6c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c5b9e728. [ci skip]



From nobody Tue May  5 15:59:29 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 EC0513A0C1E for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:59:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 opT3pxHomBXR for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 15:59:26 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 83AEB3A0C0A for <quic-issues@ietf.org>; Tue,  5 May 2020 15:59:26 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id CE6A56A07DC for <quic-issues@ietf.org>; Tue,  5 May 2020 15:59:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719565; bh=qslnopnMC7cnbUAUWd9fxoFv1Kx2SXfhmhSNdxO+jpM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1/r9jw7htsq7RrZVMX64Oap1TNZWuG/mfwvDpL2btDAXH6aPvbFv9iOhAU4EbWBG9 W5qDSBL9gLEssAyD76R5hmQ9miVOrm1/+PI5L1Ex6bIXZSOpXmbzf9xqLDZmMyGvB6 ejX+7mb/CGEEs7oEBxQZle99F5Ee443bNtg06frc=
Date: Tue, 05 May 2020 15:59:25 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZPKUOYJ3POCZFWPYF4XXIM3EVBNHHCH3TLYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3586/review/406212179@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3586@github.com>
References: <quicwg/base-drafts/pull/3586@github.com>
Subject: Re: [quicwg/base-drafts] Why min CWND of 2 instead of 1 (#3586)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1efcdbedf7_23093fbbe32cd95c2084d9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZG0wUXCAstMg_XEHy1wvhxhWz7E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 22:59:28 -0000

----==_mimepart_5eb1efcdbedf7_23093fbbe32cd95c2084d9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> +a single packet sent with that window causes the sender to waiting for a PTO
+({{pto}}) to recover from that loss, which is much longer than a round trip.

```suggestion
that single packet means that the sender needs to waiting for a PTO
({{pto}}) to recover, which can be much longer than a round-trip time.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3586#pullrequestreview-406212179
----==_mimepart_5eb1efcdbedf7_23093fbbe32cd95c2084d9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3586#discussi=
on_r420456415">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +a single packet sent with that window cau=
ses the sender to waiting for a PTO=0D
+({{pto}}) to recover from that loss, which is much longer than a round t=
rip.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-a single packet sent with that window causes =
the sender to waiting for a PTO=0D
-({{pto}}) to recover from that loss, which is much longer than a round t=
rip.=0D
+that single packet means that the sender needs to waiting for a PTO=0D
+({{pto}}) to recover, which can be much longer than a round-trip time.=0D=

</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3586#pullrequestreview-406212179">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K7YYIRVWRZH2VIDHWTRQCK43ANCNFSM4ML6ZUXA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKZXQEKTS5YFFUOU7UTRQCK43A5CNFSM4=
ML6ZUXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODA3E4UY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3586#pullrequestrev=
iew-406212179",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3586#pullrequestreview=
-406212179",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb1efcdbedf7_23093fbbe32cd95c2084d9--


From nobody Tue May  5 16:00:05 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 1B8FE3A0C0A for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:00:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 7wC6sre4sTtr for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:00:02 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 682183A0C20 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:00:02 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id C748C1C02DE for <quic-issues@ietf.org>; Tue,  5 May 2020 16:00:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719601; bh=N/WKXn4GPq3Bte/LnASC5B9YDz91MtkeDNg0H7Jy2aQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mFgV1jMyjWfC1CkApcugNvOyfJ7jhPFUXUBqmH5Pq8/TrRwBfTM+1xziyP56YQd6U zvDf6csBfdncniwc4vzORf4BWiJkc22wzFYQg+f2kOxAurVp1opEFlTk6cvsJU/tpT hH0dnI9Ez/clr3U9xCq2NUKnfK3r35OoKj7zIO7s=
Date: Tue, 05 May 2020 16:00:01 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK75K5JBVOE77EZAZRF4XXIPDEVBNHHCH3TLYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3586/review/406212435@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3586@github.com>
References: <quicwg/base-drafts/pull/3586@github.com>
Subject: Re: [quicwg/base-drafts] Why min CWND of 2 instead of 1 (#3586)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1eff1b6fea_d863fe1a46cd96c2657fd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8FfnoO7CZUrIrnI1BRwX0IwTO3o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 23:00:04 -0000

----==_mimepart_5eb1eff1b6fea_d863fe1a46cd96c2657fd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.

LGTM, modulo one suggestion



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3586#pullrequestreview-406212435
----==_mimepart_5eb1eff1b6fea_d863fe1a46cd96c2657fd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>

<p>LGTM, modulo one suggestion</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3586#pullrequestreview-406212435">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZJ66X467K5PLCF22LRQCK7DANCNFSM4ML6ZUXA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4ESCKCVYUCVTYP45DRQCK7DA5CNFSM4ML6ZUXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODA3E6UY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3586#pullrequestreview-406212435",
"url": "https://github.com/quicwg/base-drafts/pull/3586#pullrequestreview-406212435",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1eff1b6fea_d863fe1a46cd96c2657fd--


From nobody Tue May  5 16:00:23 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 DB1CA3A0C1F for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:00:14 -0700 (PDT)
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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 Idik6K8XTCKl for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:00:13 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 060CC3A0C0A for <quic-issues@ietf.org>; Tue,  5 May 2020 16:00:12 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 43D1A282C2A for <quic-issues@ietf.org>; Tue,  5 May 2020 16:00:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719612; bh=ohYnzJSxckMkPL4IIfp8BqdspNj076kUmWiRklzckpY=; h=Date:From:To:Subject:From; b=UVmOemTHNnNtyCkuht3+VwIvd/ZsgtyGwCGehKW3doa3JA50Ma7YAX16JiwSkqre4 qX4TIn16wTm9MSAA1V8GAPIzLeD4j1FkcbS+ptZiTuUcJGQm4QKo6e5GlH/qfb5EzK n65ZWmFGvwdgGMb2SGvqKWgOYyxpDvh9IDjfCcxY=
Date: Tue, 05 May 2020 16:00:12 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-min-cwnd/c5b9e7-9a69f8@github.com>
Subject: [quicwg/base-drafts] 9a69f8: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/c8W6QeEUoInstugKe4JHAF3coIo>
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: Tue, 05 May 2020 23:00:15 -0000

  Branch: refs/heads/ianswett-min-cwnd
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9a69f882ff119ab34608b3a750ddc7f4639f3ec1
      https://github.com/quicwg/base-drafts/commit/9a69f882ff119ab34608b3a750ddc7f4639f3ec1
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue May  5 16:00:27 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 011F23A0C21 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:00:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 xw4kp-fg1Q1a for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:00:24 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E61313A0C20 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:00:23 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 36DDF960415 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:00:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719623; bh=6LKBF1RNe7f4/guhOaVuKlQA4q6lTOgOBd1HVXTIZMc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gOXvbLpjZ+eAxP7Kso8X1NAGczVkkOxOofnTVxGHOAvLkdYWgiYyoNrugPurztssi nDz3OakXShOBVf9GzCRLyqLjgfV++g6hMQJrvlwhVHzasiDbgXt065Pk5YuQKXFSLb D41SiEagDCFvJnTh9+FzJ8F7mvku8zSbTZiGZ26g=
Date: Tue, 05 May 2020 16:00:23 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3586/push/5026373330@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3586@github.com>
References: <quicwg/base-drafts/pull/3586@github.com>
Subject: Re: [quicwg/base-drafts] Why min CWND of 2 instead of 1 (#3586)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1f00726ed9_46843fbc7dccd96c32836d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zcA29i97hmzt4XZfd-8JGGRtTP4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 23:00:26 -0000

----==_mimepart_5eb1f00726ed9_46843fbc7dccd96c32836d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

9a69f882ff119ab34608b3a750ddc7f4639f3ec1  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3586/files/c5b9e72880734f6e9e54bcbbd0339d72bdded5bc..9a69f882ff119ab34608b3a750ddc7f4639f3ec1

----==_mimepart_5eb1f00726ed9_46843fbc7dccd96c32836d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/9a69f882ff119ab34608b3a750ddc7f4639f3ec1">9a69f88</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3586/files/c5b9e72880734f6e9e54bcbbd0339d72bdded5bc..9a69f882ff119ab34608b3a750ddc7f4639f3ec1">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZSSZYON6F2QQIHUM3RQCLAPANCNFSM4ML6ZUXA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4K4FKX4J65Z6NUKR3RQCLAPA5CNFSM4ML6ZUXKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDKNZTHE3TOOCQOVZWQIZVGAZDMMZXGMZTGMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3586/files/c5b9e72880734f6e9e54bcbbd0339d72bdded5bc..9a69f882ff119ab34608b3a750ddc7f4639f3ec1",
"url": "https://github.com/quicwg/base-drafts/pull/3586/files/c5b9e72880734f6e9e54bcbbd0339d72bdded5bc..9a69f882ff119ab34608b3a750ddc7f4639f3ec1",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb1f00726ed9_46843fbc7dccd96c32836d--


From nobody Tue May  5 16:01:15 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 C2E2F3A0C1F for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:01:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 6_fyAr3Gwdyz for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:01:11 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B04793A0C0A for <quic-issues@ietf.org>; Tue,  5 May 2020 16:01:11 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id E3C7FC60EC2 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:01:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719670; bh=MCEgwUXw9V+zKvYbdhqbUygvmwXylqPmU9DV3sAqsS4=; h=Date:From:To:Subject:From; b=03xkhkmAIj3c2w1a5wGxEsAbOjC7V+vA8FY5iKe0U2WEOwD5TBUVSpIdFIRD+ZJzD lVT4X5ph57yNNtefziKDOsHvXLot1lnkjygEpTbIu7egcowaor5m7pNYRm8I+5Pf34 xOzzo6udPRdXb3PHz8we4o5KvSIqsMEVSoSF8kjU=
Date: Tue, 05 May 2020 16:01:10 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/2bf870-b580cf@github.com>
Subject: [quicwg/base-drafts] b580cf: Script updating gh-pages from 9a69f882. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gf1ZfzwlbHE0-IprWymSTtIAfr4>
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: Tue, 05 May 2020 23:01:13 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b580cf3bcf2944e7969ff5b154645070573ee26d
      https://github.com/quicwg/base-drafts/commit/b580cf3bcf2944e7969ff5b154645070573ee26d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 9a69f882. [ci skip]



From nobody Tue May  5 16:02:10 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 C28D63A0C23 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:02:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 AwdJaJsyTuRR for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:02:06 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E83533A0C1F for <quic-issues@ietf.org>; Tue,  5 May 2020 16:02:05 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 3F9C31C0093 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:02:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719725; bh=oQ1BBV3XwnXeVISjV8rekJ5cAhCfYLk7SWhQlr7j3GU=; h=Date:From:To:Subject:From; b=KNaCr+7py9x33NX+80fAByxZkAQPXmnGUzwlOQw0Febaisodd7gHivmYtDkXLQp0X ZuSbdd/qnmdBBNFw6wx35cfmUsD7dCKHxB86pNJh01QkUJTdUkvaBugv88bves1Neh qCTQFV3DxXtbyXeZNZhYPjm3eplbGfljOppy46oE=
Date: Tue, 05 May 2020 16:02:05 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/58a2fb-1f6697@github.com>
Subject: [quicwg/base-drafts] 66fb29: Why min CWND of 2 instead of 1
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6L_QSXMqliv1daUoGpXR_qIQ8h0>
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: Tue, 05 May 2020 23:02:08 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 66fb2929883fc076683392c81be00c2b6936ad82
      https://github.com/quicwg/base-drafts/commit/66fb2929883fc076683392c81be00c2b6936ad82
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-19 (Sun, 19 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Why min CWND of 2 instead of 1

Feel free to suggest better text or other reasons, but this is what I came up with.

Fixes #3261


  Commit: 6d95aa65d4366e6474de8b61f964e99ffd9a996b
      https://github.com/quicwg/base-drafts/commit/6d95aa65d4366e6474de8b61f964e99ffd9a996b
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 1225aad461e601e2cfec4e354a8b34704f633f81
      https://github.com/quicwg/base-drafts/commit/1225aad461e601e2cfec4e354a8b34704f633f81
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: d214bfdcdc246bc0955acf834fc64c3d463ab2d6
      https://github.com/quicwg/base-drafts/commit/d214bfdcdc246bc0955acf834fc64c3d463ab2d6
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: ce6ab3402520ed0931bafed333a3ab3cddf73903
      https://github.com/quicwg/base-drafts/commit/ce6ab3402520ed0931bafed333a3ab3cddf73903
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 5580b7a57d7fa5f1585f598751f9930b4480c01a
      https://github.com/quicwg/base-drafts/commit/5580b7a57d7fa5f1585f598751f9930b4480c01a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 72c7eced88de7b859edf4d1f093277851433ab8a
      https://github.com/quicwg/base-drafts/commit/72c7eced88de7b859edf4d1f093277851433ab8a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-21 (Tue, 21 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 1e67d0fb1c81085c81ab5812621111608d824cdf
      https://github.com/quicwg/base-drafts/commit/1e67d0fb1c81085c81ab5812621111608d824cdf
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: b32ab8c350ac15b92b520f7a3b15f7415b22083b
      https://github.com/quicwg/base-drafts/commit/b32ab8c350ac15b92b520f7a3b15f7415b22083b
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: b270451746cc6ae9655ceb30281de6bf6bbdb628
      https://github.com/quicwg/base-drafts/commit/b270451746cc6ae9655ceb30281de6bf6bbdb628
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 9f773931b7c57a232ef9a9814fb664832eb7436e
      https://github.com/quicwg/base-drafts/commit/9f773931b7c57a232ef9a9814fb664832eb7436e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>


  Commit: c5b9e72880734f6e9e54bcbbd0339d72bdded5bc
      https://github.com/quicwg/base-drafts/commit/c5b9e72880734f6e9e54bcbbd0339d72bdded5bc
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 9a69f882ff119ab34608b3a750ddc7f4639f3ec1
      https://github.com/quicwg/base-drafts/commit/9a69f882ff119ab34608b3a750ddc7f4639f3ec1
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 1f66975cd3f9cdc5c0fae57376f59177701d8d97
      https://github.com/quicwg/base-drafts/commit/1f66975cd3f9cdc5c0fae57376f59177701d8d97
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3586 from quicwg/ianswett-min-cwnd

Why min CWND of 2 instead of 1


Compare: https://github.com/quicwg/base-drafts/compare/58a2fbbc7525...1f66975cd3f9


From nobody Tue May  5 16:02:14 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 300A73A0C1F for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:02:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 qr0b-WQy9FUi for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:02:06 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BF1023A0C21 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:02:06 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 196EA9604A2 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:02:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719726; bh=PiZed6u8TKvexR5XLP+akCwV8WtVzx64kSweyz+FF3E=; h=Date:From:To:Subject:From; b=aHykD1bWkIPWe49ZxqlPNkv+US/OleakcgSQdUc+vCxvrKGXlYHE83UNrrE4bt0UW LmZ0YMlVE44heIUeWArGv94Ifo2+anTNcofrARDTa+ExdcFnaNpcvqn3OPmA4s7efZ /NGlqw2Ut4bLUm9Ml40EPsmx3jg6it/P4x7CKuqE=
Date: Tue, 05 May 2020 16:02:06 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-min-cwnd/9a69f8-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/W88LJd1UbpwAMn71WGRTA1u6eFs>
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: Tue, 05 May 2020 23:02:08 -0000

  Branch: refs/heads/ianswett-min-cwnd
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May  5 16:02:18 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 4D6A83A0C21 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:02:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 HZsqgOh8zsA2 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:02:16 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EF2463A0C20 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:02:15 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 51ABF2C1396 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:02:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719735; bh=YH1PUFDcvR2u4rMsbj3pEhfTPz3asAuDPPDRhurcCN0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=APqgV5OL6FxGoRgwfbRds73SKK2OyQVblZH3dF4gizFm9mmcn6BvkscLTn/zZAytA jR+kz1bj45NKC//Ed0rKkXfxSOAZUb4b1POVKon1U6w42oSKKufoaVOKEpKZ5QvAef OEO2seSATtdEr39PNa1lRXW0HIoW+QzxZwQOZp+Q=
Date: Tue, 05 May 2020 16:02:15 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6PBXKHAAXGCA2PSO54XXIXPEVBNHHCH3TLYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3586/issue_event/3306319342@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3586@github.com>
References: <quicwg/base-drafts/pull/3586@github.com>
Subject: Re: [quicwg/base-drafts] Why min CWND of 2 instead of 1 (#3586)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1f07742904_464b3fccc56cd960176fb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EVj7ZHCee1leShHPOIH_6_6f_hM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 23:02:17 -0000

----==_mimepart_5eb1f07742904_464b3fccc56cd960176fb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3586 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3586#event-3306319342
----==_mimepart_5eb1f07742904_464b3fccc56cd960176fb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="602827718" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3586" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3586/hovercard" href="https://github.com/quicwg/base-drafts/pull/3586">#3586</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3586#event-3306319342">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3M6ED22ENZ3W737ZTRQCLHPANCNFSM4ML6ZUXA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2DBLBJBL7OBE37WD3RQCLHPA5CNFSM4ML6ZUXKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYUJG33Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3586#event-3306319342",
"url": "https://github.com/quicwg/base-drafts/pull/3586#event-3306319342",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1f07742904_464b3fccc56cd960176fb--


From nobody Tue May  5 16:02:22 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 1BF983A0C20 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:02:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Gj9z-qk_xcO8 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:02:17 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E0E803A0C1F for <quic-issues@ietf.org>; Tue,  5 May 2020 16:02:16 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 439E4520DEF for <quic-issues@ietf.org>; Tue,  5 May 2020 16:02:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719736; bh=gXX8XdBbDGGnENNPYU7p1aCx3N3Bbbpi3T4f7frRzCI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HQwnall9XvltgS2pAvhFBCVdMYErhvtLx+N2bY8PUe7nIOaGJmrLmZ3yEX46b2S0c zvcGiRf0WwupAAjkPmGSBXpLb8DJn9XSUgGk1u8/r7sQO7KYMxD1MVXMzKjquzq9KO rj6WKl5Lr+OiiH0MOTveqPsbjerVW4pFfoDXvUJs=
Date: Tue, 05 May 2020 16:02:16 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6DKWFOT4PCX4TBMOV4XXIXREVBNHHB6RRGHE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3261/issue_event/3306319347@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3261@github.com>
References: <quicwg/base-drafts/issues/3261@github.com>
Subject: Re: [quicwg/base-drafts] Justify or reconcile deviation from TCP kMinimumWindow value (#3261)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1f0783489f_9983fd250ccd96034515"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RN1YqqWxkaRlJEi3svK0QUvcO0I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 23:02:18 -0000

----==_mimepart_5eb1f0783489f_9983fd250ccd96034515
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3261 via #3586.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3261#event-3306319347
----==_mimepart_5eb1f0783489f_9983fd250ccd96034515
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="524691001" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3261" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3261/hovercard" href="https://github.com/quicwg/base-drafts/issues/3261">#3261</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="602827718" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3586" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3586/hovercard" href="https://github.com/quicwg/base-drafts/pull/3586">#3586</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3261#event-3306319347">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7IHS5SFXQDZDJ4KWLRQCLHRANCNFSM4JO3ZOVA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7BOWJKE6AHY3QBJSDRQCLHRA5CNFSM4JO3ZOVKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYUJG34Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3261#event-3306319347",
"url": "https://github.com/quicwg/base-drafts/issues/3261#event-3306319347",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1f0783489f_9983fd250ccd96034515--


From nobody Tue May  5 16:02:52 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 385F83A0C1F for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:02:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.48
X-Spam-Level: 
X-Spam-Status: No, score=-1.48 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 1NPstymWGcTr for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:02:48 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 098163A0C23 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:02:47 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 30E8E6A1050 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:02:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719767; bh=xozNUOoWnUN0BCFLsKrZN5ZdRKzG2q8HPi6NioBbTno=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CAV5j+lEeSyUhvIDiCUzc3M711xZ6BL1TB0IvDIWEWnAmESRGgiYOausf1FTgmFeb k3p6T9PmdjUKeku2/Wo/4AW2ttPv7CbMWXpWEqVsxKdxWXQBKw2C7xgPAP3qGK+6+X 4+eUTweLQqPWqz57heRvVGnCxxGsxIkuagLD6op4=
Date: Tue, 05 May 2020 16:02:47 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4GR5FUTDOXIBPRITN4XXIZPEVBNHHCHNTZ2Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3575/review/406213589@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3575@github.com>
References: <quicwg/base-drafts/pull/3575@github.com>
Subject: Re: [quicwg/base-drafts] QPACK security considerations (#3575)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1f09720a7f_1afc3f8ece2cd96c634c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/maqvm0rE4cVW8Yes20cuYbrCv18>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 23:02:50 -0000

----==_mimepart_5eb1f09720a7f_1afc3f8ece2cd96c634c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@afrind commented on this pull request.



> @@ -1155,6 +1369,19 @@ to an excess of unsent data might include limiting the ability of the peer to
 open new streams, reading only from the encoder stream, or closing the
 connection.
 
+
+## Implementation Limits
+
+An implementation of QPACK needs to ensure that large values for integers, long
+encoding for integers, or long string literals do not create security
+weaknesses.
+
+An implementation has to set a limit for the values it accepts for integers, as
+well as for the encoded length (see {{prefixed-integers}}). In the same way, it
+has to set a limit to the length it accepts for string literals (see
+{{string-literals}}).

@MikeBishop : I can't quite figure an elegant way to mention the minimum here.  It is already mentioned in the referenced section.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3575#discussion_r420457616
----==_mimepart_5eb1f09720a7f_1afc3f8ece2cd96c634c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@afrind</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3575#discussion_r420457616">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1155,6 +1369,19 @@ to an excess of unsent data might include limiting the ability of the peer to
 open new streams, reading only from the encoder stream, or closing the
 connection.
 
+
+## Implementation Limits
+
+An implementation of QPACK needs to ensure that large values for integers, long
+encoding for integers, or long string literals do not create security
+weaknesses.
+
+An implementation has to set a limit for the values it accepts for integers, as
+well as for the encoded length (see {{prefixed-integers}}). In the same way, it
+has to set a limit to the length it accepts for string literals (see
+{{string-literals}}).
</pre>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/MikeBishop/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/MikeBishop">@MikeBishop</a> : I can't quite figure an elegant way to mention the minimum here.  It is already mentioned in the referenced section.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3575#discussion_r420457616">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZBPQCQPRLY7T37PYDRQCLJPANCNFSM4MHIMGKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4QLLNK2Q7OC3UXO5LRQCLJPA5CNFSM4MHIMGK2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODA3FHVI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3575#discussion_r420457616",
"url": "https://github.com/quicwg/base-drafts/pull/3575#discussion_r420457616",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb1f09720a7f_1afc3f8ece2cd96c634c--


From nobody Tue May  5 16:02:56 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 4AC173A0C27 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:02:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 R9k0ULf5UKNq for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:02:52 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 874AE3A0C2B for <quic-issues@ietf.org>; Tue,  5 May 2020 16:02:52 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id DAAD46606B7 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:02:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588719771; bh=2wVqxKPCM/kLoLdj+Y1scHY+lhUthXIzFfgzdP5MXgA=; h=Date:From:To:Subject:From; b=trQT6uS8BAanKmCjXsfqBeM1Bgk5dq91w8QNtv0tp4aXoWhtdn/6uLaGyrRV67Bqq XF3vjGChL9hOoh8Und3dX+gDA3RsJNhJwQ15M86OgiPtI0boSNVoAlkohBWHkIFFiQ 1lJGslBAl7XdFtbOFdCWWWwMG+R3q89vKM1yy33Q=
Date: Tue, 05 May 2020 16:02:51 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b580cf-094d20@github.com>
Subject: [quicwg/base-drafts] 094d20: Script updating gh-pages from 1f66975c. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/viG23e5T6m4uk595_EIjkE_B040>
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: Tue, 05 May 2020 23:02:54 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 094d20537a2945b62b3a2c86afe02d2bceb10e44
      https://github.com/quicwg/base-drafts/commit/094d20537a2945b62b3a2c86afe02d2bceb10e44
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 1f66975c. [ci skip]



From nobody Tue May  5 16:31:17 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 B6DDD3A0C4A for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:31:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 UNiXkMzE7XtX for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:31:12 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F3F2D3A0C3E for <quic-issues@ietf.org>; Tue,  5 May 2020 16:31:11 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 29D0D8C07B0 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:31:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588721469; bh=TohGtFitAtRpAts2nS4DnRYtw0fbvQe/dPs2fKrTD3w=; h=Date:From:To:Subject:From; b=PHowMP9TuaSYD0SEmNUmO0LbMt+T/Z/YqJFEHRqNKCtDxH5HxLhcJply8jAupouda yUX2yU3H9vog1/NPc9A3mqbFQYDapD4ukKl3n+teegYLMJRMT2QaMkHIBpsK3CEXzf QyFF7c4ZDVHO7bWrcmHLEPkGo49SsxwEvqE5YlsU=
Date: Tue, 05 May 2020 16:31:09 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/recovery-quoting/000000-266084@github.com>
Subject: [quicwg/base-drafts] 266084: Quoting in recovery
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FD2UV3InwahcoBZGXt4UMF54tMY>
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: Tue, 05 May 2020 23:31:15 -0000

  Branch: refs/heads/recovery-quoting
  Home:   https://github.com/quicwg/base-drafts
  Commit: 266084226a089ee1df00ebc796e045b0c6418a46
      https://github.com/quicwg/base-drafts/commit/266084226a089ee1df00ebc796e045b0c6418a46
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Quoting in recovery

This fixes some of the quoting issues that I discovered reading the
spec.



From nobody Tue May  5 16:32:04 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 6D8103A0C50 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:32:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.551
X-Spam-Level: 
X-Spam-Status: No, score=-1.551 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 3PTuV4RzUpyt for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:32:00 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 86B363A0C4C for <quic-issues@ietf.org>; Tue,  5 May 2020 16:32:00 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id A6BB98C05E2 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:31:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588721519; bh=QZZVkiSeb8Y9CoTYJgrFLXEp7t5jWfeG2LmtE8WTNjw=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=2dpuDcJzYkM7fkjnpjxmrsE/pPOz2YDN7j2zA0dVKWfuy0JIogUvlrs5U98A7CWHm LGSVJRS3tXFhWfjnhP+8lOiAkrYriTD23YGmf48AX6T4knhY/GTkMTyWvti18kr+E+ +Hl0gfiW1ATMaTOw2g4kEZPasN6Y9wavJslqindM=
Date: Tue, 05 May 2020 16:31:59 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3Q72S2A4FA7G2S7WF4XXMG7EVBNHHCJCHZ4Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3628@github.com>
Subject: [quicwg/base-drafts] Quoting in recovery (#3628)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1f76f97bf2_67883fd5806cd960646ca"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1wZdBsyNTgMBuQxxq97axZMdcO8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 23:32:03 -0000

----==_mimepart_5eb1f76f97bf2_67883fd5806cd960646ca
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This fixes some of the quoting issues that I discovered reading the
spec.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3628

-- Commit Summary --

  * Quoting in recovery

-- File Changes --

    M draft-ietf-quic-recovery.md (26)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3628.patch
https://github.com/quicwg/base-drafts/pull/3628.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3628

----==_mimepart_5eb1f76f97bf2_67883fd5806cd960646ca
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This fixes some of the quoting issues that I discovered reading the<br>
spec.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3628'>https://github.com/quicwg/base-drafts/pull/3628</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Quoting in recovery</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3628/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (26)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3628.patch'>https://github.com/quicwg/base-drafts/pull/3628.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3628.diff'>https://github.com/quicwg/base-drafts/pull/3628.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3628">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4ZADLL22HKF7EVXD3RQCOW7ANCNFSM4MZ7SKTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5EUVXUCL6VI2PYLDDRQCOW7A5CNFSM4MZ7SKT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JEI7HTA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3628",
"url": "https://github.com/quicwg/base-drafts/pull/3628",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb1f76f97bf2_67883fd5806cd960646ca--


From nobody Tue May  5 16:32:23 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 02A463A0C51 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:32:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 1fGajGIrt3bx for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:32:19 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7C4FE3A0C50 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:32:19 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id EF7F26A00EC for <quic-issues@ietf.org>; Tue,  5 May 2020 16:32:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588721537; bh=MIpULOLVWiLI2KNDK83lCAbJhFp5MGHzr+mphyFP+qA=; h=Date:From:To:Subject:From; b=NGKqiTk5swaDwl5s65KyrAn2yOJldP6kZpu2eF1oU3sD+da9WBxGEP5RsnWj2G7Ga Q1DgMAofQ1e1YoL9+tSq3K7m860a17GyKj/rQcckyj/zkZazukvDpua7n4RpetOLNt zLtDanT86uI6cgPOAzPmrnIxP03asPvzNYIDZ9HM=
Date: Tue, 05 May 2020 16:32:17 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/094d20-b39be5@github.com>
Subject: [quicwg/base-drafts] b39be5: Script updating gh-pages from 26608422. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/O1a6xwXBQn29IatwvCJLj2GND28>
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: Tue, 05 May 2020 23:32:21 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b39be51c5d824d96e0adbe998adfee48c713b2c4
      https://github.com/quicwg/base-drafts/commit/b39be51c5d824d96e0adbe998adfee48c713b2c4
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M index.html
    A recovery-quoting/draft-ietf-quic-http.html
    A recovery-quoting/draft-ietf-quic-http.txt
    A recovery-quoting/draft-ietf-quic-invariants.html
    A recovery-quoting/draft-ietf-quic-invariants.txt
    A recovery-quoting/draft-ietf-quic-qpack.html
    A recovery-quoting/draft-ietf-quic-qpack.txt
    A recovery-quoting/draft-ietf-quic-recovery.html
    A recovery-quoting/draft-ietf-quic-recovery.txt
    A recovery-quoting/draft-ietf-quic-tls.html
    A recovery-quoting/draft-ietf-quic-tls.txt
    A recovery-quoting/draft-ietf-quic-transport.html
    A recovery-quoting/draft-ietf-quic-transport.txt
    A recovery-quoting/index.html

  Log Message:
  -----------
  Script updating gh-pages from 26608422. [ci skip]



From nobody Tue May  5 16:36:11 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 096E03A0C59 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:36:09 -0700 (PDT)
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, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, 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 EfX1bg33_nqu for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:36:07 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 293733A0C56 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:36:07 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id A8DF7660031 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:36:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588721765; bh=W2tu7rGU7hZjMDhspxUFXPzrLuKC193M9Znl4W9RT3E=; h=Date:From:To:Subject:From; b=wMnvwtJLwOfMVKt0jkyRuSIrhl4CIs3SnOZT6kMreWPV7J45WaXV/smuuzy5eSX5O WHU9EwxygG9D0eHV5OJp6HjYWPnhPur4yQwy7aTGUmKuF2hUUFlUNWk57JZTQAdBVq GlAV4cNKdpnGAvjSrvf7c8UrP8L3d0Uffi9jO9Ws=
Date: Tue, 05 May 2020 16:36:05 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/section-ref-titlecase/000000-f39b1b@github.com>
Subject: [quicwg/base-drafts] f39b1b: Use Section not section
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hWJuaOddqZMKRHvJeShU8QCjoX4>
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: Tue, 05 May 2020 23:36:09 -0000

  Branch: refs/heads/section-ref-titlecase
  Home:   https://github.com/quicwg/base-drafts
  Commit: f39b1b711e1934b77984de0d9d1120396c214592
      https://github.com/quicwg/base-drafts/commit/f39b1b711e1934b77984de0d9d1120396c214592
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Use Section not section



From nobody Tue May  5 16:36:35 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 014603A0C57 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:36:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.553
X-Spam-Level: 
X-Spam-Status: No, score=-1.553 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 c4WRzYWtJY9N for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:36:32 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1390C3A0C55 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:36:32 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 509312615BF for <quic-issues@ietf.org>; Tue,  5 May 2020 16:36:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588721791; bh=adZ/gzt7wW+uFQGaj1oixDVkjji9Eto2vULGyiXzF4k=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Gj36EVUl4/2PXCUbeOwLlFodG5PFfZIkr2apTDuEjRT0IvOk92ceFEQmlIDbSTpC6 lQO6MiOncK+gvFzyCemT40TE8HrEbO/uAuJXg7X3ALbS7kTt8i8xdbyJIQ5hut0Yox FPkVgV1SsfXVSAdYwi86ZF3aZIlZcLleJrhL61Ck=
Date: Tue, 05 May 2020 16:36:31 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ3BVIFLXP3MPOM2IN4XXMX7EVBNHHCJCIAEE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3629@github.com>
Subject: [quicwg/base-drafts] Use Section not section (#3629)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb1f87f2a3fa_5e603fd9960cd960710b2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mFyiIR3AHGkTO7OjjxcK2Unr-Kc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 05 May 2020 23:36:34 -0000

----==_mimepart_5eb1f87f2a3fa_5e603fd9960cd960710b2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3629

-- Commit Summary --

  * Use Section not section

-- File Changes --

    M draft-ietf-quic-recovery.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3629.patch
https://github.com/quicwg/base-drafts/pull/3629.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3629

----==_mimepart_5eb1f87f2a3fa_5e603fd9960cd960710b2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3629'>https://github.com/quicwg/base-drafts/pull/3629</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Use Section not section</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3629/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3629.patch'>https://github.com/quicwg/base-drafts/pull/3629.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3629.diff'>https://github.com/quicwg/base-drafts/pull/3629.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3629">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6SQZNLWZCF24U5EJLRQCPH7ANCNFSM4MZ7UMWA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7Q5VHE5A2L3PSYPTDRQCPH7A5CNFSM4MZ7UMWKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JEJAAQQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3629",
"url": "https://github.com/quicwg/base-drafts/pull/3629",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb1f87f2a3fa_5e603fd9960cd960710b2--


From nobody Tue May  5 16:36:58 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 0E7363A0C5D for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:36:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 lYQQCJUNowUV for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 16:36:56 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1AB323A0C57 for <quic-issues@ietf.org>; Tue,  5 May 2020 16:36:56 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 43A1296046A for <quic-issues@ietf.org>; Tue,  5 May 2020 16:36:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588721815; bh=1AKp91OacIDwbSKKMjOhXb7XkX+Y557+SPBZf5GPBnw=; h=Date:From:To:Subject:From; b=q12c8ckZa2yXMS96oQSo3FN4s/RhFLu3GrHiRIQ39YFzt2ciLa9UR+m6coZ/hgyee +aBgDMT+x7/PivBmf/RpMtYUDVdI6wx2YfXeJIg2B1kpsjes+zClaInjn4bnG3fxV0 xdAGTs2fCLgA7LGLkTJ8/J5BUgfs0PB6v4NjLTi8=
Date: Tue, 05 May 2020 16:36:55 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b39be5-ead88e@github.com>
Subject: [quicwg/base-drafts] ead88e: Script updating gh-pages from f39b1b71. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BtKK_qgrNyrSky7H3XRZSrlRMXo>
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: Tue, 05 May 2020 23:36:58 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ead88ebf3cee6e64d2e87274bce968a5d9d34288
      https://github.com/quicwg/base-drafts/commit/ead88ebf3cee6e64d2e87274bce968a5d9d34288
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M index.html
    A section-ref-titlecase/draft-ietf-quic-http.html
    A section-ref-titlecase/draft-ietf-quic-http.txt
    A section-ref-titlecase/draft-ietf-quic-invariants.html
    A section-ref-titlecase/draft-ietf-quic-invariants.txt
    A section-ref-titlecase/draft-ietf-quic-qpack.html
    A section-ref-titlecase/draft-ietf-quic-qpack.txt
    A section-ref-titlecase/draft-ietf-quic-recovery.html
    A section-ref-titlecase/draft-ietf-quic-recovery.txt
    A section-ref-titlecase/draft-ietf-quic-tls.html
    A section-ref-titlecase/draft-ietf-quic-tls.txt
    A section-ref-titlecase/draft-ietf-quic-transport.html
    A section-ref-titlecase/draft-ietf-quic-transport.txt
    A section-ref-titlecase/index.html

  Log Message:
  -----------
  Script updating gh-pages from f39b1b71. [ci skip]



From nobody Tue May  5 18:09:05 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 F167F3A0CA4 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:08:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 mkCSNRyAEj_2 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:08:52 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B53A13A0CBB for <quic-issues@ietf.org>; Tue,  5 May 2020 18:08:52 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id A36F8282A47 for <quic-issues@ietf.org>; Tue,  5 May 2020 18:08:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588727331; bh=mcR9mQwr96voi6xiXuTyAthRGYR4y+VthCVpdDoOLAo=; h=Date:From:To:Subject:From; b=qlHAimRtZnKKeLgqwbB9YHryA4L49KndJwdBWASD4IqulhDnxaxLxBdiWWMZRmtOv JRzhrZTWGoAulkp2ErvhNidMyEPhK+0xNHpCWJLAVdctsiogvOBgld41ggAzherSk9 99JJufdb/poL10VT1xvZPpei9DPpPuf23n+OudXc=
Date: Tue, 05 May 2020 18:08:51 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/1f6697-4e9c4e@github.com>
Subject: [quicwg/base-drafts] f39b1b: Use Section not section
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AHVUxlWLULiinalkFa--ajtkK7U>
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: Wed, 06 May 2020 01:08:55 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: f39b1b711e1934b77984de0d9d1120396c214592
      https://github.com/quicwg/base-drafts/commit/f39b1b711e1934b77984de0d9d1120396c214592
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Use Section not section


  Commit: 4e9c4ee480862086ae05778160b23c5b27f09f04
      https://github.com/quicwg/base-drafts/commit/4e9c4ee480862086ae05778160b23c5b27f09f04
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3629 from quicwg/section-ref-titlecase

Use Section not section


Compare: https://github.com/quicwg/base-drafts/compare/1f66975cd3f9...4e9c4ee48086


From nobody Tue May  5 18:09:08 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 427173A0CA7 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:08:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 hd7p3dL-YO8y for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:08:54 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1BC383A0C91 for <quic-issues@ietf.org>; Tue,  5 May 2020 18:08:54 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 59D28C60E01 for <quic-issues@ietf.org>; Tue,  5 May 2020 18:08:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588727332; bh=bLHuZ7IIUvwSde5sTQPl5NFV+dcLuQ7J7/T8Zk7PVB8=; h=Date:From:To:Subject:From; b=mXvTUyu3wyq1p8vB5fOeowCQBSGEa84kRR4LKdgHdNpYXnHBFELybkcOvumdoNMvw Zc1fc2DDz8sz0taHLSR8y4ZY6QmYGqBrTqgRfwL/ahSdUlW9RVQIMXU2EZq3C95pJq /9Q5ACLsOIEQLCMs26uDBGlbQiUgY1/ppNicJu/o=
Date: Tue, 05 May 2020 18:08:52 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/section-ref-titlecase/f39b1b-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EuUzbqyO4T8Ro7LzqbpGFNq28Lo>
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: Wed, 06 May 2020 01:08:55 -0000

  Branch: refs/heads/section-ref-titlecase
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May  5 18:09:11 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 44E263A0CAB for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:08:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 hRUMPshRhM0d for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:08:54 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2F2243A0CAA for <quic-issues@ietf.org>; Tue,  5 May 2020 18:08:54 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 6BC70C60C9D for <quic-issues@ietf.org>; Tue,  5 May 2020 18:08:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588727333; bh=+7EJAuoK7LmXYt0DuUpyjHtmaH3OTXM7AjlIskl0P3A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1CBSwVJKpKHwQrt4BhXtemqiNNc4XNLCUNWoFgZTG/BmAbbGPyE7FYst5KWPAc0E5 2QCxiretSzH4o5X39S167XDHHuyVn1VNaHiYVRWEdIgSwGCgAQPdydVrtjrLwfSbRa wmJ5Uo8OPZSlh6+JShmbqXKx/2KyE0F78+I0uqws=
Date: Tue, 05 May 2020 18:08:53 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4GTF6ETWG5V2XRFAF4XXXSLEVBNHHCJCIAEE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3629/review/406252540@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3629@github.com>
References: <quicwg/base-drafts/pull/3629@github.com>
Subject: Re: [quicwg/base-drafts] Use Section not section (#3629)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb20e255aecb_28223fd3736cd9609668b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fBeuKPyfaGA7z1R0c32NyWPZCMY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 01:08:55 -0000

----==_mimepart_5eb20e255aecb_28223fd3736cd9609668b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3629#pullrequestreview-406252540
----==_mimepart_5eb20e255aecb_28223fd3736cd9609668b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3629#pullrequestreview-406252540">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZSBH4VMIGMEGHFG4DRQC2CLANCNFSM4MZ7UMWA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2L6J5JHNIUNETIVSLRQC2CLA5CNFSM4MZ7UMWKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODA3OX7A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3629#pullrequestreview-406252540",
"url": "https://github.com/quicwg/base-drafts/pull/3629#pullrequestreview-406252540",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb20e255aecb_28223fd3736cd9609668b--


From nobody Tue May  5 18:09:16 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 BE3DE3A0C91 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:09:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 6Ihrjlg2HLKt for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:09:03 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8DB293A0C8E for <quic-issues@ietf.org>; Tue,  5 May 2020 18:09:03 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id A81A4A0548 for <quic-issues@ietf.org>; Tue,  5 May 2020 18:09:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588727342; bh=43QHn81awcvErBBTPL9fy2Q9tkiNBWFxQs9dogN7oiY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yW1mKsnS4ejfSq9xQESr9EdJQqnL5BYx0iNRB4KDUHwIId9rYSCaXG617bOlO7FRs i+klHtHFMEClSKo2+Gy3iJpDlUWzZHKvjdgwcT6olVLf8bNnR9YPwA8/WeocAVltCc UY6KvZwSig5rJvSl2PArVjFmmZyrCnglJZJPV+HI=
Date: Tue, 05 May 2020 18:09:02 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY7MHWK4N7CRBKOBJV4XXXS5EVBNHHCJCIAEE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3629/issue_event/3306552467@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3629@github.com>
References: <quicwg/base-drafts/pull/3629@github.com>
Subject: Re: [quicwg/base-drafts] Use Section not section (#3629)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb20e2e98749_5ffa3fcef22cd96c215e5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nEb8zVSnpkYOiZ3IvSC5UDc12Iw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 01:09:05 -0000

----==_mimepart_5eb20e2e98749_5ffa3fcef22cd96c215e5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3629 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3629#event-3306552467
----==_mimepart_5eb20e2e98749_5ffa3fcef22cd96c215e5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="612958241" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3629" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3629/hovercard" href="https://github.com/quicwg/base-drafts/pull/3629">#3629</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3629#event-3306552467">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7M6P427CSCF46VILTRQC2C5ANCNFSM4MZ7UMWA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZYNPTHHSYCANMM3MLRQC2C5A5CNFSM4MZ7UMWKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYUK7ZEY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3629#event-3306552467",
"url": "https://github.com/quicwg/base-drafts/pull/3629#event-3306552467",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb20e2e98749_5ffa3fcef22cd96c215e5--


From nobody Tue May  5 18:09:40 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 DC17B3A0CA8 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:09:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 7rfGiojO_nRD for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:09:36 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DFCEA3A0CA4 for <quic-issues@ietf.org>; Tue,  5 May 2020 18:09:35 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 409CEC6075B for <quic-issues@ietf.org>; Tue,  5 May 2020 18:09:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588727375; bh=QNXRQf7W+9F0SfpOU83M3hgl6Y+BOekmmvVBt2Hr/0k=; h=Date:From:To:Subject:From; b=lE6G8L5rVJFAr6VR82Y7cbzLAgTP3L5UjdHhrs9dQthUz+RMp8/s8yAqB2X2haFvs SHKkDF+fEBMq5+saIm2M7Dw9wtDdNWc8J8FN31DG1ExMgIUbbSCi4eo9fM/xE8BXyQ dhk/gk8yItd5YXDrV1+qaDS0L3JbvsQ83SIC5Upg=
Date: Tue, 05 May 2020 18:09:35 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/recovery-quoting/266084-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/peqd7AaTJC1rmfnE8Qv1CLr6Xcw>
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: Wed, 06 May 2020 01:09:38 -0000

  Branch: refs/heads/recovery-quoting
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May  5 18:09:47 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 3EBAD3A0CA4 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:09:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 bChkXtm3eLGb for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:09:36 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2487D3A0CA7 for <quic-issues@ietf.org>; Tue,  5 May 2020 18:09:36 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 7AE416A003A for <quic-issues@ietf.org>; Tue,  5 May 2020 18:09:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588727374; bh=5H8Dzo4yVjwlY6EYHzlfmbrAviEhMdmmxUXwWNgT6zg=; h=Date:From:To:Subject:From; b=acMqbXmuwkIxZQ/QdkMT0/tkaQvQI8zHIJtVJkUnFlmrCTN9WjYihylsKdJMWWxzz FW6KjErIw+Gws3ru4EQExRJVddb5yBEJuUU7VREyjseGbySzX3IYQ6tSBbwEDzdBqT YtSqHcXjNt+l6/6WRgc8HdIw1ljtkViSdKooLgZQ=
Date: Tue, 05 May 2020 18:09:34 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/4e9c4e-6c90af@github.com>
Subject: [quicwg/base-drafts] 266084: Quoting in recovery
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bpGUS5b8qw2SHJVhhiCcV0kCxsQ>
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: Wed, 06 May 2020 01:09:39 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 266084226a089ee1df00ebc796e045b0c6418a46
      https://github.com/quicwg/base-drafts/commit/266084226a089ee1df00ebc796e045b0c6418a46
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Quoting in recovery

This fixes some of the quoting issues that I discovered reading the
spec.


  Commit: 6c90af6ebd271f09f740ad49c396ffd38dc72076
      https://github.com/quicwg/base-drafts/commit/6c90af6ebd271f09f740ad49c396ffd38dc72076
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3628 from quicwg/recovery-quoting

Quoting in recovery


Compare: https://github.com/quicwg/base-drafts/compare/4e9c4ee48086...6c90af6ebd27


From nobody Tue May  5 18:09:50 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 84A063A0CAF for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:09:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 pK7xCkzITl4P for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:09:39 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 59FDB3A0CA7 for <quic-issues@ietf.org>; Tue,  5 May 2020 18:09:39 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 911A6121234 for <quic-issues@ietf.org>; Tue,  5 May 2020 18:09:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588727378; bh=riLglBz85vslvsrAsoyD3gJaGQU8WiKo6cnKINkXT1M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DaWloNDFgHv5NClrnGFxpdcsBlH3tClWpR1tI6E3NGEgOD+ICH9l/8OEuFiZ1YZVI SjbuCnquMywOlinOmSFuV/Qgd44xHALozCu/myi7BYxBGC4/ZnDZAMVUiLmrRsPpOH WcbiwYBAfGFPNNOH6uxEgFzRGHiG9sGZmihA+LIc=
Date: Tue, 05 May 2020 18:09:38 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3DEW22GTX3VNPYNZV4XXXVFEVBNHHCJCHZ4Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3628/review/406252741@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3628@github.com>
References: <quicwg/base-drafts/pull/3628@github.com>
Subject: Re: [quicwg/base-drafts] Quoting in recovery (#3628)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb20e524c29d_3e933faa95acd96828665"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Ib1sshA_tpA4wbpx-p8gRV-cu4Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 01:09:41 -0000

----==_mimepart_5eb20e524c29d_3e933faa95acd96828665
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3628#pullrequestreview-406252741
----==_mimepart_5eb20e524c29d_3e933faa95acd96828665
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3628#pullrequestreview-406252741">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3NDNYNMUDNHD7HZITRQC2FFANCNFSM4MZ7SKTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7J6DVE4MHHWGBSKGTRQC2FFA5CNFSM4MZ7SKT2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODA3OZRI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3628#pullrequestreview-406252741",
"url": "https://github.com/quicwg/base-drafts/pull/3628#pullrequestreview-406252741",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb20e524c29d_3e933faa95acd96828665--


From nobody Tue May  5 18:09:54 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 548233A0CCA for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:09:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 SwICKiRR0qfi for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:09:46 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AF8F93A0CA9 for <quic-issues@ietf.org>; Tue,  5 May 2020 18:09:46 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 6019F12039F for <quic-issues@ietf.org>; Tue,  5 May 2020 18:09:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588727386; bh=uqOMdSUVlgIVnXzCQYLxw77RkK7fgzz1Lgi3KD/l2z0=; h=Date:From:To:Subject:From; b=iNW2csJIcqCjBAPyTzkw2F9IGMGBuK7E/ZWE4OrdtSJUB3HJlQrfrF+KVy2oIAEA8 2ULTTiwDnZcGJps4Vfv/I+49tTjI6dVpSj7jzPHWaDMPmm1C/7zjfl8H0pV2WGYYwD uaSoBTqavZZJjHaTp8IAY5WPupXBlE/Qq3+B1UWg=
Date: Tue, 05 May 2020 18:09:46 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ead88e-d85b4b@github.com>
Subject: [quicwg/base-drafts] d85b4b: Script updating gh-pages from 4e9c4ee4. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QNp8zIw5Zy_iS-_oc24K5447f-I>
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: Wed, 06 May 2020 01:09:49 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d85b4b42dfc59ee40eb84be091f2eb2977acc371
      https://github.com/quicwg/base-drafts/commit/d85b4b42dfc59ee40eb84be091f2eb2977acc371
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 4e9c4ee4. [ci skip]



From nobody Tue May  5 18:09:57 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 2F7A93A0CA4 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:09:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 hAZxfoG7dKkd for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:09:48 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 783F93A0CCE for <quic-issues@ietf.org>; Tue,  5 May 2020 18:09:48 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id C82E1520027 for <quic-issues@ietf.org>; Tue,  5 May 2020 18:09:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588727386; bh=Bxl6IubfV+xjE+IOKW36HPLVfGOpXKJ3x/zx89jmsPs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=U6kB0AV9bAiyXXW7PYe8QIl1gOAwLJl0Fo1tuuFSKlZWyIV8AOdYt2xoQwBOSVK1w kJY74nbSfD69GeiZYcG+R71isV1G+y3m5+MBPIKfHdjViWg5e6pZZMOPwVhHH1Ge2x GluPBvQRnvCSex/NMHv3/8KsSS9bAiIcpYX7SAhQ=
Date: Tue, 05 May 2020 18:09:46 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYXRBUHOYWQNLDCPYF4XXXVVEVBNHHCJCHZ4Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3628/issue_event/3306553923@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3628@github.com>
References: <quicwg/base-drafts/pull/3628@github.com>
Subject: Re: [quicwg/base-drafts] Quoting in recovery (#3628)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb20e5ab7049_12f33fe8f74cd9641794d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LWs0n2Tutme2KQJmgNhu7-QgQA0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 01:09:50 -0000

----==_mimepart_5eb20e5ab7049_12f33fe8f74cd9641794d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3628 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3628#event-3306553923
----==_mimepart_5eb20e5ab7049_12f33fe8f74cd9641794d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="612956646" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3628" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3628/hovercard" href="https://github.com/quicwg/base-drafts/pull/3628">#3628</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3628#event-3306553923">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5LOV4TIKO6HQOQOETRQC2FVANCNFSM4MZ7SKTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3FGEZK6V467IXQLXTRQC2FVA5CNFSM4MZ7SKT2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYULAEQY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3628#event-3306553923",
"url": "https://github.com/quicwg/base-drafts/pull/3628#event-3306553923",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb20e5ab7049_12f33fe8f74cd9641794d--


From nobody Tue May  5 18:11:21 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 097E23A0CA8 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:11:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 DF3qkaozPdzN for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 18:11:18 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 112433A0CA7 for <quic-issues@ietf.org>; Tue,  5 May 2020 18:11:18 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 9ED2C121274 for <quic-issues@ietf.org>; Tue,  5 May 2020 18:11:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588727477; bh=Pr8TNWSyAGwpa/OtSG3PixAeyes/8Sg9HZGj8nYf6ac=; h=Date:From:To:Subject:From; b=Gy+9S/563he5EVG6qn6u868cwMhk/MRQdCqfWHZ2byblMzHu7Pq/Yv/oDyy8ktE/z If7L9/viAc7AxNVXevzORonmGzW+882Mi06Qz/lo7fQzxaWqf/mkGN3li797LWFIal 7+8ulAJP6bNGAp2XmaPljhsGJj0oDyHhJGfMGMng=
Date: Tue, 05 May 2020 18:11:17 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d85b4b-ec6273@github.com>
Subject: [quicwg/base-drafts] ec6273: Script updating gh-pages from 6c90af6e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/g_g-0h9TWzGGwB7q95rowyW1qPg>
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: Wed, 06 May 2020 01:11:20 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ec6273977faa377f0a964789e104e553d94a5ba2
      https://github.com/quicwg/base-drafts/commit/ec6273977faa377f0a964789e104e553d94a5ba2
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6c90af6e. [ci skip]



From nobody Tue May  5 19:11:37 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 A122D3A0CF3 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 19:11:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 VF6NYrFXCXeq for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 19:11:34 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4EA113A0CD8 for <quic-issues@ietf.org>; Tue,  5 May 2020 19:11:34 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 1A4FAE1622 for <quic-issues@ietf.org>; Tue,  5 May 2020 19:11:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588731093; bh=P+KT+22NPjlDLkjj0nD51eBflfIexHH7qRbWm8CLhcY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AMwDt2agZhXiA89lfC/SMoERf1bMt6pPs4IijewdWVV12FEFgnpZSyRiBnMyjU6e+ ad94rEvsGeqFzqy1D/7EVpoigCZCwnC8FENiRPJN7QS5Vt9bxkkr3w2uqrGoxhWAaL npHOMnC7USgu4MB8BKvP3pUT/y1FAkP/iSrRk1yk=
Date: Tue, 05 May 2020 19:11:33 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYHTVH7U3UEIQBNXT54XX65LEVBNHHCJCFMZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3627/review/406267077@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3627@github.com>
References: <quicwg/base-drafts/pull/3627@github.com>
Subject: Re: [quicwg/base-drafts] [qpack] Remove backticks (#3627)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb21cd5ab46_16713ff60d2cd95c1109e9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LGgfk9jQuGmD4yfg0idagnorGdQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 02:11:36 -0000

----==_mimepart_5eb21cd5ab46_16713ff60d2cd95c1109e9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.

WFM.  Thanks.  I was never clear on whether "Base" or "Required Insert Count" referred to pseudocode variables or not.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3627#pullrequestreview-406267077
----==_mimepart_5eb21cd5ab46_16713ff60d2cd95c1109e9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>

<p>WFM.  Thanks.  I was never clear on whether "Base" or "Required Insert Count" referred to pseudocode variables or not.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3627#pullrequestreview-406267077">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY5BX5HPMEKOAFTHTTRQDBNLANCNFSM4MZ6X3NQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYGFP6UUEADYP5SBWDRQDBNLA5CNFSM4MZ6X3N2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODA3SJRI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3627#pullrequestreview-406267077",
"url": "https://github.com/quicwg/base-drafts/pull/3627#pullrequestreview-406267077",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb21cd5ab46_16713ff60d2cd95c1109e9--


From nobody Tue May  5 22:09:33 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 6570C3A0C8A for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:09:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 R1qxXzhDxTL9 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:09:29 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B5E093A0D58 for <quic-issues@ietf.org>; Tue,  5 May 2020 22:09:29 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 74111E0032 for <quic-issues@ietf.org>; Tue,  5 May 2020 22:09:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588741768; bh=w2mE7U3Iw7qDik1iukJpI05xz0C+2HcR/XwqKs3V0HQ=; h=Date:From:To:Subject:From; b=gw/+p1t2GzIEzeBKsrUQlV2Qw23gRwQgWrN0cVnE+OkBXQDrk4WLRekMjqTFc6p1K oDZueojFCJZV7gXzf7O4gHF4uiGIr35QmHWBoqGvxoWE0AzZpIHCG+Wvy2O6P5C0SJ LtPDmAZz/DHtk72tIUCBiGtJ39vSBbd6ugh2egRQ=
Date: Tue, 05 May 2020 22:09:28 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/000000-ca9cd6@github.com>
Subject: [quicwg/base-drafts] ca9cd6: A pacing algorithm
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UunVR_2IkV1_j2y0alEPEy4vzCc>
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: Wed, 06 May 2020 05:09:31 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: ca9cd611945a5d0e97bba3b677a0614ce1e091ee
      https://github.com/quicwg/base-drafts/commit/ca9cd611945a5d0e97bba3b677a0614ce1e091ee
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  A pacing algorithm

This isn't code, because I don't think we need to do any more than point
at the leaky bucket algorithm, but it does provide more concrete advice
than we've had.

It removes the reference to fqdisc as that isn't especially helpful, as
the original issue observes.

Closes #3122.



From nobody Tue May  5 22:10:33 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 76FF23A0D5C for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:10:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 QmgER0jI1G47 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:10:30 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4CAA33A0D58 for <quic-issues@ietf.org>; Tue,  5 May 2020 22:10:30 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 61BD61C088F for <quic-issues@ietf.org>; Tue,  5 May 2020 22:10:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588741829; bh=fPmyccScFbJZ8t/P7s8NWIFP+Yutf+OwnMziLxrGGj8=; h=Date:From:To:Subject:From; b=bwvLiTO4PGl/IBhPjZFu+DFMtwkGS1I2FxwlqHwq1fhL2S6OFw6+5yBgPGuzRdOZ8 zqO0jPs7M+3b3/Wu3DF2IDYuBBhSEiRNg9WghdZq7Os8Y+ZaEC+tjHVKm2M+xHTfbI 5oPnw8Zc1tdZTqSx2NlrCWLPflsiRmNgyDCSr30A=
Date: Tue, 05 May 2020 22:10:29 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ec6273-826cff@github.com>
Subject: [quicwg/base-drafts] 826cff: Script updating gh-pages from ca9cd611. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/w0dPVsG4psZVA_8A6CERTZ5uYNc>
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: Wed, 06 May 2020 05:10:32 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 826cff80efd0319cb98fb05c588f2ba69546bf5a
      https://github.com/quicwg/base-drafts/commit/826cff80efd0319cb98fb05c588f2ba69546bf5a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M index.html
    A pacing-dfn/draft-ietf-quic-http.html
    A pacing-dfn/draft-ietf-quic-http.txt
    A pacing-dfn/draft-ietf-quic-invariants.html
    A pacing-dfn/draft-ietf-quic-invariants.txt
    A pacing-dfn/draft-ietf-quic-qpack.html
    A pacing-dfn/draft-ietf-quic-qpack.txt
    A pacing-dfn/draft-ietf-quic-recovery.html
    A pacing-dfn/draft-ietf-quic-recovery.txt
    A pacing-dfn/draft-ietf-quic-tls.html
    A pacing-dfn/draft-ietf-quic-tls.txt
    A pacing-dfn/draft-ietf-quic-transport.html
    A pacing-dfn/draft-ietf-quic-transport.txt
    A pacing-dfn/index.html

  Log Message:
  -----------
  Script updating gh-pages from ca9cd611. [ci skip]



From nobody Tue May  5 22:11:06 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 43C933A0D5C for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:11:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ImMDv4yOMcvG for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:11:04 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 158FE3A0D58 for <quic-issues@ietf.org>; Tue,  5 May 2020 22:11:04 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 60C6E1C050A for <quic-issues@ietf.org>; Tue,  5 May 2020 22:11:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588741863; bh=oTcqRyNjkn4DKkqhEbZYEH6BSjn8wL+m9i9t89nHJhk=; h=Date:From:To:Subject:From; b=FTf9RqbgwpeyGkcTx3ahhP4GQuB+Z8qTT8kmznyJ0TF5MSfYTRAhGk11Q37A592Ah D6FlZUszCiM+rgMKxR+dxgkwsga0Q7nsX9IW6wH9FdsVklwaKEFPbkh4cHo4gJdNt4 ObW1BeHrGO+HZ2P0yUu5wxLgEDuUPnbx1b6AhEGk=
Date: Tue, 05 May 2020 22:11:03 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/826cff-73a2df@github.com>
Subject: [quicwg/base-drafts] 73a2df: Script updating archive at 2020-05-06T05:10:45Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XxkpB6GRFrYjK1ib8REgz8IkZ78>
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: Wed, 06 May 2020 05:11:05 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 73a2dfa876207a68dfbf71b32cc237cbb2229f75
      https://github.com/quicwg/base-drafts/commit/73a2dfa876207a68dfbf71b32cc237cbb2229f75
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-06T05:10:45Z. [ci skip]



From nobody Tue May  5 22:16:34 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 8C94B3A0D64 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:16:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 gotQlXaOlurc for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:16:31 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 583163A0D63 for <quic-issues@ietf.org>; Tue,  5 May 2020 22:16:31 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 984E2C60992 for <quic-issues@ietf.org>; Tue,  5 May 2020 22:16:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588742190; bh=7SQV4CFpNB2kVhVWc9eZ6AVukVgtGfVKi+gYN5JkktA=; h=Date:From:To:Subject:From; b=AGKqr9FLB90IcZMbzP9+WKVqsp3ma36bbzhX9Esk8ytKktjBco97IILpvG6bJzINb ia7xXAA2bFUNHUxA9pYKbSL3o7rErMGI5OWN+J0DIecZVYIcK2/W/DyWwu5SEWeIXT GacGqDlxes5/GC/Y+rmwBCgoTO9xlZ3s6tuf9DV8=
Date: Tue, 05 May 2020 22:16:30 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/ca9cd6-f00116@github.com>
Subject: [quicwg/base-drafts] f00116: A pacing algorithm
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vxEMO_Iy9F76evy-IYX8mWtblL8>
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: Wed, 06 May 2020 05:16:33 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: f001162b89055fad7e837b6f2847277ff0f20177
      https://github.com/quicwg/base-drafts/commit/f001162b89055fad7e837b6f2847277ff0f20177
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  A pacing algorithm

This isn't code, because I don't think we need to do any more than point
at the leaky bucket algorithm, but it does provide more concrete advice
than we've had.

It removes the reference to fqdisc as that isn't especially helpful, as
the original issue observes.

Closes #3122.



From nobody Tue May  5 22:17:36 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 BA8313A0D64 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:17:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 AMIH9fQteUig for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:17:31 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A71433A0D32 for <quic-issues@ietf.org>; Tue,  5 May 2020 22:17:31 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 943F52C16D0 for <quic-issues@ietf.org>; Tue,  5 May 2020 22:17:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588742250; bh=tM8NuCIqEMFVPAI0Bn/sZRQ2W2CxkX8MVSUY1G3luq4=; h=Date:From:To:Subject:From; b=H3HT0fNb+kD+MEjiL/scA6HDod/sTe9fvdEYGzFvNUM2XBpBcceR9XslxYLtqn9uq 5spzFM5DRtb96igUueqFxsnVSs40LK4yPD2APVjLNj9dPCuO7AVUA2TO4Z7djdbytE pBuNvNPbee8A9qauoq7zK4NLfybV2ZU8rsIjOMMY=
Date: Tue, 05 May 2020 22:17:30 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/73a2df-ee80ee@github.com>
Subject: [quicwg/base-drafts] ee80ee: Script updating gh-pages from f001162b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_2-7vU0Ch_IavCX0H_VjbjOZywk>
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: Wed, 06 May 2020 05:17:34 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ee80eec03e7200d928b1b7c5be2035ac3813ad0d
      https://github.com/quicwg/base-drafts/commit/ee80eec03e7200d928b1b7c5be2035ac3813ad0d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt

  Log Message:
  -----------
  Script updating gh-pages from f001162b. [ci skip]



From nobody Tue May  5 22:19:39 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 D1AB73A0D66 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:19:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.696
X-Spam-Level: 
X-Spam-Status: No, score=-1.696 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 M8vtNWyh59sC for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:19:37 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 52B213A0D64 for <quic-issues@ietf.org>; Tue,  5 May 2020 22:19:37 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id A0B5D96056B for <quic-issues@ietf.org>; Tue,  5 May 2020 22:19:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588742376; bh=0jNcNZIhjcuz3q92bZuZPqmOrGssO6BOkLx7nRcrHRo=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=rShc4lxfhio/8HlOfjPdpweLmkAvc8Wy6CTqrLc8p8cahM9r0er99ytEVORIfBdof 8vfKwBRKKEx11/OVboRTfmpfy6Qj285OXIWC6qwLBhbzRjhu+YrwLNjyjkGGGruEVa w6vIbVdyFvRN6QgbM+ba3gmFEmTkRAKG1xjS8ZXU=
Date: Tue, 05 May 2020 22:19:36 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6UVFCV3FWZFUVNMVV4XYU6REVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630@github.com>
Subject: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb248e890d8d_2a383fe4abacd968717777"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CagQIG4O-TW3VmeYddzrlghSIE8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 05:19:39 -0000

----==_mimepart_5eb248e890d8d_2a383fe4abacd968717777
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This isn&#39;t code, because I don&#39;t think we need to do any more than point
at the leaky bucket algorithm, but it does provide more concrete advice
than we&#39;ve had.

It removes the reference to fqdisc as that isn&#39;t especially helpful, as
the original issue observes.

Closes #3122.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3630

-- Commit Summary --

  * A pacing algorithm

-- File Changes --

    M draft-ietf-quic-recovery.md (26)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3630.patch
https://github.com/quicwg/base-drafts/pull/3630.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630

----==_mimepart_5eb248e890d8d_2a383fe4abacd968717777
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This isn't code, because I don't think we need to do any more than point<br>
at the leaky bucket algorithm, but it does provide more concrete advice<br>
than we've had.</p>
<p>It removes the reference to fqdisc as that isn't especially helpful, as<br>
the original issue observes.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3122.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="508857302" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3122" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3122/hovercard" href="https://github.com/quicwg/base-drafts/issues/3122">#3122</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3630'>https://github.com/quicwg/base-drafts/pull/3630</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>A pacing algorithm</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3630/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (26)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3630.patch'>https://github.com/quicwg/base-drafts/pull/3630.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3630.diff'>https://github.com/quicwg/base-drafts/pull/3630.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZDI43IGYDNMLJDM73RQDXORANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6CMLBWRLJ4OH3FK23RQDXORA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JEKQHUQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630",
"url": "https://github.com/quicwg/base-drafts/pull/3630",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb248e890d8d_2a383fe4abacd968717777--


From nobody Tue May  5 22:25:53 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 7E73A3A0D6C for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:25:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 mL6Fbt_2QOAd for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:25:49 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DD5803A0D6B for <quic-issues@ietf.org>; Tue,  5 May 2020 22:25:49 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id E7D95282B79 for <quic-issues@ietf.org>; Tue,  5 May 2020 22:25:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588742748; bh=20p6J4e46jJ09Vfm/Z1fiX2ixuN9fCjDiysfTKle3kQ=; h=Date:From:To:Subject:From; b=Ax7wePJiEhUtT67r2Ot7IPAsCb6/bYZLn1kBOShv642Fx4cl/wBNWYaQttw+ev2iA 9f0EyEJKa7VrJckaLPDglk0fDAPXkuQA/6r1dk+PWuPkPKev5k2KLtwHjj6LCSC8RW OYooX+h++GuFOYnZMcm7JkNXkh8xOQbJXsLZ23w8=
Date: Tue, 05 May 2020 22:25:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/f00116-561df0@github.com>
Subject: [quicwg/base-drafts] 561df0: Forgot to include smoothed_rtt in the description
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TW7SIHHnw8G6FPule1kRZ9XNtdQ>
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: Wed, 06 May 2020 05:25:52 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: 561df07e9b817460e4006266af1e0acee19c0f8a
      https://github.com/quicwg/base-drafts/commit/561df07e9b817460e4006266af1e0acee19c0f8a
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Forgot to include smoothed_rtt in the description



From nobody Tue May  5 22:26:02 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 255763A0D6D for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:26:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 0TQ7bppfzLc7 for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:26:00 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E83113A0D6C for <quic-issues@ietf.org>; Tue,  5 May 2020 22:25:59 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 773211213C1 for <quic-issues@ietf.org>; Tue,  5 May 2020 22:25:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588742759; bh=VQMQLdobYVXcg2xIzxFL54Wd1TZb5/UTM1zXOYfD3co=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=I2rowAhMxgylO3uAUbQA0jn2wY62YsR7nhoI/C4Hcxy3idJSlnUBag1/YmwpDNekk p7uDQ/RGdVIhg3lb/OuVfuuRSRr3pDpqDb5VO/oEvn5LWjouxk0WNcc6vKoPo8SS74 VwsujJBEnhLGLChtVR7BH3TjDjtlAbo7qXNR8hmY=
Date: Tue, 05 May 2020 22:25:59 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/push/5027424133@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb24a675181e_3e5a3faa95acd96839964f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bJkiM-VirctGF7dxwe1LLTlzELo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 05:26:01 -0000

----==_mimepart_5eb24a675181e_3e5a3faa95acd96839964f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

561df07e9b817460e4006266af1e0acee19c0f8a  Forgot to include smoothed_rtt in the description


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630/files/f001162b89055fad7e837b6f2847277ff0f20177..561df07e9b817460e4006266af1e0acee19c0f8a

----==_mimepart_5eb24a675181e_3e5a3faa95acd96839964f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/561df07e9b817460e4006266af1e0acee19c0f8a">561df07</a>  Forgot to include smoothed_rtt in the description</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3630/files/f001162b89055fad7e837b6f2847277ff0f20177..561df07e9b817460e4006266af1e0acee19c0f8a">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7M5MV4FX3F6DTJNNTRQDYGPANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYSN3JYTOTDABIKB63RQDYGPA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTGOBYGMYDOOKQOVZWQIZVGAZDONBSGQYTGMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630/files/f001162b89055fad7e837b6f2847277ff0f20177..561df07e9b817460e4006266af1e0acee19c0f8a",
"url": "https://github.com/quicwg/base-drafts/pull/3630/files/f001162b89055fad7e837b6f2847277ff0f20177..561df07e9b817460e4006266af1e0acee19c0f8a",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb24a675181e_3e5a3faa95acd96839964f--


From nobody Tue May  5 22:26:33 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 2C0DD3A0D6D for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:26:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 TOppWjJm2ZLz for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 22:26:30 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B1BDC3A0D6E for <quic-issues@ietf.org>; Tue,  5 May 2020 22:26:30 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 67EE21212C1 for <quic-issues@ietf.org>; Tue,  5 May 2020 22:26:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588742790; bh=njrx+KUJS5a44Sk9482yXyiRNz21s+XJJ66paXE7l+g=; h=Date:From:To:Subject:From; b=Y6f9lbn4TF/iG5SWM7yaLkT6Qyc81yztfPR0ch8RYqDl7H95l2XpS0nGoU/4dhGZE bY6cvIquhcXvMt/81AE/W5dKl24RPsHCHkB6BJxVfMeFBPZuRNeWGUh7VpngEl86vS y2UBqugOuinsjaC3SemkVyUk0Xo2h8+W5yDmiEw4=
Date: Tue, 05 May 2020 22:26:30 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ee80ee-9e45b1@github.com>
Subject: [quicwg/base-drafts] 9e45b1: Script updating gh-pages from 561df07e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1PNKSyP8pWkVKdMgqKTlp6JrCs0>
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: Wed, 06 May 2020 05:26:32 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9e45b17d26b87a0407ed07994ff3bac06e9e077f
      https://github.com/quicwg/base-drafts/commit/9e45b17d26b87a0407ed07994ff3bac06e9e077f
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt

  Log Message:
  -----------
  Script updating gh-pages from 561df07e. [ci skip]



From nobody Tue May  5 23:56:03 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 79CA23A074E for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 23:56:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.098
X-Spam-Level: 
X-Spam-Status: No, score=-7.098 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, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 1kBUMGz-JcaO for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 23:56:00 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 16A673A074D for <quic-issues@ietf.org>; Tue,  5 May 2020 23:55:59 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 6A5DDE004E for <quic-issues@ietf.org>; Tue,  5 May 2020 23:55:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588748158; bh=NXaoOG+fo8sXayJpVx8VKB4F72FqCHToJW+kZsi0zS0=; h=Date:From:To:Subject:From; b=eQYTSUfwpaOf4JY2q4YIVXN7uw4GmDcT5Q7RG0XL4FDh/C5ds1DoedwiSSFEO0S3z cYD7VEYSnR+DB6AGfziq9LkVSsmRS4wED5TbkaVBt/bXdWlr1yFwYovg744xUfw98f /fc3luoEdRu4gspsG1ReqwJdmk70qNKfcRi8ZsGo=
Date: Tue, 05 May 2020 23:55:58 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgery-limit/2417e9-f94409@github.com>
Subject: [quicwg/base-drafts] 4b2f0c: Update link
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/seAmkGd1bLBDM8qgNw-oxJESHak>
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: Wed, 06 May 2020 06:56:02 -0000

  Branch: refs/heads/forgery-limit
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4b2f0cf43f98a5b8f80e258e6f4de369e9ac8856
      https://github.com/quicwg/base-drafts/commit/4b2f0cf43f98a5b8f80e258e6f4de369e9ac8856
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Update link


  Commit: f94409a03ddd7a92cf1c1388e036a3eecf896853
      https://github.com/quicwg/base-drafts/commit/f94409a03ddd7a92cf1c1388e036a3eecf896853
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Keep CCM


Compare: https://github.com/quicwg/base-drafts/compare/2417e9d953bd...f94409a03ddd


From nobody Tue May  5 23:56:21 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 7EC823A074E for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 23:56:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 UT3pHfhsRIba for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 23:56:10 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 015203A074D for <quic-issues@ietf.org>; Tue,  5 May 2020 23:56:09 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 23EFF96099D for <quic-issues@ietf.org>; Tue,  5 May 2020 23:56:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588748169; bh=mUpZDzwlpBrJAmzBazDQoR2BY8PMXLm8qRD2vWeqBcU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=s21tVf4QyVXa2X/EMft5K5UAKca9n37WFoSRTMOzZ9cgT5TrkDLV7pJh8SurDe4ak 3C3+oXou3U2VOUHuw3bDSL+P3wmSj7y7hlnVGi8JER1oXTfeAe5gGNGERr3a8FdgdG 6NDWWVeYJvQUBQ86Mb57GTRN4koWy6/K/ZiWkDMk=
Date: Tue, 05 May 2020 23:56:09 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/push/5027717256@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb25f8913591_65fa3fc7ff0cd9688943b2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PUiSZX-m_wCf4OASDEtcrbJkLSI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 06:56:12 -0000

----==_mimepart_5eb25f8913591_65fa3fc7ff0cd9688943b2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 2 commits.

4b2f0cf43f98a5b8f80e258e6f4de369e9ac8856  Update link
f94409a03ddd7a92cf1c1388e036a3eecf896853  Keep CCM


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620/files/2417e9d953bdae559dd0b2c74406da98dc75c1e1..f94409a03ddd7a92cf1c1388e036a3eecf896853

----==_mimepart_5eb25f8913591_65fa3fc7ff0cd9688943b2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/4b2f0cf43f98a5b8f80e258e6f4de369e9ac8856">4b2f0cf</a>  Update link</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/f94409a03ddd7a92cf1c1388e036a3eecf896853">f94409a</a>  Keep CCM</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3620/files/2417e9d953bdae559dd0b2c74406da98dc75c1e1..f94409a03ddd7a92cf1c1388e036a3eecf896853">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5Q377KPAT5R6MOEC3RQECYTANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5XSLD4RLBLEAAVWRDRQECYTA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTCOJZG4YDIM2QOVZWQIZVGAZDONZRG4ZDKNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620/files/2417e9d953bdae559dd0b2c74406da98dc75c1e1..f94409a03ddd7a92cf1c1388e036a3eecf896853",
"url": "https://github.com/quicwg/base-drafts/pull/3620/files/2417e9d953bdae559dd0b2c74406da98dc75c1e1..f94409a03ddd7a92cf1c1388e036a3eecf896853",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb25f8913591_65fa3fc7ff0cd9688943b2--


From nobody Tue May  5 23:57:06 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 BAF7A3A074D for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 23:56:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 REO0RpBCC9rI for <quic-issues@ietfa.amsl.com>; Tue,  5 May 2020 23:56:56 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 22E0B3A0772 for <quic-issues@ietf.org>; Tue,  5 May 2020 23:56:56 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 4F9BB8C0026 for <quic-issues@ietf.org>; Tue,  5 May 2020 23:56:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588748215; bh=V5hu2hE2cW4iHXB8wMcxFO4XlRJ571E15OK6y4edGIQ=; h=Date:From:To:Subject:From; b=OSDg5kBEUulwc1rufD2XD6/4bmtaRZnFP18YQvfnd5rp6hKXen/0OI7U2ChxjZfgA IXBiUlNXoqw6/Zw4AMhEOVPxsDs7hM6dqSk9aUlulLXz74JRvVpFcOZ8C11x5bdLb1 eb6I7dJNT/kGVZOX1EPEDFbfQPj7eLChUA29VmCE=
Date: Tue, 05 May 2020 23:56:55 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/9e45b1-c253b5@github.com>
Subject: [quicwg/base-drafts] c253b5: Script updating gh-pages from f94409a0. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qUXk3ejkSzBJ9NVsXFuUOBmlOdE>
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: Wed, 06 May 2020 06:57:04 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c253b5a63a584f43194a77a6ce00902c3810595d
      https://github.com/quicwg/base-drafts/commit/c253b5a63a584f43194a77a6ce00902c3810595d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-http.html
    M forgery-limit/draft-ietf-quic-http.txt
    M forgery-limit/draft-ietf-quic-invariants.html
    M forgery-limit/draft-ietf-quic-invariants.txt
    M forgery-limit/draft-ietf-quic-qpack.html
    M forgery-limit/draft-ietf-quic-qpack.txt
    M forgery-limit/draft-ietf-quic-recovery.html
    M forgery-limit/draft-ietf-quic-recovery.txt
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from f94409a0. [ci skip]



From nobody Wed May  6 00:08:44 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 8652C3A0798 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 00:08:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.48
X-Spam-Level: 
X-Spam-Status: No, score=-6.48 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 VqV3YWTHs05u for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 00:08:41 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 264B63A00C1 for <quic-issues@ietf.org>; Wed,  6 May 2020 00:08:41 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 21A0DA043B for <quic-issues@ietf.org>; Wed,  6 May 2020 00:08:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588748920; bh=gi7R7nu/2cYumUXXH5CMZdF+XHyN9NPRmZrMPAOkS+c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hub/o6JTMMBlTxLmTAAAJG+7Okcs9cEE1yQn//NHupwlNdTOnkutfKzYmMfWlFuJL QNhOLPsIbmEpqOq3iuoD3EmaPA0+oIvuoyi0eJ1LkmcKRAzKHFARKE6f1btu42h4zm VBAoN+LM5nl08uSLAUC/b3MmCRbCFXH858T4hvEw=
Date: Wed, 06 May 2020 00:08:40 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZPFXWLRDSH3OJM4SF4XZBXREVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/624479890@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb2627812638_56553ff22accd95c7511a8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/a9cr2W7_jTbsYY-qXnXOMHfigCM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 07:08:43 -0000

----==_mimepart_5eb2627812638_56553ff22accd95c7511a8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks for checking this @fxguenther.  I was a little concerned about the PRP/PRF split, so I'm glad to have you correct me.

I ultimately went with per-AEAD recommendations, and a lower limit for CCM.  That's mainly to establish some sort of uniformity around 2^-60 and 2^-57.  Even if those are basically arbitrary choices, at least I think they are defensible and using them uniformly establishes the right expectations about what the standard is.

I'm comfortable with specifying different limits for each AEAD in specifications.  In practice, however, I expect that a far lower tolerance for forgery attempts.

Assuming that these numbers work out, a review of the pull request would be greatly appreciated.  If there are other relevant papers, I'm always happy to pull those in as well.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-624479890
----==_mimepart_5eb2627812638_56553ff22accd95c7511a8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Thanks for checking this <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/fxguenther/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/fxguenther">@fxguenther</a>.  I was a little concerned about the PRP/PRF split, so I'm glad to have you correct me.</p>
<p>I ultimately went with per-AEAD recommendations, and a lower limit for CCM.  That's mainly to establish some sort of uniformity around 2^-60 and 2^-57.  Even if those are basically arbitrary choices, at least I think they are defensible and using them uniformly establishes the right expectations about what the standard is.</p>
<p>I'm comfortable with specifying different limits for each AEAD in specifications.  In practice, however, I expect that a far lower tolerance for forgery attempts.</p>
<p>Assuming that these numbers work out, a review of the pull request would be greatly appreciated.  If there are other relevant papers, I'm always happy to pull those in as well.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-624479890">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4BLMXKF6LY2U4SKXTRQEEHRANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK572BQDT3FGO2LKDGDRQEEHRA5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEU4M5EQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-624479890",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-624479890",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb2627812638_56553ff22accd95c7511a8--


From nobody Wed May  6 00:13:38 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 2564B3A079D for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 00:13:37 -0700 (PDT)
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, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, 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 hWKpaVvIB_0h for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 00:13:33 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B466B3A0798 for <quic-issues@ietf.org>; Wed,  6 May 2020 00:13:33 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 9734A2C0E89 for <quic-issues@ietf.org>; Wed,  6 May 2020 00:13:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588749212; bh=XXVLqF/EO7HomDZVZQHRu1dupMCJjIWdjtScDCL7+X8=; h=Date:From:To:Subject:From; b=yKhJfCZg+fVukheR9ekSdabm+9zyhSSPqBClz9YgpdV82uikgYNVhR5XX5RUpn73w WVBM/83OMVoDkMyR/OcoGnR9S10+3oHBr/J4h7oYROmZxAB8i29Xox/1mNr2V0kR38 oKJS8XPnEgBzFw56mq2KSL7LA46T9WIP1k6CyqM0=
Date: Wed, 06 May 2020 00:13:32 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgery-limit/f94409-5efe1d@github.com>
Subject: [quicwg/base-drafts] 66fb29: Why min CWND of 2 instead of 1
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/aTGBvwJx3ObEfmt1Hx1tEhLU3ZE>
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: Wed, 06 May 2020 07:13:37 -0000

  Branch: refs/heads/forgery-limit=0D
  Home:   https://github.com/quicwg/base-drafts=0D
  Commit: 66fb2929883fc076683392c81be00c2b6936ad82=0D
      https://github.com/quicwg/base-drafts/commit/66fb2929883fc076683392=
c81be00c2b6936ad82=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-19 (Sun, 19 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Why min CWND of 2 instead of 1=0D
=0D
Feel free to suggest better text or other reasons, but this is what I cam=
e up with.=0D
=0D
Fixes #3261=0D
=0D
=0D
  Commit: 6d95aa65d4366e6474de8b61f964e99ffd9a996b=0D
      https://github.com/quicwg/base-drafts/commit/6d95aa65d4366e6474de8b=
61f964e99ffd9a996b=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 1225aad461e601e2cfec4e354a8b34704f633f81=0D
      https://github.com/quicwg/base-drafts/commit/1225aad461e601e2cfec4e=
354a8b34704f633f81=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: d214bfdcdc246bc0955acf834fc64c3d463ab2d6=0D
      https://github.com/quicwg/base-drafts/commit/d214bfdcdc246bc0955acf=
834fc64c3d463ab2d6=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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: ce6ab3402520ed0931bafed333a3ab3cddf73903=0D
      https://github.com/quicwg/base-drafts/commit/ce6ab3402520ed0931bafe=
d333a3ab3cddf73903=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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: 5580b7a57d7fa5f1585f598751f9930b4480c01a=0D
      https://github.com/quicwg/base-drafts/commit/5580b7a57d7fa5f1585f59=
8751f9930b4480c01a=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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: 72c7eced88de7b859edf4d1f093277851433ab8a=0D
      https://github.com/quicwg/base-drafts/commit/72c7eced88de7b859edf4d=
1f093277851433ab8a=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-21 (Tue, 21 Apr 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
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: b41c848f281bda976192136c6281185808c5e021=0D
      https://github.com/quicwg/base-drafts/commit/b41c848f281bda97619213=
6c6281185808c5e021=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Define the use of generic TLS alerts=0D
=0D
This was already permitted by the transport document, but it was not=0D
adequately explained.  The example that tripped us up was ALPN, which=0D
has received a bit of attention here.=0D
=0D
Closes #3580.=0D
=0D
=0D
  Commit: 475242d0c9ca9e32113c90859748c7adf577fdfc=0D
      https://github.com/quicwg/base-drafts/commit/475242d0c9ca9e32113c90=
859748c7adf577fdfc=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Tweaks from review=0D
=0D
=0D
  Commit: cb3e9a4961fffdba7493a77b0db2d73f63f072ca=0D
      https://github.com/quicwg/base-drafts/commit/cb3e9a4961fffdba7493a7=
7b0db2d73f63f072ca=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarify anti-deadlock Handshake PTO=0D
=0D
This is what the pseudocode says, but I couldn't find anywhere in the tex=
t that clarified that if there were no ack-eliciting packets to arm PTO f=
rom, use Now().=0D
=0D
=0D
  Commit: 05c12786fd19607933556d87eb28bfe1111b6c27=0D
      https://github.com/quicwg/base-drafts/commit/05c12786fd19607933556d=
87eb28bfe1111b6c27=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: eac517cfa6e3e58dd1caf817ee2218513204b905=0D
      https://github.com/quicwg/base-drafts/commit/eac517cfa6e3e58dd1caf8=
17ee2218513204b905=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 8e68ce6266e405fd56b90753737d641be8e7ba50=0D
      https://github.com/quicwg/base-drafts/commit/8e68ce6266e405fd56b907=
53737d641be8e7ba50=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  DPLPMTUD fixes=0D
=0D
A few minor tweaks based on review of the latest DPLPMTUD draft.=0D
=0D
If I never have to type DPLPMTUD ever again, I'll be happy.=0D
=0D
Closes #3217.=0D
=0D
=0D
  Commit: cef47aeb28cab88c401968cc4039f6d262e0a7db=0D
      https://github.com/quicwg/base-drafts/commit/cef47aeb28cab88c401968=
cc4039f6d262e0a7db=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update pseudocode to not arm PTO..=0D
=0D
For ApplicationData until the handshake is complete.=0D
=0D
=0D
  Commit: f53564576b1aac2aeb58abaf12e63c7b6c9ee91c=0D
      https://github.com/quicwg/base-drafts/commit/f53564576b1aac2aeb58ab=
af12e63c7b6c9ee91c=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Remove trailing spaces=0D
=0D
=0D
  Commit: d9ed15b2424498cfc8f593392e0971b92d75524f=0D
      https://github.com/quicwg/base-drafts/commit/d9ed15b2424498cfc8f593=
392e0971b92d75524f=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 2c874dc1c477a7d8f07d5ad232251c73069f0a97=0D
      https://github.com/quicwg/base-drafts/commit/2c874dc1c477a7d8f07d5a=
d232251c73069f0a97=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  More explicit 'probe for the MTU'=0D
=0D
=0D
  Commit: 5fd61877c43e2f7c4788f084c177aa658a1fed46=0D
      https://github.com/quicwg/base-drafts/commit/5fd61877c43e2f7c4788f0=
84c177aa658a1fed46=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-qpack.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Scrub for backticks=0D
=0D
This doesn't do qpack because qpack is weird and needs a lot more work.=0D=

=0D
The places where I kept backticks are for the inline formulae that were=0D=

used for the reserved codepoints.  That seemed like it was worth quoting=0D=

somehow still.  I also kept backticks for references to variables in=0D
examples.=0D
=0D
However, this last principle really hurts in qpack and I don't know what=0D=

to do about that.=0D
=0D
Closes #3609 (we'll need another issue for qpack).=0D
=0D
=0D
  Commit: cb6d26caf615a6fd3e036cc54ac1b881fc6504fd=0D
      https://github.com/quicwg/base-drafts/commit/cb6d26caf615a6fd3e036c=
c54ac1b881fc6504fd=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Helpful tweak to existing text=0D
=0D
=0D
  Commit: 3b2a284675735e2be6b8fe97d977f12ce7df57d2=0D
      https://github.com/quicwg/base-drafts/commit/3b2a284675735e2be6b8fe=
97d977f12ce7df57d2=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Use a list for TLS contributors too=0D
=0D
=0D
  Commit: cedaac6a30fc82ff2c946af54e13dbb8924aa3fd=0D
      https://github.com/quicwg/base-drafts/commit/cedaac6a30fc82ff2c946a=
f54e13dbb8924aa3fd=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Bullet points, now that we can=0D
=0D
=0D
  Commit: 87df8ee7dba9a546a6f8b1ae118eb1d520de55df=0D
      https://github.com/quicwg/base-drafts/commit/87df8ee7dba9a546a6f8b1=
ae118eb1d520de55df=0D
  Author: Julian Reschke <julian.reschke@gmx.de>=0D
  Date:   2020-04-30 (Thu, 30 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  recovery: fix broken reference to TLS, "Discarding Initial Keys"=0D
=0D
=0D
  Commit: 266084226a089ee1df00ebc796e045b0c6418a46=0D
      https://github.com/quicwg/base-drafts/commit/266084226a089ee1df00eb=
c796e045b0c6418a46=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Quoting in recovery=0D
=0D
This fixes some of the quoting issues that I discovered reading the=0D
spec.=0D
=0D
=0D
  Commit: f39b1b711e1934b77984de0d9d1120396c214592=0D
      https://github.com/quicwg/base-drafts/commit/f39b1b711e1934b77984de=
0d9d1120396c214592=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Use Section not section=0D
=0D
=0D
  Commit: a81e74f3a94c44735f38a943d8ad242d6e5adbed=0D
      https://github.com/quicwg/base-drafts/commit/a81e74f3a94c44735f38a9=
43d8ad242d6e5adbed=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Improve description of 'l'=0D
=0D
=0D
  Commit: b192a052bf006dc2689ea526cc80746ab409aff1=0D
      https://github.com/quicwg/base-drafts/commit/b192a052bf006dc2689ea5=
26cc80746ab409aff1=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3606 from quicwg/dplpmtudtdtd=0D
=0D
DPLPMTUD fixes=0D
=0D
=0D
  Commit: dee37615ffed31ac9ff2cd9061ca0e79f866a0ee=0D
      https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd=
9061ca0e79f866a0ee=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3611 from quicwg/transport/contributor_bullets=0D
=0D
Bullet points in Transport Contributors=0D
=0D
=0D
  Commit: d50128221a55d34c05069d4aadd6e2a726e1c9ba=0D
      https://github.com/quicwg/base-drafts/commit/d50128221a55d34c05069d=
4aadd6e2a726e1c9ba=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3604 from quicwg/ianswett-pto-handshake-complete=0D=

=0D
Update pseudocode to not arm PTO..=0D
=0D
=0D
  Commit: 7c19197ca32011ba80fdfbdb12ce330133fe6bde=0D
      https://github.com/quicwg/base-drafts/commit/7c19197ca32011ba80fdfb=
db12ce330133fe6bde=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-04 (Mon, 04 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3621 from quicwg/list-tls-contribs=0D
=0D
Use a list for TLS contributors too=0D
=0D
=0D
  Commit: 66d56893377e52727d620ceb305cd33dc97b3381=0D
      https://github.com/quicwg/base-drafts/commit/66d56893377e52727d620c=
eb305cd33dc97b3381=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-04 (Mon, 04 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3618 from reschke/patch-28=0D
=0D
recovery: fix broken reference to TLS, "Discarding Initial Keys"=0D
=0D
=0D
  Commit: fd1142b09af589b871fb7b84745c7e4c03e80f22=0D
      https://github.com/quicwg/base-drafts/commit/fd1142b09af589b871fb7b=
84745c7e4c03e80f22=0D
  Author: Bence B=C3=A9ky <bnc@google.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  [HTTP/3] Merge two redundant paragraphs on frame ordering.=0D
=0D
=0D
  Commit: 6da585a501ddb3a451b1905db42165402dfc3d27=0D
      https://github.com/quicwg/base-drafts/commit/6da585a501ddb3a451b190=
5db42165402dfc3d27=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-06 (Wed, 06 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-qpack.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3617 from quicwg/backticks=0D
=0D
Scrub for backticks=0D
=0D
=0D
  Commit: 6a1ea10afffb0c1b8047596bc0198619522969c9=0D
      https://github.com/quicwg/base-drafts/commit/6a1ea10afffb0c1b804759=
6bc0198619522969c9=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Initial Contributors=0D
=0D
=0D
  Commit: 1e67d0fb1c81085c81ab5812621111608d824cdf=0D
      https://github.com/quicwg/base-drafts/commit/1e67d0fb1c81085c81ab58=
12621111608d824cdf=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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: b32ab8c350ac15b92b520f7a3b15f7415b22083b=0D
      https://github.com/quicwg/base-drafts/commit/b32ab8c350ac15b92b520f=
7a3b15f7415b22083b=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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: c6a32d20a9d9a05779076434da2884773cf8aefe=0D
      https://github.com/quicwg/base-drafts/commit/c6a32d20a9d9a057790764=
34da2884773cf8aefe=0D
  Author: Lucas Pardue <lucaspardue.24.7@gmail.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  editorial advice for h2<->h3 error propagation (#3602)=0D
=0D
* editorial advice for h2<->h3 error propagation=0D
=0D
* Mike's feedback: invert the advice=0D
=0D
=0D
  Commit: a09979ec646c0bad69f079fb78ed5c8dd1084899=0D
      https://github.com/quicwg/base-drafts/commit/a09979ec646c0bad69f079=
fb78ed5c8dd1084899=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3603 from quicwg/ianswett-deadlock-handshake-pto=0D=

=0D
Clarify anti-deadlock Handshake PTO=0D
=0D
=0D
  Commit: 58a2fbbc75252ee3c8503ead31e5146e5f74349b=0D
      https://github.com/quicwg/base-drafts/commit/58a2fbbc75252ee3c8503e=
ad31e5146e5f74349b=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-06 (Wed, 06 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3601 from quicwg/alpn-generic=0D
=0D
Define the use of generic TLS alerts=0D
=0D
=0D
  Commit: b270451746cc6ae9655ceb30281de6bf6bbdb628=0D
      https://github.com/quicwg/base-drafts/commit/b270451746cc6ae9655ceb=
30281de6bf6bbdb628=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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
Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 9f773931b7c57a232ef9a9814fb664832eb7436e=0D
      https://github.com/quicwg/base-drafts/commit/9f773931b7c57a232ef9a9=
814fb664832eb7436e=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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
Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: c5b9e72880734f6e9e54bcbbd0339d72bdded5bc=0D
      https://github.com/quicwg/base-drafts/commit/c5b9e72880734f6e9e54bc=
bbd0339d72bdded5bc=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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: 9a69f882ff119ab34608b3a750ddc7f4639f3ec1=0D
      https://github.com/quicwg/base-drafts/commit/9a69f882ff119ab34608b3=
a750ddc7f4639f3ec1=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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
Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 1f66975cd3f9cdc5c0fae57376f59177701d8d97=0D
      https://github.com/quicwg/base-drafts/commit/1f66975cd3f9cdc5c0fae5=
7376f59177701d8d97=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3586 from quicwg/ianswett-min-cwnd=0D
=0D
Why min CWND of 2 instead of 1=0D
=0D
=0D
  Commit: 4e9c4ee480862086ae05778160b23c5b27f09f04=0D
      https://github.com/quicwg/base-drafts/commit/4e9c4ee480862086ae0577=
8160b23c5b27f09f04=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3629 from quicwg/section-ref-titlecase=0D
=0D
Use Section not section=0D
=0D
=0D
  Commit: 6c90af6ebd271f09f740ad49c396ffd38dc72076=0D
      https://github.com/quicwg/base-drafts/commit/6c90af6ebd271f09f740ad=
49c396ffd38dc72076=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3628 from quicwg/recovery-quoting=0D
=0D
Quoting in recovery=0D
=0D
=0D
  Commit: 5efe1df7db38536d6b9e2153e5ecb52dacb1105a=0D
      https://github.com/quicwg/base-drafts/commit/5efe1df7db38536d6b9e21=
53e5ecb52dacb1105a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 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
  Merge branch 'master' into forgery-limit=0D
=0D
=0D
Compare: https://github.com/quicwg/base-drafts/compare/f94409a03ddd...5ef=
e1df7db38=0D


From nobody Wed May  6 00:13:49 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 D3D933A079D for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 00:13:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 vcoiGBx-_2h1 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 00:13:46 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 393633A0798 for <quic-issues@ietf.org>; Wed,  6 May 2020 00:13:46 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 8F467282CB7 for <quic-issues@ietf.org>; Wed,  6 May 2020 00:13:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588749225; bh=DYL5IUcZyB8Ujs1IsnsTSgHSLm7jGxQ3axIXgfhc7vk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EMB8XSxaa+KA7PX29zwCYfdgo4VGJRfARAKLAFnhcDMpVgQpG1uf6M8zh5L+SzViS IHCfb1GQ1jDhi9FtZPRfZnCV9rq/DgJr1OnzQxixHNzN5OKhSGWQBl+OAjYWdSfcdp WnUL9oKIhH9i1EG4KaXRe8NzeMk4liA452EEgbgo=
Date: Wed, 06 May 2020 00:13:45 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/push/5027788605@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb263a97e207_766e3fd2c26cd96c67865c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CTFd7N4MKBaWNUzXi3s73TMyNG8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 07:13:48 -0000

----==_mimepart_5eb263a97e207_766e3fd2c26cd96c67865c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 2 commits.

a81e74f3a94c44735f38a943d8ad242d6e5adbed  Improve description of 'l'
5efe1df7db38536d6b9e2153e5ecb52dacb1105a  Merge branch 'master' into forgery-limit


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620/files/f94409a03ddd7a92cf1c1388e036a3eecf896853..5efe1df7db38536d6b9e2153e5ecb52dacb1105a

----==_mimepart_5eb263a97e207_766e3fd2c26cd96c67865c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/a81e74f3a94c44735f38a943d8ad242d6e5adbed">a81e74f</a>  Improve description of &#39;l&#39;</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/5efe1df7db38536d6b9e2153e5ecb52dacb1105a">5efe1df</a>  Merge branch &#39;master&#39; into forgery-limit</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3620/files/f94409a03ddd7a92cf1c1388e036a3eecf896853..5efe1df7db38536d6b9e2153e5ecb52dacb1105a">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7WLD6I6QDCUVLPRYDRQEE2TANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2AVZAGIHHJDBHCW4LRQEE2TA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTCOJZG4YDIM2QOVZWQIZVGAZDONZYHA3DANI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620/files/f94409a03ddd7a92cf1c1388e036a3eecf896853..5efe1df7db38536d6b9e2153e5ecb52dacb1105a",
"url": "https://github.com/quicwg/base-drafts/pull/3620/files/f94409a03ddd7a92cf1c1388e036a3eecf896853..5efe1df7db38536d6b9e2153e5ecb52dacb1105a",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb263a97e207_766e3fd2c26cd96c67865c--


From nobody Wed May  6 00:14:48 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 EC5A33A07A3 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 00:14:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 u9OgPK8hCq48 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 00:14:44 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A62A03A07A0 for <quic-issues@ietf.org>; Wed,  6 May 2020 00:14:44 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 889F7660D06 for <quic-issues@ietf.org>; Wed,  6 May 2020 00:14:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588749283; bh=CIVwtCe72JxwuhagCovbJXjMe6EN10jACGjD05PgKLs=; h=Date:From:To:Subject:From; b=oFDbfemWMgaxYzb5ahyvzAhA6XMsaxQkC++EV+sEXdWDjo2Jipj3134eKlX4wg14l 0XiC5pqgDxwQ7Ko3g98ltKMTMwXh9dMP31ksh3o5D04yk3TlAy1yJc1DCgnxfRYPJC eOjIrWvFmG36ZD82b/9ki2e2C2OzszAaU8Wgi8qA=
Date: Wed, 06 May 2020 00:14:43 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c253b5-fc239d@github.com>
Subject: [quicwg/base-drafts] fc239d: Script updating gh-pages from 5efe1df7. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gJa6mgI1B_Dn3X4XG2wWjimCbb0>
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: Wed, 06 May 2020 07:14:46 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: fc239deec79c17aea4398bde3045b5589f060cd1
      https://github.com/quicwg/base-drafts/commit/fc239deec79c17aea4398bde3045b5589f060cd1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-http.html
    M forgery-limit/draft-ietf-quic-http.txt
    M forgery-limit/draft-ietf-quic-qpack.html
    M forgery-limit/draft-ietf-quic-qpack.txt
    M forgery-limit/draft-ietf-quic-recovery.html
    M forgery-limit/draft-ietf-quic-recovery.txt
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 5efe1df7. [ci skip]



From nobody Wed May  6 00:21:17 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 6F3373A0064 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 00:21:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.555
X-Spam-Level: 
X-Spam-Status: No, score=-6.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZB2zBGm86qXA for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 00:21:15 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0F23E3A00AD for <quic-issues@ietf.org>; Wed,  6 May 2020 00:21:15 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 63840A0D07 for <quic-issues@ietf.org>; Wed,  6 May 2020 00:21:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588749674; bh=DQKhYXX72iQ2E+Y8iGS2ppP9w265lG9RhcrxOl5uTyg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YLBgmu6JfeOBDf02bgqgg3QMBNvd/xgUDPY8haT0gAByq2zoA+Kr90ZNchbI/iC4O 7hs6jkrGjxFruWJHnuKTRitCDaACvG6tOlJxIBzwMVkrZ5VH/MnuKi3Zyjukhexsm0 k5aNiKfdgi0yIvxgaVwQbUQeGcK/iZvEiqoVEWtg=
Date: Wed, 06 May 2020 00:21:14 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4YNZKOZ7XL6XKOPHF4XZDGVEVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/624484456@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb2656a53ddc_40c33fe0fb6cd95c118122f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4CXUfgsIkFgRD1uKLjU_Uvpw31s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 07:21:17 -0000

----==_mimepart_5eb2656a53ddc_40c33fe0fb6cd95c118122f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I realize that I didn't respond to @anrossi.  That advice applies to the limits that TLS specifies already; this issue is primarily about responding to forgeries.

That said, 1G is pretty good advice.  However what we've seen from this analysis that 1G results in a lower safety margin than TLS aims for.  But it's close enough that if the AEAD is as good as the set we have here, you are probably OK.  However, this does depend a lot on the specific AEAD.  I'd be uncomfortable using so simple a guide in the general case.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-624484456
----==_mimepart_5eb2656a53ddc_40c33fe0fb6cd95c118122f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I realize that I didn't respond to <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/anrossi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/anrossi">@anrossi</a>.  That advice applies to the limits that TLS specifies already; this issue is primarily about responding to forgeries.</p>
<p>That said, 1G is pretty good advice.  However what we've seen from this analysis that 1G results in a lower safety margin than TLS aims for.  But it's close enough that if the AEAD is as good as the set we have here, you are probably OK.  However, this does depend a lot on the specific AEAD.  I'd be uncomfortable using so simple a guide in the general case.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-624484456">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZDE33Z5DEBP23SJUTRQEFWVANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6PDPN6Q77IYOPZGE3RQEFWVA5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEU4OA2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-624484456",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-624484456",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb2656a53ddc_40c33fe0fb6cd95c118122f--


From nobody Wed May  6 01:40:12 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 A88A43A005B for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 01:40:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.483
X-Spam-Level: 
X-Spam-Status: No, score=-6.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Mp-dHch5M90p for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 01:40:09 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 296C13A003D for <quic-issues@ietf.org>; Wed,  6 May 2020 01:40:08 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 133DC520CBA for <quic-issues@ietf.org>; Wed,  6 May 2020 01:40:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588754408; bh=BEG5mXiH0ZUA2eOYbk/XtGulKKhh2GQ4kyCi4IT2LFk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TUUT9McUSf57JJOCb2p2zBdA2NfD7d63AJwQy4FbxA3RxOl5Z4MaHv2TSDL35oTfl d099usNk6TDWRlLptfe8crP0w/iZVFE6lJVjsDKGv1Ycd+RF7r2JcjsBS8Q0B8rrNL XRHIcYysvr8h50v4PyMwkkupBjD3YtumBJlIzMOY=
Date: Wed, 06 May 2020 01:40:08 -0700
From: Magnus Westerlund <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZA4SHX2MC5ANXH47F4XZMOREVBNHHCHVTIIM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3585/624517296@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3585@github.com>
References: <quicwg/base-drafts/issues/3585@github.com>
Subject: Re: [quicwg/base-drafts] Text on ECN probing (#3585)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb277e82950_2a2f3fe4abacd968138358c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gloinul
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/f5dXwQNMUA0V15-OxR4juJ-Nkdw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 08:40:11 -0000

----==_mimepart_5eb277e82950_2a2f3fe4abacd968138358c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

So I think there might be a point to indicate the current state of affairs when it comes to black holing better. However, it doesn't really change the need for validation as the main issue to check for is actually that the receiver is capable of receiving the ECN bits which has a much higher risk of not being true. I would even argue that the reason for stop sending ECT after a sufficient number of packets that some should make it is to avoid getting an unfair advantage until you know that the code points are read and that you will get an CE mark if it occurs. So maybe the text should be changed to focus on this aspect? 

Even if the proposed PR is rejected there need to be a change to this sentence: 

"To reduce the chances of misinterpreting congestive loss as packets dropped by a faulty network element, an endpoint could set the ECT(0) codepoint in the first ten outgoing packets on a path, or for a period of three RTTs, whichever occurs first."

There is a missing "only" or something else to indicate that you are sending ECN for a while then going back to not-ECT until validation has occurred. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3585#issuecomment-624517296
----==_mimepart_5eb277e82950_2a2f3fe4abacd968138358c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>So I think there might be a point to indicate the current state of affairs when it comes to black holing better. However, it doesn't really change the need for validation as the main issue to check for is actually that the receiver is capable of receiving the ECN bits which has a much higher risk of not being true. I would even argue that the reason for stop sending ECT after a sufficient number of packets that some should make it is to avoid getting an unfair advantage until you know that the code points are read and that you will get an CE mark if it occurs. So maybe the text should be changed to focus on this aspect?</p>
<p>Even if the proposed PR is rejected there need to be a change to this sentence:</p>
<p>"To reduce the chances of misinterpreting congestive loss as packets dropped by a faulty network element, an endpoint could set the ECT(0) codepoint in the first ten outgoing packets on a path, or for a period of three RTTs, whichever occurs first."</p>
<p>There is a missing "only" or something else to indicate that you are sending ECN for a while then going back to not-ECT until validation has occurred.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3585#issuecomment-624517296">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7XTOI6SDRX5XTFJ4DRQEO6RANCNFSM4MJ5KMKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5HKP6MV2Z6GAEJPBTRQEO6RA5CNFSM4MJ5KMK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEU4WBMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-624517296",
"url": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-624517296",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb277e82950_2a2f3fe4abacd968138358c--


From nobody Wed May  6 04:40:41 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 0A6E03A0998 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 04:40:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 D7qYoXGRs1Gx for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 04:40:28 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 463AC3A096B for <quic-issues@ietf.org>; Wed,  6 May 2020 04:40:28 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 2A7096E0032 for <quic-issues@ietf.org>; Wed,  6 May 2020 04:40:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588765227; bh=KPX2XYxQRLV77R9qIU4WwtVSeNAMwVvxAV0JOn1WAsk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rs7gLAwbXmZRayK2D5gCV83W3hnMMFt2HDYtHrOoHTLaLQ0vLdgZ2jJCJaNRJYTU1 io/q/QP+alpi86O8Q4WOQqBw0L4SxriS0OedNcwHVQTJ7OCfTQ44XkFCrjqWemWfc8 mHZZvC4pPjQvz76p+b3UxCtqXpNTiVEjKHlhy6k0=
Date: Wed, 06 May 2020 04:40:27 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK63WJZF52GJ3CAQDDF4X2BSXEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/c624599432@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb2a22b1b4b2_1db83ff60d2cd95c11437b2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: mikkelfj
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/N0oKC_RBm-PtFgsN81SYJKlY7q4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 11:40:31 -0000

----==_mimepart_5eb2a22b1b4b2_1db83ff60d2cd95c11437b2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Leaky bucket sidesteps the issue of shaping multiple streams, but I agree you do not need that level of detail here.

I don't understand the motivation for the N factor from a casual read. I guess it requires a deeper insight into the congestion controller. If it is a burst thing, it couldn't be for every interval `t[m]..t[n]`?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624599432
----==_mimepart_5eb2a22b1b4b2_1db83ff60d2cd95c11437b2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Leaky bucket sidesteps the issue of shaping multiple streams, but I agree you do not need that level of detail here.</p>
<p>I don't understand the motivation for the N factor from a casual read. I guess it requires a deeper insight into the congestion controller. If it is a burst thing, it couldn't be for every interval <code>t[m]..t[n]</code>?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624599432">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZAOWE2WC5MWALPKI3RQFECXANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK66HSKVJLEPKRIZOLLRQFECXA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEU5KDCA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624599432",
"url": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624599432",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb2a22b1b4b2_1db83ff60d2cd95c11437b2--


From nobody Wed May  6 05:11:15 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 06F253A09BA for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 05:11:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 lnVfIHl9PJbN for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 05:11:12 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2DE253A09D6 for <quic-issues@ietf.org>; Wed,  6 May 2020 05:11:11 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 3B44D661E08 for <quic-issues@ietf.org>; Wed,  6 May 2020 05:11:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588767071; bh=mqKlUK2SuKHxNxJGPHaykYge8ADUOgaVmqDUeD9Fghc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=c8ykpRzQQxJLSl+35V7JPE4CG1Q/DIcqSNl11OueYWNgVyWswOR3lGHlSc0sZ6orD ipt9PUgXYaovynbakxybLh4tODYDbBrzDPLYSbbYzdTWgekKapYbO0VSKbdTNXPIDs zoZsHkWxeS9nOznmn1OhjYVRCnF8QIUBHlmsOeeo=
Date: Wed, 06 May 2020 05:11:11 -0700
From: Tom Jones <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3623/push/5029197996@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3623@github.com>
References: <quicwg/base-drafts/pull/3623@github.com>
Subject: Re: [quicwg/base-drafts] Update ACK generation policy (#3623)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb2a95f2c8dc_4bc03fdf55ecd960275579f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: adventureloop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-edl8qG1Xo7j-xNiMrjiPgYgolE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 12:11:14 -0000

----==_mimepart_5eb2a95f2c8dc_4bc03fdf55ecd960275579f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@adventureloop pushed 1 commit.

525035f6802bb962f949084411594f6a91a3d623  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3623/files/b0d3867056e5ead03f683d17f2b5e7d9b7279116..525035f6802bb962f949084411594f6a91a3d623

----==_mimepart_5eb2a95f2c8dc_4bc03fdf55ecd960275579f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/adventureloop" class="user-mention">@adventureloop</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/525035f6802bb962f949084411594f6a91a3d623">525035f</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3623/files/b0d3867056e5ead03f683d17f2b5e7d9b7279116..525035f6802bb962f949084411594f6a91a3d623">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2WV4CGX432ACQOCKTRQFHV7ANCNFSM4MXD7XDQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7UIDJTVO6NGAIQONDRQFHV7A5CNFSM4MXD7XD2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTEMJUHAZDAMSQOVZWQIZVGAZDSMJZG44TSNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3623/files/b0d3867056e5ead03f683d17f2b5e7d9b7279116..525035f6802bb962f949084411594f6a91a3d623",
"url": "https://github.com/quicwg/base-drafts/pull/3623/files/b0d3867056e5ead03f683d17f2b5e7d9b7279116..525035f6802bb962f949084411594f6a91a3d623",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb2a95f2c8dc_4bc03fdf55ecd960275579f--


From nobody Wed May  6 05:11:50 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 3FC9B3A09D7 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 05:11:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.551
X-Spam-Level: 
X-Spam-Status: No, score=-1.551 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 G4IHLKwwI37l for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 05:11:46 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9F9143A09BA for <quic-issues@ietf.org>; Wed,  6 May 2020 05:11:46 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id B98AA8C11A9 for <quic-issues@ietf.org>; Wed,  6 May 2020 05:11:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588767105; bh=KaMoqh603sxPAp8qHFwCV6DhH0m2vw2nwvwbvLCHHmc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YW9UHix7NrzYVirHx9XH6BicOjJ6c7Wgvm9VV9zJIvnNDESc8Kh750TS0OxaSjBgg lBOL4AqgCZsK1nnesHknk1T1/NUtWiwB538OOhhdFYbPYR9YkTIvC+PB7yKPbv612q bhcM9bWPCZqsNDLOi4G0wSAXJXNwELdEPchGo6ng=
Date: Wed, 06 May 2020 05:11:45 -0700
From: Tom Jones <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3623/push/5029200905@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3623@github.com>
References: <quicwg/base-drafts/pull/3623@github.com>
Subject: Re: [quicwg/base-drafts] Update ACK generation policy (#3623)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb2a981aade9_72103f8198ecd96c18267e7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: adventureloop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eM8FXtsWraP8ta313boGA8Tl3RI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 12:11:49 -0000

----==_mimepart_5eb2a981aade9_72103f8198ecd96c18267e7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@adventureloop pushed 1 commit.

1bed083cfc74e8d5dca3721d458c98f9e413206f  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3623/files/525035f6802bb962f949084411594f6a91a3d623..1bed083cfc74e8d5dca3721d458c98f9e413206f

----==_mimepart_5eb2a981aade9_72103f8198ecd96c18267e7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/adventureloop" class="user-mention">@adventureloop</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/1bed083cfc74e8d5dca3721d458c98f9e413206f">1bed083</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3623/files/525035f6802bb962f949084411594f6a91a3d623..1bed083cfc74e8d5dca3721d458c98f9e413206f">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3AOMZXF3D7PNB4E3TRQFHYDANCNFSM4MXD7XDQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZMM4JVVWC7COHJMXTRQFHYDA5CNFSM4MXD7XD2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTEMJUHAZDAMSQOVZWQIZVGAZDSMRQGA4TANI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3623/files/525035f6802bb962f949084411594f6a91a3d623..1bed083cfc74e8d5dca3721d458c98f9e413206f",
"url": "https://github.com/quicwg/base-drafts/pull/3623/files/525035f6802bb962f949084411594f6a91a3d623..1bed083cfc74e8d5dca3721d458c98f9e413206f",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb2a981aade9_72103f8198ecd96c18267e7--


From nobody Wed May  6 05:11:58 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 045A03A09D7 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 05:11:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.551
X-Spam-Level: 
X-Spam-Status: No, score=-1.551 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 TiwuAln_1jBN for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 05:11:55 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AFFED3A09BA for <quic-issues@ietf.org>; Wed,  6 May 2020 05:11:55 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id F0B2C8C0078 for <quic-issues@ietf.org>; Wed,  6 May 2020 05:11:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588767114; bh=Bj6Gn8dMROnsLBQJke9wzm1elYfhnYCe3b4ipNUc8hc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Rnixkmh1+oekMUXNxyE3/nJeFw0LIXv43BALgHjE+RRBpg2a/TFYPaRbEAUP6dWJz H01Gx76S9rqePB0aVPO7yUgDiTHyDNJWJozeOMtUwxG1V9PIr2B1foQAHsmFgH79jP gOYqxh2L9wLE3W1zDbksJQsfpS0iP7RwFWW6Lo/c=
Date: Wed, 06 May 2020 05:11:54 -0700
From: Tom Jones <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3623/push/5029201706@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3623@github.com>
References: <quicwg/base-drafts/pull/3623@github.com>
Subject: Re: [quicwg/base-drafts] Update ACK generation policy (#3623)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb2a98ae116b_19943ffa838cd9681560c4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: adventureloop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wDgTaZNMx8CMt4alktRWGif3SUQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 12:11:57 -0000

----==_mimepart_5eb2a98ae116b_19943ffa838cd9681560c4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@adventureloop pushed 1 commit.

2c87882d7270c6cfe5006bbd10508c3c6b0da52b  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3623/files/1bed083cfc74e8d5dca3721d458c98f9e413206f..2c87882d7270c6cfe5006bbd10508c3c6b0da52b

----==_mimepart_5eb2a98ae116b_19943ffa838cd9681560c4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/adventureloop" class="user-mention">@adventureloop</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/2c87882d7270c6cfe5006bbd10508c3c6b0da52b">2c87882</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3623/files/1bed083cfc74e8d5dca3721d458c98f9e413206f..2c87882d7270c6cfe5006bbd10508c3c6b0da52b">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6I2CXBISWJQ3AKDJ3RQFHYVANCNFSM4MXD7XDQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2TU5ZDZPCBNUOQJMLRQFHYVA5CNFSM4MXD7XD2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTEMJUHAZDAMSQOVZWQIZVGAZDSMRQGE3TANQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3623/files/1bed083cfc74e8d5dca3721d458c98f9e413206f..2c87882d7270c6cfe5006bbd10508c3c6b0da52b",
"url": "https://github.com/quicwg/base-drafts/pull/3623/files/1bed083cfc74e8d5dca3721d458c98f9e413206f..2c87882d7270c6cfe5006bbd10508c3c6b0da52b",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb2a98ae116b_19943ffa838cd9681560c4--


From nobody Wed May  6 05:12:07 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 ACC913A09D7 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 05:12:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.551
X-Spam-Level: 
X-Spam-Status: No, score=-1.551 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 zho7QXTDV7ug for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 05:12:04 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 55E2D3A09BA for <quic-issues@ietf.org>; Wed,  6 May 2020 05:12:04 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id A2FA1E0039 for <quic-issues@ietf.org>; Wed,  6 May 2020 05:12:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588767123; bh=t7So6ana7FZZOBXySDPnkPZbwQrbfrQgVhtFSwWYyhw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xAUwL19SNGGi3n2xsZs5+mYa0NDVMfLPIQ407cnGrxZaJZ24hmLBlB+A4jZ7SqV+x 1Idy11+fFFazpNtO88wKj6R6ZyPxl67qbRpGEaZe21BMN+AwVV3iJWDY+ji2G4UDVt VKPn4Xn0LIpemjj+vhSP5C8HCG4uFdl1W/9vn244=
Date: Wed, 06 May 2020 05:12:03 -0700
From: Tom Jones <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3623/push/5029202469@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3623@github.com>
References: <quicwg/base-drafts/pull/3623@github.com>
Subject: Re: [quicwg/base-drafts] Update ACK generation policy (#3623)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb2a99392f6c_5aa93f84392cd95c972349"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: adventureloop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sH2RyaEot250tyhm0qPsOUrvxog>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 12:12:06 -0000

----==_mimepart_5eb2a99392f6c_5aa93f84392cd95c972349
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@adventureloop pushed 1 commit.

fff1097a27d6e2cfe88c61525d0f43416ee39e13  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3623/files/2c87882d7270c6cfe5006bbd10508c3c6b0da52b..fff1097a27d6e2cfe88c61525d0f43416ee39e13

----==_mimepart_5eb2a99392f6c_5aa93f84392cd95c972349
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/adventureloop" class="user-mention">@adventureloop</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/fff1097a27d6e2cfe88c61525d0f43416ee39e13">fff1097</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3623/files/2c87882d7270c6cfe5006bbd10508c3c6b0da52b..fff1097a27d6e2cfe88c61525d0f43416ee39e13">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4VCI4G4Q2X7MINJBDRQFHZHANCNFSM4MXD7XDQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3R3JUJ2B5JSTNC3QTRQFHZHA5CNFSM4MXD7XD2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTEMJUHAZDAMSQOVZWQIZVGAZDSMRQGI2DMOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3623/files/2c87882d7270c6cfe5006bbd10508c3c6b0da52b..fff1097a27d6e2cfe88c61525d0f43416ee39e13",
"url": "https://github.com/quicwg/base-drafts/pull/3623/files/2c87882d7270c6cfe5006bbd10508c3c6b0da52b..fff1097a27d6e2cfe88c61525d0f43416ee39e13",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb2a99392f6c_5aa93f84392cd95c972349--


From nobody Wed May  6 09:20:34 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 98C853A0C55 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 09:20:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 UOS-5Zli2NT8 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 09:20:29 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C2D113A0C63 for <quic-issues@ietf.org>; Wed,  6 May 2020 09:20:23 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id A976C66008C for <quic-issues@ietf.org>; Wed,  6 May 2020 09:20:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588782022; bh=uuj7sk94MNQoaRxF4JNsjblOQ1rdGlG8nk3RCPekG9M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZORAFxEU5zhheMAevQIk/YXlKvQYwKq8fVPOiNKJ7/HHswcgVXlP25xL8/HRdPhMU KYEVO2c8OJeDKbgomqZafIWcy831E+V7aAC2Ux+6hvJYT7f2KsqzyOsQztbjPaCWBi 7fbnkrpOlgULxkklpBJ//Vqy+usa2nVmRoyUJaO4=
Date: Wed, 06 May 2020 09:20:22 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK44FMDWAVOCICC2WE54X3CMNEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/406773852@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb2e3c698777_2ae23fcd0d6cd96875395"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8m4v8RptOzeSrL5Ze6EM3zTPIno>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 16:20:34 -0000

----==_mimepart_5eb2e3c698777_2ae23fcd0d6cd96875395
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.



> +The usage limits defined in TLS 1.3 exist to provide protection against attacks
+on confidentiality and apply to successful applications of AEAD protection. The
+integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a per-AEAD limit. Endpoints
+MUST initiate a key update before reaching this limit. Applying a limit reduces
+the probability than attacker is able to successfully forge a packet; see
+{{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM and AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305 the

```suggestion
For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305 the
```

> +number of packets that fail authentication MUST NOT exceed 2^36. Note that the
+analysis in {{AEBounds}} supports a higher limit for the AEAD_AES_128_GCM and
+AEAD_AES_256_GCM, but this specification recommends a lower limit. For
+AEAD_AES_128_CCM the number of packets that fail authentication MUST NOT exceed
+2^24.5; see {{ccm-bounds}}.
+
+Any TLS cipher suite that is specified for use with QUIC MUST define limits on
+the use of the associated AEAD function that preserves margins for
+confidentiality and integrity. That is, limits MUST be specified for the number
+of packets that can be authenticated and for the number packets that can fail
+authentication.  Any limits SHOULD reference any analysis upon which values are
+based and describe any assumptions used in that analysis.
+
+Note:
+
+: These limits were originally calculated based using assumptions about the

```suggestion
: These limits were originally calculated using assumptions about the
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-406773852
----==_mimepart_5eb2e3c698777_2ae23fcd0d6cd96875395
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ianswett</b> approved this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3620#discussi=
on_r420917786">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +The usage limits defined in TLS 1.3 exist=
 to provide protection against attacks=0D
+on confidentiality and apply to successful applications of AEAD protecti=
on. The=0D
+integrity protections in authenticated encryption also depend on limitin=
g the=0D
+number of attempts to forge packets. TLS achieves this by closing connec=
tions=0D
+after any record fails an authentication check. In comparison, QUIC igno=
res any=0D
+packet that cannot be authenticated, allowing multiple attempts at defea=
ting=0D
+integrity protection.=0D
+=0D
+Endpoints MUST count the number of packets that are received but cannot =
be=0D
+authenticated. Packet protection keys MUST NOT be used for removing pack=
et=0D
+protection after authentication fails on more than a per-AEAD limit. End=
points=0D
+MUST initiate a key update before reaching this limit. Applying a limit =
reduces=0D
+the probability than attacker is able to successfully forge a packet; se=
e=0D
+{{AEBounds}} and {{ROBUST}}.=0D
+=0D
+For AEAD_AES_128_GCM and AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305 th=
e=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-For AEAD_AES_128_GCM and AEAD_AES_256_GCM, an=
d AEAD_CHACHA20_POLY1305 the=0D
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305 the=0D=

</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3620#discussi=
on_r420919750">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +number of packets that fail authenticatio=
n MUST NOT exceed 2^36. Note that the=0D
+analysis in {{AEBounds}} supports a higher limit for the AEAD_AES_128_GC=
M and=0D
+AEAD_AES_256_GCM, but this specification recommends a lower limit. For=0D=

+AEAD_AES_128_CCM the number of packets that fail authentication MUST NOT=
 exceed=0D
+2^24.5; see {{ccm-bounds}}.=0D
+=0D
+Any TLS cipher suite that is specified for use with QUIC MUST define lim=
its on=0D
+the use of the associated AEAD function that preserves margins for=0D
+confidentiality and integrity. That is, limits MUST be specified for the=
 number=0D
+of packets that can be authenticated and for the number packets that can=
 fail=0D
+authentication.  Any limits SHOULD reference any analysis upon which val=
ues are=0D
+based and describe any assumptions used in that analysis.=0D
+=0D
+Note:=0D
+=0D
+: These limits were originally calculated based using assumptions about =
the=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-: These limits were originally calculated bas=
ed using assumptions about the=0D
+: These limits were originally calculated using assumptions about the=0D=

</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3620#pullrequestreview-406773852">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KYNB4WMP4WOWTQFICLRQGE4NANCNFSM4MW4IM3A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK2YPGISL4FJMA24DI3RQGE4NA5CNFSM4=
MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODA7OAXA.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestrev=
iew-406773852",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview=
-406773852",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb2e3c698777_2ae23fcd0d6cd96875395--


From nobody Wed May  6 13:18:00 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 4A62A3A0B0C for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:17:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 dR95Zk88cc22 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:17:50 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0A5DB3A0B31 for <quic-issues@ietf.org>; Wed,  6 May 2020 13:17:50 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 1C30EA009B for <quic-issues@ietf.org>; Wed,  6 May 2020 13:17:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588796269; bh=jzU8VVY3ByMmf12vzRumywjMu9QR+0Lbm+BaiS5BV6Q=; h=Date:From:To:Subject:From; b=Vf4coKcM0p/3hwHtdfGHjN1aE2f38hkaDPjyz3U3i3QT0H6ejDQFN/weAXMpCf31v pDPZZCYN1oT5h+Aow/T+JYJ4Dvk/cgrCyEWO3WCZgm9nsplVRYPFq3o9p0Gxvwli8r wNAnf8fKLMh6i9AkG96iBwmnGMiH0SvpFpFdYPJU=
Date: Wed, 06 May 2020 13:17:49 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-backtick/beb5e7-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/u-olWMDar0excPc7q28vWNKdM58>
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: Wed, 06 May 2020 20:17:58 -0000

  Branch: refs/heads/qpack-backtick
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed May  6 13:18:07 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 C7C913A0B4E for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:17:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 GGB-5Z79-YRa for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:17:49 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B67193A0B21 for <quic-issues@ietf.org>; Wed,  6 May 2020 13:17:49 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id F036566091F for <quic-issues@ietf.org>; Wed,  6 May 2020 13:17:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588796268; bh=UNK1RvUha6odyPPFTEx6B0FSPFaLiYX1UfvQ+dj4Ry4=; h=Date:From:To:Subject:From; b=MwTA0ALsgicUwH8MxoR4oU2vja/LbijQGx4VeyI6cMs2+hHYAWBYIdhQ//Bbz8MRC y5SdSP8WQHDUjtfmo6+oR7GFCvHbuxU0L2Sl7dbsHQml5Bk4xoln6yzWu6O/gGpXnM CAt2nhPB+4T2gykQb6YlKwIhoekIH04cT9E9DaAk=
Date: Wed, 06 May 2020 13:17:48 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/6c90af-c5063a@github.com>
Subject: [quicwg/base-drafts] c5063a: [qpack] Remove backticks
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1YcGckhRXqIRvAKMykfCIKmzB7Q>
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: Wed, 06 May 2020 20:17:58 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: c5063a3cc6755c095376693641862a1a75192527
      https://github.com/quicwg/base-drafts/commit/c5063a3cc6755c095376693641862a1a75192527
  Author: Alan Frindell <afrind@fb.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  [qpack] Remove backticks

The new principle is to only use backticks when referring to variables in pseudocode.  There were two such instances that remain.

Fixes #3626



From nobody Wed May  6 13:18:19 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 90D853A0B04 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:18:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 MoE4IZJ3mNiW for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:17:59 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 780B83A0B35 for <quic-issues@ietf.org>; Wed,  6 May 2020 13:17:59 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 8FE62E1637 for <quic-issues@ietf.org>; Wed,  6 May 2020 13:17:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588796278; bh=NcVaDdrhPebpzy8sYvsj1QImaGH4hoCjYIYAbJmtq6I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bLWQXd54wja0u1rDcznlawTrpHHC6h0Ga2mK1hIQcX1JzjHrO+dxao3MYkggua3bM NEDWivyJ+pq8rV7bRdoMi2+ou89aPoSsYVOIKMBB5Elo/Q6+0OX7H4hgf1Nlg0VIOD 7QKpIbo9y6AUShahyBZybrpd5YnxTnmvy9VET8tM=
Date: Wed, 06 May 2020 13:17:58 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY3JA2HH2YCXRFSV7F4X36HNEVBNHHCJCEICM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3626/issue_event/3310132695@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3626@github.com>
References: <quicwg/base-drafts/issues/3626@github.com>
Subject: Re: [quicwg/base-drafts] Backticks in qpack (#3626)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb31b767f15f_17c43fa51b6cd96454663"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/p2SQt1JhWf-qrk8sHFdppDDpE1Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 20:18:09 -0000

----==_mimepart_5eb31b767f15f_17c43fa51b6cd96454663
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3626 via #3627.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3626#event-3310132695
----==_mimepart_5eb31b767f15f_17c43fa51b6cd96454663
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="612927507" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3626" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3626/hovercard" href="https://github.com/quicwg/base-drafts/issues/3626">#3626</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="612936905" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3627" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3627/hovercard" href="https://github.com/quicwg/base-drafts/pull/3627">#3627</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3626#event-3310132695">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2AINGYQE6AJMJNTLTRQHAXNANCNFSM4MZ6MYRQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZV6PHD4X75MMIT373RQHAXNA5CNFSM4MZ6MYR2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYVGJ3VY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3626#event-3310132695",
"url": "https://github.com/quicwg/base-drafts/issues/3626#event-3310132695",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb31b767f15f_17c43fa51b6cd96454663--


From nobody Wed May  6 13:18:24 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 0A4653A0B5A for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:18:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 lRvPwwfcFJtX for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:18:00 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 11DCC3A0B3F for <quic-issues@ietf.org>; Wed,  6 May 2020 13:18:00 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 19BEE8C0A0A for <quic-issues@ietf.org>; Wed,  6 May 2020 13:17:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588796279; bh=mvSpDHjXiWyuN29LuFnvPo2aZKi5jUhnsTq6RmpLCCg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fhJm24PIqmm5rldCqcYjgbFxAxW8SUdnalyGh+rt2aJxqjdxFLrCR4Ns4m9TWXITG r4eEjzygsDxA3KB1gWSpejQSRg1mdqmsfYrMT0E3dVAH8OjFLfOd540xT83mnl12Gz GeoNeoQkvX4P+2bfJu2tRp6rgx2ozajxiJPOjuZc=
Date: Wed, 06 May 2020 13:17:59 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5P2AQWPKZFF52B6G54X36HPEVBNHHCJCFMZE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3627/issue_event/3310132686@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3627@github.com>
References: <quicwg/base-drafts/pull/3627@github.com>
Subject: Re: [quicwg/base-drafts] [qpack] Remove backticks (#3627)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb31b77b0fc_22663fb99a0cd96895813"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WML3ok0IgxDaeczAKO31jIWgtS4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 20:18:10 -0000

----==_mimepart_5eb31b77b0fc_22663fb99a0cd96895813
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3627 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3627#event-3310132686
----==_mimepart_5eb31b77b0fc_22663fb99a0cd96895813
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="612936905" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3627" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3627/hovercard" href="https://github.com/quicwg/base-drafts/pull/3627">#3627</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3627#event-3310132686">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6OSAPFSLZI2HXZGF3RQHAXPANCNFSM4MZ6X3NQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZPE6UQLMQ3TEGYQA3RQHAXPA5CNFSM4MZ6X3N2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYVGJ3TQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3627#event-3310132686",
"url": "https://github.com/quicwg/base-drafts/pull/3627#event-3310132686",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb31b77b0fc_22663fb99a0cd96895813--


From nobody Wed May  6 13:19:14 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 CB09E3A0C7C for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:19:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 pjP_akWUKP6Z for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:18:59 -0700 (PDT)
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 BFF7B3A0DAC for <quic-issues@ietf.org>; Wed,  6 May 2020 13:18:33 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id F2F082814EF for <quic-issues@ietf.org>; Wed,  6 May 2020 13:18:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588796312; bh=Fe/jfgAU6V+xP5zOf4hmQ+3wTxHzDwv0nnSJ0XOc4NY=; h=Date:From:To:Subject:From; b=VW3VFKktPgi0UVio0ybGcW+c6Ta0WYEXvnm2mxMgDDnVcuD/mggY71wybqFLjZbE5 IQYuFGaAa2+GAqUAPkW32mxdedN7tDorwOABJofRgNtyteftmMM8YB5J9f6ZKgU1kL YRCBXWiOgorZd2Hm9xqPDYwHKvyKo3ytW0hBdmyw=
Date: Wed, 06 May 2020 13:18:32 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-security/753a49-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xUxsBnj_zeOfZUFVsn9-IRLgAwM>
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: Wed, 06 May 2020 20:19:13 -0000

  Branch: refs/heads/qpack-security
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed May  6 13:19:33 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 A78C73A0E3E for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:19:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 dj78TjtIBSvd for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:18:59 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BFC463A0CA3 for <quic-issues@ietf.org>; Wed,  6 May 2020 13:18:33 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id DA2EC520CBA for <quic-issues@ietf.org>; Wed,  6 May 2020 13:18:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588796312; bh=l1Su6TvWR2IdbssmbjSYrE9HJp3A5+e7BIk5/jF/ies=; h=Date:From:To:Subject:From; b=P+ojVaewm3fSSVdxOGjJ6GJEGWSBK5OLLTkUKhjot/tz3WZGpNKrLz6IlhHQ+JP2E 3lvrJFDTsb0gT5h4Kmo4AxIsBUR+HfO5BLCqR3fWpbRIDQzF5g8MjsFI9AXx4Gh9ML dMcvkzXqjtBn3P9C6SJlhDuX2omssbaIXaZBiu5k=
Date: Wed, 06 May 2020 13:18:32 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/c5063a-dcf603@github.com>
Subject: [quicwg/base-drafts] dcf603: QPACK security considerations (#3575)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CyYSLD6hyqNJ5qzbx2RSDHxXAUU>
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: Wed, 06 May 2020 20:19:17 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: dcf603b4707cce7ec9f92df72a2f5b6026560860
      https://github.com/quicwg/base-drafts/commit/dcf603b4707cce7ec9f92df72a2f5b6026560860
  Author: afrind <afrind@users.noreply.github.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  QPACK security considerations (#3575)

* QPACK security considerations

Behold

Fixes: 1737

* Fix lint

* Feedback from Martin and Lucas

* Apply suggestions from code review

Feedback from Mike

Co-authored-by: Mike Bishop <mbishop@evequefou.be>

* Wordsmithing suggestion from Bence

Co-authored-by: Mike Bishop <mbishop@evequefou.be>



From nobody Wed May  6 13:19:37 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 B668C3A0E47 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:19:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 McutrYrpzsEd for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:19:06 -0700 (PDT)
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 BFBB73A0DE7 for <quic-issues@ietf.org>; Wed,  6 May 2020 13:18:39 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 194752827F0 for <quic-issues@ietf.org>; Wed,  6 May 2020 13:18:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588796319; bh=Q+theBB/C9TU5qck7Ei0J1zjo89LrodRrjPfDhokxgc=; h=Date:From:To:Subject:From; b=Y/Z4qNUfprxR8ToTYKFAoHdiEBNlZIp5ORewW8u78WOdMKaw8aE6vNSV5cskvpmzf MfD7GvnVamj2VDWMtQCA7gjoTTh2BR1/adPz3J0gbnaU+3FoYVbwTXbv3cehng2ih4 BuOhox1q8KdjtGLizylemeN2iwSzc4DI+m4Ktu5U=
Date: Wed, 06 May 2020 13:18:39 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/fc239d-b07196@github.com>
Subject: [quicwg/base-drafts] b07196: Script updating gh-pages from c5063a3c. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kF-XI4z_u6NMHHvFEnrIhi1pRmk>
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: Wed, 06 May 2020 20:19:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b07196390b531651760602193c9fd140dc1b57b6
      https://github.com/quicwg/base-drafts/commit/b07196390b531651760602193c9fd140dc1b57b6
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c5063a3c. [ci skip]



From nobody Wed May  6 13:19:41 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 B99703A0E53 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:19:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KeaxnuOiV7a7 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:19:18 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2E63E3A0E17 for <quic-issues@ietf.org>; Wed,  6 May 2020 13:18:49 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 77DD26E04D8 for <quic-issues@ietf.org>; Wed,  6 May 2020 13:18:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588796328; bh=xTLzG6HfCQlWy7jUd/k4JHUL2n7KzuzX6w+0g5/hEOQ=; h=Date:From:To:Subject:From; b=GlB8DnkD3keYmK2dtBvYXzWkrB5NycK1ekr0iz4JJkkQe2q81dIJE+5+f9Mf6TGnL dV55dYZYHwB8uLSp28fErhfTm/9+OxDOI/fGRAkYwnmqEv5MidZysXCu3QBh3zwMgU uitB9upZbBY/XG+9QVAxPhckD9XLtNPnje3ScEh0=
Date: Wed, 06 May 2020 13:18:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b07196-ad0ad9@github.com>
Subject: [quicwg/base-drafts] ad0ad9: Script updating archive at 2020-05-06T20:18:27Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nrBnXLRrdrHh3E5NDTLWn3oJFuc>
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: Wed, 06 May 2020 20:19:26 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ad0ad92d2d03a04385648e6c54519d269c782e8b
      https://github.com/quicwg/base-drafts/commit/ad0ad92d2d03a04385648e6c54519d269c782e8b
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-06T20:18:27Z. [ci skip]



From nobody Wed May  6 13:19:45 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 D17FA3A0D20 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:19:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 6bOEZ2gZneKr for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:19:12 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 336233A0E05 for <quic-issues@ietf.org>; Wed,  6 May 2020 13:18:43 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 64AE3E005E for <quic-issues@ietf.org>; Wed,  6 May 2020 13:18:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588796322; bh=2rD8MrXuHzwC96HKka8xZTt27m4Rd1vy02g/mx1XGX4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Z4FIwKSPGfO6p06Bv2gzzPf+O1RI7Gmu7gNM2sQxPrziq3v+UsBc0PBi/Mj7NveTp 8DTYCNB67xzK6IyFkQdqlVmprwYng7UIZS1neS7fUFF4/vCGe6KBSJ9mVvUt6Y/k1T FMFrsDkpkxXwQh/814PbL25TnPVP1n8ENuJTvOes=
Date: Wed, 06 May 2020 13:18:42 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYECLADHAR5UJUI45F4X36KFEVBNHHCHNTZ2Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3575/issue_event/3310135397@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3575@github.com>
References: <quicwg/base-drafts/pull/3575@github.com>
Subject: Re: [quicwg/base-drafts] QPACK security considerations (#3575)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb31ba254fcc_56363faf09ccd95c102811"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qVsiitmd_HVuYc6IXh5oS2gtXDQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 20:19:27 -0000

----==_mimepart_5eb31ba254fcc_56363faf09ccd95c102811
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3575 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3575#event-3310135397
----==_mimepart_5eb31ba254fcc_56363faf09ccd95c102811
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="599161302" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3575" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3575/hovercard" href="https://github.com/quicwg/base-drafts/pull/3575">#3575</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3575#event-3310135397">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7ACKQKPBPLOXOCCS3RQHA2FANCNFSM4MHIMGKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYXPC6UREW6JBJMCPLRQHA2FA5CNFSM4MHIMGK2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYVGKQZI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3575#event-3310135397",
"url": "https://github.com/quicwg/base-drafts/pull/3575#event-3310135397",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb31ba254fcc_56363faf09ccd95c102811--


From nobody Wed May  6 13:19:49 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 91B2D3A0D0C for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:19:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 7AmhqmsqALUu for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:19:11 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4C30D3A0B3F for <quic-issues@ietf.org>; Wed,  6 May 2020 13:18:43 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 5C7AF6A0A51 for <quic-issues@ietf.org>; Wed,  6 May 2020 13:18:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588796322; bh=VJOKGquQPuPhu+d5DEFNs5V/gOlF/vOVvZvg7e8sYpg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=F7W4X0TMAsZfYrXngBJmYTBW9Eet9Flc5lyHM6LyqK9N1kswXPbJ30a0JSaGnaVey KrkXoUTA+UDFJbgJ0ptVxyx1tDFoAzdFQKOu0nHyIWuOU1827NYiWIaTZgiCmC0Xyw AD/O/OkrmjAmTQDMlBt3xxuAFyGL7GoViIyvrKXk=
Date: Wed, 06 May 2020 13:18:42 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZIYES7YTZFQQPGC754X36KFEVBNHHBKYXZOY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/1737/issue_event/3310135412@github.com>
In-Reply-To: <quicwg/base-drafts/issues/1737@github.com>
References: <quicwg/base-drafts/issues/1737@github.com>
Subject: Re: [quicwg/base-drafts] QPACK has no Security Considerations (#1737)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb31ba24ceda_7afe3fbdb64cd96c93084"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SLuWFlMJfH8Uy1VdnRJrtJ-_FVs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 20:19:28 -0000

----==_mimepart_5eb31ba24ceda_7afe3fbdb64cd96c93084
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #1737 via #3575.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/1737#event-3310135412
----==_mimepart_5eb31ba24ceda_7afe3fbdb64cd96c93084
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="358807926" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/1737" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/1737/hovercard" href="https://github.com/quicwg/base-drafts/issues/1737">#1737</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="599161302" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3575" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3575/hovercard" href="https://github.com/quicwg/base-drafts/pull/3575">#3575</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/1737#event-3310135412">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2WOJWWUTBBT5NYUPLRQHA2FANCNFSM4FUI6N2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZH4QL3OEQQGJAJUF3RQHA2FA5CNFSM4FUI6N2KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYVGKQ5A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/1737#event-3310135412",
"url": "https://github.com/quicwg/base-drafts/issues/1737#event-3310135412",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb31ba24ceda_7afe3fbdb64cd96c93084--


From nobody Wed May  6 13:20:29 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 D59203A0B0F for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:20:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 G0W9BVys1QRg for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 13:20:26 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5A1283A0BE6 for <quic-issues@ietf.org>; Wed,  6 May 2020 13:19:40 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id AF1396A0085 for <quic-issues@ietf.org>; Wed,  6 May 2020 13:19:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588796379; bh=WHkvWcTS8W6k8GVijGpP3/jiZUBf+jJeNhdWg8nkEOU=; h=Date:From:To:Subject:From; b=TFpNlmpZ/zVHMXPURfb6vOg/5MPj44C/HdIjupZOjD4gmvPnRr94g8d2v2d1+4f2l 5suKfd7kI0FEsNDdJpq5hMvWTc2Uvztcj9d061MaZeK6fVuvGRlUIqlR8ecSU1ZrUk BMgvONnz7zR2nuPHFIzFWI3soLQ2LMhZmDKk0kEw=
Date: Wed, 06 May 2020 13:19:39 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ad0ad9-94d777@github.com>
Subject: [quicwg/base-drafts] 94d777: Script updating gh-pages from dcf603b4. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QUmAfea_KOwo__DM6SOtFNjnzIs>
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: Wed, 06 May 2020 20:20:28 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 94d777e069bbf48acebcea69f0b2142b4d4e1da4
      https://github.com/quicwg/base-drafts/commit/94d777e069bbf48acebcea69f0b2142b4d4e1da4
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from dcf603b4. [ci skip]



From nobody Wed May  6 14:14:31 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 62B063A0B5A for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 14:14:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 elw9bcQXijMe for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 14:14:27 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8E7753A0B59 for <quic-issues@ietf.org>; Wed,  6 May 2020 14:14:27 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 3A0462C0B92 for <quic-issues@ietf.org>; Wed,  6 May 2020 14:14:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588799666; bh=oy7yxLG2oVloQQ0BvHHh7+aqDRLduzTbxveCjNqL3UE=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=dOCo5Ha655XVgGnF2gJ1NhmXznsWX0CGdwTQ91YKjoZhNEzHJj90qBrmG/Fbni0ww yc2Xl94pYNs1TxVQEPJv5JTKje0LcA8WJQEn2W9noXoebUPxCf6msBiFdmN2hLuCK2 NsJaH+EyQfYtX6jkwPUc5SR7CTSOC+Vw1zAsX/mI=
Date: Wed, 06 May 2020 14:14:26 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZZBD36AZS6J6OUJ754X4E3FEVBNHHCJEYN7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3631@github.com>
Subject: [quicwg/base-drafts] What error kind is caused by multiple GOAWAYS that increase the limit (#3631)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb328b2288d7_2c3f3feadb4cd9602811d5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ufikzIVM3XU_IVsPG8LGLLUTwdw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 21:14:30 -0000

----==_mimepart_5eb328b2288d7_2c3f3feadb4cd9602811d5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Draft 27 says:

```
   A server MAY send multiple GOAWAY frames indicating different stream IDs, but MUST NOT
   increase the value they send in the last Stream ID, since clients
   might already have retried unprocessed requests on another
   connection.
```

Maybe I'm missing it but I can't see where we say how the GoAway receiver handles an seeing the GoAway ID getting increased. 

We typically state what the receiver should do in such a case. For instance, with MAX_PUSH_ID we say " receipt of a MAX_PUSH_ID that contains a smaller value than previously received MUST be treated as a connection error of type H3_ID_ERROR.".

I suggest that we need text that states receiving a larger GOAWAY ID than previously received MUST be treated as a connection error of type H3_ID_ERROR.

N.B. since draft-27 we landed changes to make the GOAWAY symmetrical. I believe this issue is still applicable to the most recent editors draft



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3631
----==_mimepart_5eb328b2288d7_2c3f3feadb4cd9602811d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Draft 27 says:</p>
<pre><code>   A server MAY send multiple GOAWAY frames indicating different stream IDs, but MUST NOT
   increase the value they send in the last Stream ID, since clients
   might already have retried unprocessed requests on another
   connection.
</code></pre>
<p>Maybe I'm missing it but I can't see where we say how the GoAway receiver handles an seeing the GoAway ID getting increased.</p>
<p>We typically state what the receiver should do in such a case. For instance, with MAX_PUSH_ID we say " receipt of a MAX_PUSH_ID that contains a smaller value than previously received MUST be treated as a connection error of type H3_ID_ERROR.".</p>
<p>I suggest that we need text that states receiving a larger GOAWAY ID than previously received MUST be treated as a connection error of type H3_ID_ERROR.</p>
<p>N.B. since draft-27 we landed changes to make the GOAWAY symmetrical. I believe this issue is still applicable to the most recent editors draft</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3631">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ADKT2PWXPBQCR2XLRQHHLFANCNFSM4M2ZDH2Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYZEKUB7B5FXYKMHKDRQHHLFA5CNFSM4M2ZDH22YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JETBX5Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3631",
"url": "https://github.com/quicwg/base-drafts/issues/3631",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb328b2288d7_2c3f3feadb4cd9602811d5--


From nobody Wed May  6 14:31:53 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 AB5143A0064 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 14:31:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 nnw7zQombtJ9 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 14:31:43 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8F4AD3A005F for <quic-issues@ietf.org>; Wed,  6 May 2020 14:31:43 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 4242DC60469 for <quic-issues@ietf.org>; Wed,  6 May 2020 14:31:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588800702; bh=pH++JGMGGm7Mvw9FO4eEfuDFTBZv/DlfsiRKC7Rs+s0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HE+ybeXMXas5xtp+vCE5K2u4Y8Ii4qr3J8Zq4CJVN1Nk1t1n4Cv2ZOnVXOSDBFRUr /HpR2hIws8MlCUwiJ/NrT6C8LWdn3Xuj+xeOGxwfYHQL5pLGBWHIlGSht2f6OhpPp5 rfsSDl+QrtD50rPFe67gjkg6jvZioCy6S0NxZ0zo=
Date: Wed, 06 May 2020 14:31:42 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ3QDYU3NJ26HAB6UV4X4G35EVBNHHCJEYN7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3631/624901959@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3631@github.com>
References: <quicwg/base-drafts/issues/3631@github.com>
Subject: Re: [quicwg/base-drafts] What error kind is caused by multiple GOAWAYS that increase the limit (#3631)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb32cbe2fa4f_573e3fb0288cd968526873"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BGyaG4ADENwXd1MhJRez2j-pE5Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 21:31:51 -0000

----==_mimepart_5eb32cbe2fa4f_573e3fb0288cd968526873
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

H3_ID_ERROR SGTM

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3631#issuecomment-624901959
----==_mimepart_5eb32cbe2fa4f_573e3fb0288cd968526873
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>H3_ID_ERROR SGTM</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3631#issuecomment-624901959">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6M2NNSIRCDN4S4CALRQHJL5ANCNFSM4M2ZDH2Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK32F3WT5WOA6RT2SODRQHJL5A5CNFSM4M2ZDH22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEU7T6RY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3631#issuecomment-624901959",
"url": "https://github.com/quicwg/base-drafts/issues/3631#issuecomment-624901959",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb32cbe2fa4f_573e3fb0288cd968526873--


From nobody Wed May  6 16:59:33 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 9D61D3A0DCD for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 16:59:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 49tls2jVw6oM for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 16:59:29 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4B85E3A09A2 for <quic-issues@ietf.org>; Wed,  6 May 2020 16:59:29 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 7FC946A03AE for <quic-issues@ietf.org>; Wed,  6 May 2020 16:59:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588809568; bh=7G5OjI4k0N34eROsgTfAtpqJLZQB5/x6EJCmW+sPzMk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HoJ+x5HuR+HyleOfyEmWyoHS7aIqwy/myIg1xyXLkncwwln9mOyETHImZCsaAcQfK 5xpKa+EMmoAkySn3aE+HxIRyybtbZvg8LwvZi9r9Zqz7nzJM6da/bIKUCtVoL9IKbg aiw8qsPUpy+ZAKKPboyWAFzPNCV5RSCQNDaRoRvQ=
Date: Wed, 06 May 2020 16:59:28 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ZYCO5J54MS2JYXAF4X4YGBEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/c624952504@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb34f606f18b_7eab3fd7bcacd964110916e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rUCdDkW1WbAq2NMcCjIAMvSr5GU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 06 May 2020 23:59:31 -0000

----==_mimepart_5eb34f606f18b_7eab3fd7bcacd964110916e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

N exists to deal with the potential for the CWND to increase.  Let's say that you have a CWND of 10 packets and an RTT of 1 second.  If you pace evenly over that period, you will send one packet every 100ms.  If the CWND doubles, you want to send every 50ms instead, but that only starts from the point you apply the increase.  This allows you to send a little faster prior to the increase and not need to wait as long for the increase to take effect.

N also exists because timers are terrible and you don't want to lag, which would force the pacer to be an extra constraint on send rate.

Maybe that's too fancy and it should just be N is a number a little larger than 1.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624952504
----==_mimepart_5eb34f606f18b_7eab3fd7bcacd964110916e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>N exists to deal with the potential for the CWND to increase.  Let's say that you have a CWND of 10 packets and an RTT of 1 second.  If you pace evenly over that period, you will send one packet every 100ms.  If the CWND doubles, you want to send every 50ms instead, but that only starts from the point you apply the increase.  This allows you to send a little faster prior to the increase and not need to wait as long for the increase to take effect.</p>
<p>N also exists because timers are terrible and you don't want to lag, which would force the pacer to be an extra constraint on send rate.</p>
<p>Maybe that's too fancy and it should just be N is a number a little larger than 1.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624952504">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7XAGVPSF53KUDALDDRQH2WBANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYZ3NNSG2IGIRDOXJ3RQH2WBA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVAAJOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624952504",
"url": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624952504",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb34f606f18b_7eab3fd7bcacd964110916e--


From nobody Wed May  6 17:17:47 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 2CC233A0DD2 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 17:17:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 LfojntNcLulw for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 17:17:34 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2107B3A0DB6 for <quic-issues@ietf.org>; Wed,  6 May 2020 17:17:33 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 9B3676E041D for <quic-issues@ietf.org>; Wed,  6 May 2020 17:17:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588810651; bh=p1o2l1e/M/4WEebsRlmZXw/tjm1eCguuicJIoZ7kxjc=; h=Date:From:To:Subject:From; b=VTYh2w787aa5D6wU0KfYJbDB2tpUKO8gfCb2GyJc+DbyNWsxTP0UooFAukQnD4U7N 3sKbCQuqHk5eQriKmCIN+tyORozi2GvxQB1Y2KCrSLhJtrKsojDhqNFsNAGR1G7A90 TwaJaf7CF+1E1TaKyUpFsHVPKoc6jhBoooqE25vw=
Date: Wed, 06 May 2020 17:17:31 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgery-limit/5efe1d-acb7b2@github.com>
Subject: [quicwg/base-drafts] acb7b2: Basic editing
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/S0dKD7zRmFslrnOzISWIe-SDVhM>
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: Thu, 07 May 2020 00:17:41 -0000

  Branch: refs/heads/forgery-limit
  Home:   https://github.com/quicwg/base-drafts
  Commit: acb7b227f19ac7572efb987e60f8e494e1301e32
      https://github.com/quicwg/base-drafts/commit/acb7b227f19ac7572efb987e60f8e494e1301e32
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Basic editing

Co-authored-by: ianswett <ianswett@users.noreply.github.com>



From nobody Wed May  6 17:18:17 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 1CA0F3A0DD2 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 17:17:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 qlMXGIcczKeH for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 17:17:42 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 40B853A0DB6 for <quic-issues@ietf.org>; Wed,  6 May 2020 17:17:42 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id B2267A1DA0 for <quic-issues@ietf.org>; Wed,  6 May 2020 17:17:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588810660; bh=UIo23+S6FZo+uS7f6Vxn5xb0g1NmBE0dV2Y+MwYnVqs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rJ1UzGi1LBdoL+R0ko4enFOY9JXmBw0IBruDIG48NkpFjr/bs37+b0nIrzn/L7g9E JT6WPAgGr+OZkVWWPu5imkTMaFKmMNK5JZNzLeK/WXC28wj9hUYP43Wo1ESHVkEKIQ bmmePRM5L+tcqsU0jJfmnu9eDUius52qnqcvS0UQ=
Date: Wed, 06 May 2020 17:17:40 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/push/5032718192@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb353a4a3360_54e53fba4c6cd96410891de"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6HWmxebdIcz0w3Eji08G5DcxC3k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 00:17:44 -0000

----==_mimepart_5eb353a4a3360_54e53fba4c6cd96410891de
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

acb7b227f19ac7572efb987e60f8e494e1301e32  Basic editing


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620/files/5efe1df7db38536d6b9e2153e5ecb52dacb1105a..acb7b227f19ac7572efb987e60f8e494e1301e32

----==_mimepart_5eb353a4a3360_54e53fba4c6cd96410891de
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/acb7b227f19ac7572efb987e60f8e494e1301e32">acb7b22</a>  Basic editing</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3620/files/5efe1df7db38536d6b9e2153e5ecb52dacb1105a..acb7b227f19ac7572efb987e60f8e494e1301e32">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3LN5FE2KI5WSXTE23RQH42JANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4APFBEJ3NDZA7ICILRQH42JA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTCOJZG4YDIM2QOVZWQIZVGAZTENZRHAYTSMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620/files/5efe1df7db38536d6b9e2153e5ecb52dacb1105a..acb7b227f19ac7572efb987e60f8e494e1301e32",
"url": "https://github.com/quicwg/base-drafts/pull/3620/files/5efe1df7db38536d6b9e2153e5ecb52dacb1105a..acb7b227f19ac7572efb987e60f8e494e1301e32",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb353a4a3360_54e53fba4c6cd96410891de--


From nobody Wed May  6 17:18:32 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 A13383A0DD5 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 17:18:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 k7Sel1liYg20 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 17:18:28 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3865C3A0DD4 for <quic-issues@ietf.org>; Wed,  6 May 2020 17:18:28 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 8197F6A0E5D for <quic-issues@ietf.org>; Wed,  6 May 2020 17:18:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588810707; bh=1ZCUWR1wbpYbMJMcC6aRukvcWtq0eGoemANURd/NgU4=; h=Date:From:To:Subject:From; b=XD/bGRyV7MrQ7EvgNoOVjkFUlxvlTLyj1oPkmyTfsC5PQ+xMeEsaSsvrRDexR4DVD /TpJIpfEeMeNg+hbenF9mJmz9yxS/coTzAZ29NBbtcBI49ebmDbINDKQYhT/UdoYIo qGajxLrdc7U3zVOygxT+a5bvsrt1Z3BDS91kDca4=
Date: Wed, 06 May 2020 17:18:27 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/94d777-1db30d@github.com>
Subject: [quicwg/base-drafts] 1db30d: Script updating gh-pages from acb7b227. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Mn5-qTpF2iHxb50H6ExOJurP7bo>
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: Thu, 07 May 2020 00:18:31 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1db30d22b4dfd0818674cea5abebdbc7b2c08a71
      https://github.com/quicwg/base-drafts/commit/1db30d22b4dfd0818674cea5abebdbc7b2c08a71
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-http.html
    M forgery-limit/draft-ietf-quic-http.txt
    M forgery-limit/draft-ietf-quic-invariants.html
    M forgery-limit/draft-ietf-quic-invariants.txt
    M forgery-limit/draft-ietf-quic-qpack.html
    M forgery-limit/draft-ietf-quic-qpack.txt
    M forgery-limit/draft-ietf-quic-recovery.html
    M forgery-limit/draft-ietf-quic-recovery.txt
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from acb7b227. [ci skip]



From nobody Wed May  6 17:38:42 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 1E0BE3A0DE1 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 17:38:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 S-zpiHmhgZ4J for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 17:38:40 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DCAA73A0DDF for <quic-issues@ietf.org>; Wed,  6 May 2020 17:38:39 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id CAB48C60208 for <quic-issues@ietf.org>; Wed,  6 May 2020 17:38:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588811918; bh=ihJeA/uSfwln4cDMOq6UT7ZsRcf+cVUuP9QRUCcukpc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Cx3An8nOvNIITl7p/XnPrnb8Km0k6y/H0waY+kURDYcUMGJTDGJKDQz/XE0XRViKV HAeq5968uGvpsD2qcW/WvJ+flC75shR2xzDmQc7QRPRT4CYWeGM4hSSDLIw/TMhgkV e6fgOUq888gZD7T9aBjZw2CMZaYi6yAXi0VXOqhQ=
Date: Wed, 06 May 2020 17:38:38 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3TKBXIDVGRVYG2WIN4X44Y5EVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/c624963153@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb3588eb9f29_4c3f3fb2d80cd968919365"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: mikkelfj
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/A-qLqSw4VUi8czdPrSdwNBySOUk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 00:38:41 -0000

----==_mimepart_5eb3588eb9f29_4c3f3fb2d80cd968919365
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

So you are consuming the CNWD a bit too fast in anticipation of it growing before you run out and if it shrinks instead, I suppose you enter a period of silence because you over-consumed. But couldn't that also be detrimental? Perhaps more so unreliable transmission with a timing aspect.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624963153
----==_mimepart_5eb3588eb9f29_4c3f3fb2d80cd968919365
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>So you are consuming the CNWD a bit too fast in anticipation of it growing before you run out and if it shrinks instead, I suppose you enter a period of silence because you over-consumed. But couldn't that also be detrimental? Perhaps more so unreliable transmission with a timing aspect.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624963153">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4A3T32QVNCZRZP43LRQH7I5ANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5HF6QSNSLZVACUSQLRQH7I5A5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVAC4UI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624963153",
"url": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624963153",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb3588eb9f29_4c3f3fb2d80cd968919365--


From nobody Wed May  6 17:54:16 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 347353A0DED for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 17:54:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 NmSR6fE9rKHk for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 17:54:14 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 02B4B3A0DE6 for <quic-issues@ietf.org>; Wed,  6 May 2020 17:54:13 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 2A1768C0C5A for <quic-issues@ietf.org>; Wed,  6 May 2020 17:54:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588812853; bh=VFlOJ1bRr/wyPIagn3sFHUbekxa4+tjVCjKEXfjyrFM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=taaC801HB7uLF+mI+XooGLA/ooGog2YZGYUgU6sCHtstbKpVHDFHLxwHwtIqfUfuB eM8F3ZZgJXNDFV8TQINEsOwe1ZJElkNHHmbj5sagm3UXt7Vuwy7P33ww4HEbG05Rvc lzI1K14A7sQWJUha3QXaQd6UGq8TBJxL5iyFL99M=
Date: Wed, 06 May 2020 17:54:13 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK73NH4S4ZFJPRFSV4V4X46TLEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/c624967165@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb35c3519e34_380f3ff0868cd960131237"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/W8ZnKiH541MJeVH6iVCFjCJOfd4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 00:54:15 -0000

----==_mimepart_5eb35c3519e34_380f3ff0868cd960131237
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The definition of the pacer should not ever limit the congestion window.  If the window collapses, then the cap on rate can apply the higher value.  I should make that clearer.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624967165
----==_mimepart_5eb35c3519e34_380f3ff0868cd960131237
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The definition of the pacer should not ever limit the congestion window.  If the window collapses, then the cap on rate can apply the higher value.  I should make that clearer.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624967165">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4HDT7OA25KETAERXTRQIBDLANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7WJEWER7LEIMB6TI3RQIBDLA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVAD37I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624967165",
"url": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624967165",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb35c3519e34_380f3ff0868cd960131237--


From nobody Wed May  6 17:59:58 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 284433A0DF2 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 17:59:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 J-1_LCfvwpnE for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 17:59:54 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E5AE33A0C6B for <quic-issues@ietf.org>; Wed,  6 May 2020 17:59:53 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 4FD3BC60ACF for <quic-issues@ietf.org>; Wed,  6 May 2020 17:59:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588813192; bh=7Hp+KWnw9o83f1KU1XcBJCvBJ79xTsDfU2QqxC1/E1Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hw53uMDuRZXrChpN0BDDIKx2i793Ca+4HQF5iosqYt3fy0ka+EXghf+Kk79d5S6Oy npd5riQBLraBFdfwvd4ShVG+SUkGRJBnNWRwn7v247WAPENNzmzqK094/ewaIQgXVI jSU292Weay0hzZ052iHJFk/2Xq0/72EP/AeNg5sQ=
Date: Wed, 06 May 2020 17:59:52 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7ORG4JCRPHFYH2HVF4X47IREVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/c624968569@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb35d883f821_684b3fdadc0cd96488391e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Ax6wHWUeqKHDB-67ePZfJ6KbzWM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 00:59:56 -0000

----==_mimepart_5eb35d883f821_684b3fdadc0cd96488391e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Oh, I went back to my code and found why I wanted N.  With the same example as before, you are sending 10 packets per second and the congestion window doubles.  If you apply the formula in one way, you can get some odd spikes in the rate.  Say that you measure over 10s (i.e., 100p/10s), and the rate doubles.  If you attempt to reach the new target in the next second (200p/10s), your send rate goes up by a factor of 10 briefly.  There is less incentive to do that sort of compensation if you have been sending at a higher rate previously.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624968569
----==_mimepart_5eb35d883f821_684b3fdadc0cd96488391e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Oh, I went back to my code and found why I wanted N.  With the same example as before, you are sending 10 packets per second and the congestion window doubles.  If you apply the formula in one way, you can get some odd spikes in the rate.  Say that you measure over 10s (i.e., 100p/10s), and the rate doubles.  If you attempt to reach the new target in the next second (200p/10s), your send rate goes up by a factor of 10 briefly.  There is less incentive to do that sort of compensation if you have been sending at a higher rate previously.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624968569">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYWS3KXSTKG3ZD3G3LRQIBYRANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2TNLWUOHKJOPKOQNTRQIBYRA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVAEG6I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624968569",
"url": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-624968569",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb35d883f821_684b3fdadc0cd96488391e--


From nobody Wed May  6 18:05:16 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 48F2F3A0DFB for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 18:05:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 EkOFo9aNORs6 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 18:05:12 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4F5B13A0B26 for <quic-issues@ietf.org>; Wed,  6 May 2020 18:05:12 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 9FC0126164C for <quic-issues@ietf.org>; Wed,  6 May 2020 18:05:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588813511; bh=hjs7VU4GkKKQ7I1vLHMQsBvkxRlvA2mKvASlUYpLmtY=; h=Date:From:To:Subject:From; b=nim//7T05XzI54BvmrjJUN144U4XAZ1YnZZqJkIc8QDDyuT+Uplwppuxq2XrQbhh8 GochRpxCR0X32SAMvP/O42gFWIWcQcGLXqcmuY/6GEa13pY+oWwzWGGYhSNVAAgM4N ffwcYLjAPcfYdGaCGg7+etNCJvpiz+nwW71i7cXA=
Date: Wed, 06 May 2020 18:05:11 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/561df0-a4b888@github.com>
Subject: [quicwg/base-drafts] a4b888: Reword rationale somewhat
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/n7jEoQ5ooUu0vlZxPk8oMXYI3Io>
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: Thu, 07 May 2020 01:05:14 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: a4b888eab05865e39b40e240bb3abf962f95de9b
      https://github.com/quicwg/base-drafts/commit/a4b888eab05865e39b40e240bb3abf962f95de9b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Reword rationale somewhat



From nobody Wed May  6 18:05:41 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 458243A0DFC for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 18:05:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 2RkTIup5teWX for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 18:05:20 -0700 (PDT)
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 7688D3A0B26 for <quic-issues@ietf.org>; Wed,  6 May 2020 18:05:20 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 93B8E282BEE for <quic-issues@ietf.org>; Wed,  6 May 2020 18:05:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588813519; bh=b83qGXTfjzuv3Y1dPpUbEDP94OI5riexFhXSuaL5URo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wokwJ4Gdmg+ZVQlrA23CQSpBHvGipFH+YGIlwbme9Sbsb71B4nBIOIl3veKCJ+hqW 9WZPdZbIS236Q2RcKmOsEhow8YVuRvwlh6ZFGQu+45G03CLSE4Yfv3q2wCg15iFE3+ rRAGDCl8pGAynEbG0Hxbex2zKBsFMQMUL5RrNE5o=
Date: Wed, 06 May 2020 18:05:19 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/push/5032852650@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb35ecf83eeb_10773fc3246cd9601282884"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Ez6IMtGuDzTPmDOGYNWDPNfqdLI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 01:05:27 -0000

----==_mimepart_5eb35ecf83eeb_10773fc3246cd9601282884
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

a4b888eab05865e39b40e240bb3abf962f95de9b  Reword rationale somewhat


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630/files/561df07e9b817460e4006266af1e0acee19c0f8a..a4b888eab05865e39b40e240bb3abf962f95de9b

----==_mimepart_5eb35ecf83eeb_10773fc3246cd9601282884
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/a4b888eab05865e39b40e240bb3abf962f95de9b">a4b888e</a>  Reword rationale somewhat</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3630/files/561df07e9b817460e4006266af1e0acee19c0f8a..a4b888eab05865e39b40e240bb3abf962f95de9b">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6EOVPWOSHXFO54SHLRQICM7ANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2RIRPEAHOOHX6Y5UTRQICM7A5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTGOBYGMYDOOKQOVZWQIZVGAZTEOBVGI3DKMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630/files/561df07e9b817460e4006266af1e0acee19c0f8a..a4b888eab05865e39b40e240bb3abf962f95de9b",
"url": "https://github.com/quicwg/base-drafts/pull/3630/files/561df07e9b817460e4006266af1e0acee19c0f8a..a4b888eab05865e39b40e240bb3abf962f95de9b",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb35ecf83eeb_10773fc3246cd9601282884--


From nobody Wed May  6 18:06:13 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 85F8F3A0DFB for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 18:06:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 0SJZhbU74mOP for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 18:06:09 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C244E3A0B26 for <quic-issues@ietf.org>; Wed,  6 May 2020 18:06:09 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id E17E4660854 for <quic-issues@ietf.org>; Wed,  6 May 2020 18:06:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588813568; bh=/DZVzRkBL4JAtsTyPdEIJ1F858KXe63P6vleoemUrYQ=; h=Date:From:To:Subject:From; b=US2aSXavCcaJtJDO5xKgqpV/GSDVSyl6LX+7ZGtD7AZdkgkA2MG6luWzRzdnkxP+5 mJB8jwPXJThxHZ2tiFCZBUigkZNVDzggLXf8gaHLpi4NtlpQmzs5Nz0XSDRkduQXP0 d5ajl3w7KePhtzhnwD4nnvgF0dGlWlfUz0oTBLtE=
Date: Wed, 06 May 2020 18:06:08 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1db30d-8eb39b@github.com>
Subject: [quicwg/base-drafts] 8eb39b: Script updating gh-pages from a4b888ea. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/k651QcwJT9AV5tlWFiQ6hxUHvjo>
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: Thu, 07 May 2020 01:06:12 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8eb39b88b962fd5e17d613b5ec31ddfacdca00f7
      https://github.com/quicwg/base-drafts/commit/8eb39b88b962fd5e17d613b5ec31ddfacdca00f7
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-http.html
    M pacing-dfn/draft-ietf-quic-http.txt
    M pacing-dfn/draft-ietf-quic-invariants.html
    M pacing-dfn/draft-ietf-quic-invariants.txt
    M pacing-dfn/draft-ietf-quic-qpack.html
    M pacing-dfn/draft-ietf-quic-qpack.txt
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt
    M pacing-dfn/draft-ietf-quic-tls.html
    M pacing-dfn/draft-ietf-quic-tls.txt
    M pacing-dfn/draft-ietf-quic-transport.html
    M pacing-dfn/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from a4b888ea. [ci skip]



From nobody Wed May  6 23:37:58 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 D2BF13A097E for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 23:37:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 US_07iDKoUhg for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 23:37:54 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 61B513A097D for <quic-issues@ietf.org>; Wed,  6 May 2020 23:37:54 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 19C316A19D2 for <quic-issues@ietf.org>; Wed,  6 May 2020 23:37:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588833473; bh=i9WFq1BMZ5+qRVeSU8+WSEsQhhTr8NTUlD9UTQE0TFo=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=uvFhgT2325/wB+RZZ00C5R7xiPXSEtDRBv0hczd6FD9Uq3cKR1OUgybXj16gjQD9Y WdA9QhX0UGWtHW+r/wz6r5xOku3ySz5BoxRS7210PuynHdYLOMnUyJXfsSdhLffu/P 292lhEN+QUnDjQHkjiV5Oc9MUouhkX6IWx3Refh4=
Date: Wed, 06 May 2020 23:37:53 -0700
From: Kazu Yamamoto <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2GJNIYTWY644EGS5N4X6G4DEVBNHHCJFQAHE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3632@github.com>
Subject: [quicwg/base-drafts] Minor editorical issue in transport draft (#3632)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb3acc1ab96_32023f90f24cd96c3368d6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazu-yamamoto
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SfX2ZAY4CV1wV5ZhiabEj-NH8eQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 06:37:56 -0000

----==_mimepart_5eb3acc1ab96_32023f90f24cd96c3368d6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I found inconsistency both in Figure 4 and Figure 5. For instance, in Figure 4, we have:

```
Initial[1]: ACK[0]
Handshake[0]: CRYPTO[FIN], ACK[0]
1-RTT[0]: STREAM[0, "..."], ACK[0] ->
```

The packets are in ascending encryption-level order. But the last part is drawn in the reverse order:

```
                            1-RTT[1]: STREAM[3, "..."], ACK[0]
                                       <- Handshake[1]: ACK[0]
```

Is this intentional? If not, let's modify it as:

```
                                          Handshake[1]: ACK[0]
                         <- 1-RTT[1]: STREAM[3, "..."], ACK[0]

````

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3632
----==_mimepart_5eb3acc1ab96_32023f90f24cd96c3368d6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I found inconsistency both in Figure 4 and Figure 5. For instance, in Figure 4, we have:</p>
<pre><code>Initial[1]: ACK[0]
Handshake[0]: CRYPTO[FIN], ACK[0]
1-RTT[0]: STREAM[0, "..."], ACK[0] -&gt;
</code></pre>
<p>The packets are in ascending encryption-level order. But the last part is drawn in the reverse order:</p>
<pre><code>                            1-RTT[1]: STREAM[3, "..."], ACK[0]
                                       &lt;- Handshake[1]: ACK[0]
</code></pre>
<p>Is this intentional? If not, let's modify it as:</p>
<pre><code>                                          Handshake[1]: ACK[0]
                         &lt;- 1-RTT[1]: STREAM[3, "..."], ACK[0]

</code></pre>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3632">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYRHDXX3O34ZSDXA2TRQJJMDANCNFSM4M3BQUVA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2HATSEDAB4XNF3U3DRQJJMDA5CNFSM4M3BQUVKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JEWAA4Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3632",
"url": "https://github.com/quicwg/base-drafts/issues/3632",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb3acc1ab96_32023f90f24cd96c3368d6--


From nobody Wed May  6 23:42:21 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 78C033A097D for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 23:42:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 iTCBfcmW2D44 for <quic-issues@ietfa.amsl.com>; Wed,  6 May 2020 23:42:18 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 391E53A0975 for <quic-issues@ietf.org>; Wed,  6 May 2020 23:42:18 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 8CDF91210C2 for <quic-issues@ietf.org>; Wed,  6 May 2020 23:42:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588833737; bh=+ZVPBVzeYy7pt3uJQ8pRYM8BKmSZOF5X6uUH0Z+GRF4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=uyaW4ImpDzdes8yjsYcz6gDTzZiCye1WiOX326pbmPbE2MMDzXffJaNKHD6sNCvnz onhzB7YBGmfXaW5LZuRUb0KZ0VIxYVm9w/KQf4FfqHyi7MOAi7I7GslvdSWBh5xgMS ZNVNfqtkjYxXiqrB3jzr6xuv5Lle8C1Cnio3++5Q=
Date: Wed, 06 May 2020 23:42:17 -0700
From: Kazu Yamamoto <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY5GYRDLFQ6KC4HJR54X6HMTEVBNHHCJFQILU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3633@github.com>
Subject: [quicwg/base-drafts] Minor editorical issue in QPACK draft (#3633)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb3adc965f2b_77aa3fd04e2cd964273855"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazu-yamamoto
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VXyBS3UdFnYTLnH1uLb7MJDt-3c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 06:42:20 -0000

----==_mimepart_5eb3adc965f2b_77aa3fd04e2cd964273855
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In Figure 1, the right hand means the future. But in Figure 2, 3 and 4, the right hand indicates the past. Is this intentional? If not, why don't we redraw Figure 1 or Figure 2/3/4 for consistency?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3633
----==_mimepart_5eb3adc965f2b_77aa3fd04e2cd964273855
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>In Figure 1, the right hand means the future. But in Figure 2, 3 and 4, the right hand indicates the past. Is this intentional? If not, why don't we redraw Figure 1 or Figure 2/3/4 for consistency?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3633">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZVREIVJBZVKHKDIY3RQJJ4TANCNFSM4M3BSWTA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYIOBQJFUS3I6IWB2TRQJJ4TA5CNFSM4M3BSWTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JEWBBOQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3633",
"url": "https://github.com/quicwg/base-drafts/issues/3633",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb3adc965f2b_77aa3fd04e2cd964273855--


From nobody Thu May  7 00:01: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 95FDB3A08D7 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 00:01:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 U4ZYf4Vhim2m for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 00:01:46 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 564EE3A08D4 for <quic-issues@ietf.org>; Thu,  7 May 2020 00:01:45 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id AC6A38C04D6 for <quic-issues@ietf.org>; Thu,  7 May 2020 00:01:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588834903; bh=bQqVoqrHtm06KofScg+nZs9XBoH7lT30ZPbKR2Ocmnw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0fP6VqDaIo72z653RUKpSSc1fSI/jpP/rm5vlir2fSQVSd7rUXt4uGKPmKRrLKx4x gVfVV1+9HhVZ6kGKKKL/bnaWgSzwuLdQSQhDf/TJzbNt58MVPOTIYDTtBvPI6iQpm+ j4/8EAUA1wDyWgRMj6+jV9Aii0NVX/SvzXcM1APw=
Date: Thu, 07 May 2020 00:01:43 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK75VDVLKWJMMOMEIRN4X6JVPEVBNHHCJFQAHE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3632/625069736@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3632@github.com>
References: <quicwg/base-drafts/issues/3632@github.com>
Subject: Re: [quicwg/base-drafts] Minor editorical issue in transport draft (#3632)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb3b2579b78f_297e3f9c8b2cd960310778"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sBFTY5YpIBa3UrUU8QfOJ5Mr1cs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 07:01:51 -0000

----==_mimepart_5eb3b2579b78f_297e3f9c8b2cd960310778
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Sounds good.  Want to send in a PR?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3632#issuecomment-625069736
----==_mimepart_5eb3b2579b78f_297e3f9c8b2cd960310778
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Sounds good.  Want to send in a PR?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3632#issuecomment-625069736">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ZP7QCS2V2XJWIZ53RQJMFPANCNFSM4M3BQUVA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7B76RM4U77ES5OQ6TRQJMFPA5CNFSM4M3BQUVKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVA45KA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3632#issuecomment-625069736",
"url": "https://github.com/quicwg/base-drafts/issues/3632#issuecomment-625069736",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb3b2579b78f_297e3f9c8b2cd960310778--


From nobody Thu May  7 01:25:53 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 15F9E3A0955 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 01:25:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.039
X-Spam-Level: 
X-Spam-Status: No, score=-1.039 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 21Ex6UD-Qdfp for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 01:25:50 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E65DC3A0A4D for <quic-issues@ietf.org>; Thu,  7 May 2020 01:25:49 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 295A66A05E2 for <quic-issues@ietf.org>; Thu,  7 May 2020 01:25:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588839949; bh=ttb7RrcIdJ9RsrQKMfx0uDaT78CD+KXdD+R1JsEGtuE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HgunzjcSgiicvgGKYxgd8nSsAnltR99hOcCFDQ/HbxWijKPClR8nQg5TlW1/29BOl +FzWJ3PY6uG3TtuMsx9Cp7yRdigq2Wle+tuo7VzaVVxHyHSmZAJ73XuxhZzfs+CSU0 HgtEycue60n4iVa5yDYKQzXQFYzvTRCegyLNetDs=
Date: Thu, 07 May 2020 01:25:49 -0700
From: MikkelFJ <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK46B4KSQ6DTJGC4G254X6TQ3EVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/c625108247@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb3c60d1a6c8_2c633fadb22cd9643376c8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: mikkelfj
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Jk4RfW-6Qg8y4OfJT-l1HnS4Z3k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 08:25:51 -0000

----==_mimepart_5eb3c60d1a6c8_2c633fadb22cd9643376c8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm using exponential smoothing in other contexts: x  + (1 - x).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#issuecomment-625108247
----==_mimepart_5eb3c60d1a6c8_2c633fadb22cd9643376c8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I'm using exponential smoothing in other contexts: x  + (1 - x).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#issuecomment-625108247">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYJUTRM2UQPTAZV7KLRQJWA3ANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6BCQXNVK3QDXIUFXDRQJWA3A5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVBGKFY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-625108247",
"url": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-625108247",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb3c60d1a6c8_2c633fadb22cd9643376c8--


From nobody Thu May  7 04:02:38 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 0CFEB3A0BC1 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 04:02:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.479
X-Spam-Level: 
X-Spam-Status: No, score=-1.479 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 9e274cE5DQ-K for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 04:02:33 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 69ED83A0BBF for <quic-issues@ietf.org>; Thu,  7 May 2020 04:02:33 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 45948A1E6A for <quic-issues@ietf.org>; Thu,  7 May 2020 04:02:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588849350; bh=qqsRQPeIgRKTkV2V5XIMUvuy2gLyeh6t4UnhuD6fL1Q=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=p8in9uX9CSoSEIuSyC9tk5UgqZf9Yz0rIDZML6QAX0Zp01/cZo4kw/pOLSwLculc0 0BDIb4BWZjIggzqsf9U1XqpWCnQmDmVIhCtjNt6Xgy6S+U9BMOHS/T72NZICA1AShe gAzIm2YWfkfka0BTw36LkDNIK5S3FKmfMI9iIxDs=
Date: Thu, 07 May 2020 04:02:30 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7WOSBRBSJENGW6VAV4X7F4NEVBNHHCJGDDN4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3634@github.com>
Subject: [quicwg/base-drafts] Describe error handling of GOAWAY ID increase (#3634)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb3eac637324_7b8a3f8c278cd960440cb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/75Lc6efKKgGPKY9uv9uLmVDeXc0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 11:02:36 -0000

----==_mimepart_5eb3eac637324_7b8a3f8c278cd960440cb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #3631 
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3634

-- Commit Summary --

  * describe error handling of GOAWAY ID increase

-- File Changes --

    M draft-ietf-quic-http.md (3)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3634.patch
https://github.com/quicwg/base-drafts/pull/3634.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3634

----==_mimepart_5eb3eac637324_7b8a3f8c278cd960440cb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3631.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="613617147" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3631" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3631/hovercard" href="https://github.com/quicwg/base-drafts/issues/3631">#3631</a></p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3634'>https://github.com/quicwg/base-drafts/pull/3634</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>describe error handling of GOAWAY ID increase</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3634/files#diff-3d2f9fd0738589657498f2c06ee02f2f">draft-ietf-quic-http.md</a>
    (3)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3634.patch'>https://github.com/quicwg/base-drafts/pull/3634.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3634.diff'>https://github.com/quicwg/base-drafts/pull/3634.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3634">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6LNWT5TTPRVM4QBBTRQKIMNANCNFSM4M3HDKRQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2YXT6EOC3GWZZIGSLRQKIMNA5CNFSM4M3HDKR2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JEYMNXQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3634",
"url": "https://github.com/quicwg/base-drafts/pull/3634",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb3eac637324_7b8a3f8c278cd960440cb--


From nobody Thu May  7 07:21:48 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 354243A05DE for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 07:21:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 3zhnYynq79n7 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 07:21:41 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3D0973A0528 for <quic-issues@ietf.org>; Thu,  7 May 2020 07:21:41 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 8108F6A0C5A for <quic-issues@ietf.org>; Thu,  7 May 2020 07:21:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588861300; bh=0/Z2fwdXaoV/Q6sQ9uu5JQTi7ahULAolZVaM+mW1V/o=; h=Date:From:To:Subject:From; b=msMblqmr2qJvFm9TOuF4+Yp/HOMs/ZSTncVuTLMIBXVnJx+nQr98WwClAEGxYHE8s F8ilQmQOFUIBSo7L0K1wSqVZY7GEmS33TqgKF0VeYhRzx7SnuQ9M0Iz+xmoEghkCSU W86qDqc3A4Q/lxASolkxCFt8KRbJ9aZEfoEzE0Ks=
Date: Thu, 07 May 2020 07:21:40 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/dcf603-32b432@github.com>
Subject: [quicwg/base-drafts] 32b432: A missed commit
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QKucWN_CJirI00hRkFaUM2AJcfo>
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: Thu, 07 May 2020 14:21:46 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 32b432f443270261c5dc6b58a1519198152102ca
      https://github.com/quicwg/base-drafts/commit/32b432f443270261c5dc6b58a1519198152102ca
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    R workflow.xml

  Log Message:
  -----------
  A missed commit



From nobody Thu May  7 07:22:53 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 C5BEB3A0849 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 07:22:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 cVVVzorqoxrw for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 07:22:43 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 183313A0781 for <quic-issues@ietf.org>; Thu,  7 May 2020 07:22:43 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 27623C60725 for <quic-issues@ietf.org>; Thu,  7 May 2020 07:22:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588861362; bh=2DVnzNkLgW1/kXC2j1/DsxzbjEzDxhBjfTAertEKbW0=; h=Date:From:To:Subject:From; b=UJ1hkRLfsEm1yh1UxrI9zd0p2gY/F35DzzQdFU4thszEA9wMP82r0XpCeJ9i1wxdF ezyxWsu6RLCbD19uTACxiMEOm+AoVEYC4MIgL2K8k7coOww7iGVtGsNi+43rGC0DKC tzWhDasVpWmBBh8x344H2TVwwwPmdKz0aCLlLnL8=
Date: Thu, 07 May 2020 07:22:42 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8eb39b-5592ac@github.com>
Subject: [quicwg/base-drafts] 5592ac: Script updating gh-pages from 32b432f4. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8E1xyj8celWgNPCPgko15TcvmP4>
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: Thu, 07 May 2020 14:22:51 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5592ac2dddc399f5ad152e3f269a8c90ee590f2b
      https://github.com/quicwg/base-drafts/commit/5592ac2dddc399f5ad152e3f269a8c90ee590f2b
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html
    R preferred_ncid/draft-ietf-quic-http.html
    R preferred_ncid/draft-ietf-quic-http.txt
    R preferred_ncid/draft-ietf-quic-invariants.html
    R preferred_ncid/draft-ietf-quic-invariants.txt
    R preferred_ncid/draft-ietf-quic-qpack.html
    R preferred_ncid/draft-ietf-quic-qpack.txt
    R preferred_ncid/draft-ietf-quic-recovery.html
    R preferred_ncid/draft-ietf-quic-recovery.txt
    R preferred_ncid/draft-ietf-quic-tls.html
    R preferred_ncid/draft-ietf-quic-tls.txt
    R preferred_ncid/draft-ietf-quic-transport.html
    R preferred_ncid/draft-ietf-quic-transport.txt
    R preferred_ncid/index.html

  Log Message:
  -----------
  Script updating gh-pages from 32b432f4. [ci skip]



From nobody Thu May  7 07:22:58 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 C6E0D3A0781 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 07:22:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 QQPDpQkAbnTe for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 07:22:54 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3BF1B3A08C7 for <quic-issues@ietf.org>; Thu,  7 May 2020 07:22:53 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id B0D5C96056D for <quic-issues@ietf.org>; Thu,  7 May 2020 07:22:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588861371; bh=z27P1ZOblmdN2ZJMcMGnkHWdtP/0G2GI6dWdPNjXgXU=; h=Date:From:To:Subject:From; b=TB55GOUfakwmP3Ho+wlUQrOHY+lyjeqCG6njbzZ8xhuSBWiH1BXI6jd+DLw9csKZ7 MfGkzE4iska/qhk1JzeCBk4yb3ciuX1OmbgsyOmKaRi9mbUMnwC/QeeODvKC9vgKP+ Su3pjfEfwVdz4vEfIv/M0K5TJCZqq0oONUUgyFgM=
Date: Thu, 07 May 2020 07:22:51 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/5592ac-161bf8@github.com>
Subject: [quicwg/base-drafts] 161bf8: Script updating archive at 2020-05-07T14:22:29Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MRLor3s-ABD6K3XNSMFhExHp_V4>
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: Thu, 07 May 2020 14:22:56 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 161bf8c6cd37eebb48fdcba0d99afc55b37cbb2e
      https://github.com/quicwg/base-drafts/commit/161bf8c6cd37eebb48fdcba0d99afc55b37cbb2e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-07T14:22:29Z. [ci skip]



From nobody Thu May  7 07:42:43 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 BF2A23A0061 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 07:42:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 glOBQwYrX8sl for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 07:42:40 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 933203A003D for <quic-issues@ietf.org>; Thu,  7 May 2020 07:42:40 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id DA639660E4C for <quic-issues@ietf.org>; Thu,  7 May 2020 07:42:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588862559; bh=MjjyeMxBq0STJmAP2IF0lOOY88b4vaQ8MsmfAStKkME=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Rff11v8AjAKiTh/eXb6b7dnitbYEmsly1wchWnoumMxtW93pgE/7hBlLVK2pYvcoV VximD2odyM1KDkS0eiMjP9BK5fkO8q3ppj+n2JyQFPhsjVoOZpO/6VX4QAn6Z6QhKq cZkV3z66QCX3Q3Cdb+d1CLvLMR51EaUBU1hqr2js=
Date: Thu, 07 May 2020 07:42:39 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZCHA36BAV5XDJVONF4X77V7EVBNHHCJGDDN4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3634/review/407542864@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3634@github.com>
References: <quicwg/base-drafts/pull/3634@github.com>
Subject: Re: [quicwg/base-drafts] Describe error handling of GOAWAY ID increase (#3634)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb41e5fcabcc_7413ffb214cd9641585d7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xclmWxKtNBrOy_HwdnBpKbhkMiI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 14:42:42 -0000

----==_mimepart_5eb41e5fcabcc_7413ffb214cd9641585d7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3634#pullrequestreview-407542864
----==_mimepart_5eb41e5fcabcc_7413ffb214cd9641585d7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3634#pullrequestreview-407542864">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZFTJEB6VBJH4RMOWLRQLCF7ANCNFSM4M3HDKRQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7LL2PICNODZZUUYB3RQLCF7A5CNFSM4M3HDKR2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBFJYUA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3634#pullrequestreview-407542864",
"url": "https://github.com/quicwg/base-drafts/pull/3634#pullrequestreview-407542864",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb41e5fcabcc_7413ffb214cd9641585d7--


From nobody Thu May  7 08:01:17 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 C67703A0920 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 08:01:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Hnb2RSNfWoM7 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 08:01:10 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5C2673A091E for <quic-issues@ietf.org>; Thu,  7 May 2020 08:01:10 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 7385A5208A7 for <quic-issues@ietf.org>; Thu,  7 May 2020 08:01:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588863669; bh=vAUhaOk6WfSDqDQDwoVpqGp1pSy7/u9EGI/Zm9Ri6nw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NzjcVKZ5ygyrTwlAtuH70l5OKumxj/Oq3e7u9BS0g+npdrfA6nz4X1OKiKxAPlZcX DTIN0xH116ymLmu5g4fA7V9W2zbm416Vmn4FLjCUY3sUf+cgVAHH0cnPPDBW1+Lb9L oYRJB+9uwCtKh/5ckFhgWWdA1kUk5VI0lDjsjtL4=
Date: Thu, 07 May 2020 08:01:09 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7QTDZ2ZBU5Y3KSYIN4YAB3LEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/407561208@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb422b563f0d_3f0c3f98090cd95c102223"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/39K6thojux20VoUB3J2oe39IIiM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 15:01:15 -0000

----==_mimepart_5eb422b563f0d_3f0c3f98090cd95c102223
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue commented on this pull request.



> +packets can be used to obtain the same confidentiality protection as the limits
+specified in TLS.
+
+The usage limits defined in TLS 1.3 exist to provide protection against attacks
+on confidentiality and apply to successful applications of AEAD protection. The
+integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a per-AEAD limit. Endpoints
+MUST initiate a key update before reaching this limit. Applying a limit reduces
+the probability than attacker is able to successfully forge a packet; see

```suggestion
the probability that an attacker is able to successfully forge a packet; see
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-407561208
----==_mimepart_5eb422b563f0d_3f0c3f98090cd95c102223
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@LPardue</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3620#discussi=
on_r421574288">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +packets can be used to obtain the same co=
nfidentiality protection as the limits=0D
+specified in TLS.=0D
+=0D
+The usage limits defined in TLS 1.3 exist to provide protection against =
attacks=0D
+on confidentiality and apply to successful applications of AEAD protecti=
on. The=0D
+integrity protections in authenticated encryption also depend on limitin=
g the=0D
+number of attempts to forge packets. TLS achieves this by closing connec=
tions=0D
+after any record fails an authentication check. In comparison, QUIC igno=
res any=0D
+packet that cannot be authenticated, allowing multiple attempts at defea=
ting=0D
+integrity protection.=0D
+=0D
+Endpoints MUST count the number of packets that are received but cannot =
be=0D
+authenticated. Packet protection keys MUST NOT be used for removing pack=
et=0D
+protection after authentication fails on more than a per-AEAD limit. End=
points=0D
+MUST initiate a key update before reaching this limit. Applying a limit =
reduces=0D
+the probability than attacker is able to successfully forge a packet; se=
e=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-the probability than attacker is able to succ=
essfully forge a packet; see=0D
+the probability that an attacker is able to successfully forge a packet;=
 see=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3620#pullrequestreview-407561208">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K3SG77AIBPAKFUFFK3RQLELLANCNFSM4MW4IM3A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK7VP2FLCZKC2SWUTGTRQLELLA5CNFSM4=
MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODBFOH6A.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestrev=
iew-407561208",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview=
-407561208",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb422b563f0d_3f0c3f98090cd95c102223--


From nobody Thu May  7 12:44:39 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 37F7F3A0CB1 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 12:44:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 Nx09Jrzkgch7 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 12:44:36 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E5D643A0CAF for <quic-issues@ietf.org>; Thu,  7 May 2020 12:44:35 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id C5C4D282CDE for <quic-issues@ietf.org>; Thu,  7 May 2020 12:44:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588880674; bh=3QJApDukuustoFnIwMCCU7trjuLa27nzlM4f61AxtCU=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=gC2VzZy/D3f5rlpFkvvmeE8Pr+6D1ffHwe2MdP4+L2boUTS2bFnyisS6Qsgghwr3r p6eLh9lyu5o9XScHcERFtAdmgKDwKlPfsD2RgaUE5DBPaBjSkNjaA3ubD+avT4RFrj 80Wpr0d6dmNN+YztcdaCeG1dCJ/wVuuj2PaQZ6T4=
Date: Thu, 07 May 2020 12:44:34 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3FWXXNR4264VMGEA54YBDCFEVBNHHCJHLYIA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3635@github.com>
Subject: [quicwg/base-drafts] Nit in invariants draft (#3635)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb46522b6f6f_55393f8c5becd96c111581"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/piIVp8nYCzIn6UF1FhlJ8uCXk1A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 19:44:37 -0000

----==_mimepart_5eb46522b6f6f_55393f8c5becd96c111581
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Both section 4.2 and 4.3 say

> Bits that have version-specific semantics are marked with an X.

Unfortunately, the [new HTML format](https://quicwg.org/base-drafts/draft-ietf-quic-invariants.html#fig-long) doesn't have Xs. I'm not sure how to reword this.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3635
----==_mimepart_5eb46522b6f6f_55393f8c5becd96c111581
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Both section 4.2 and 4.3 say</p>
<blockquote>
<p>Bits that have version-specific semantics are marked with an X.</p>
</blockquote>
<p>Unfortunately, the <a href="https://quicwg.org/base-drafts/draft-ietf-quic-invariants.html#fig-long" rel="nofollow">new HTML format</a> doesn't have Xs. I'm not sure how to reword this.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3635">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4WQNCUUPR3OE5B423RQMFSFANCNFSM4M3TK5AA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYGHXNQV6WTS6GZ6YLRQMFSFA5CNFSM4M3TK5AKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JE5PBAA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3635",
"url": "https://github.com/quicwg/base-drafts/issues/3635",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb46522b6f6f_55393f8c5becd96c111581--


From nobody Thu May  7 12:48:05 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 689A73A0CCE for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 12:48:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Tj8jrxVWVUoC for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 12:48:01 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C143F3A0CBB for <quic-issues@ietf.org>; Thu,  7 May 2020 12:48:01 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 23202521F6B for <quic-issues@ietf.org>; Thu,  7 May 2020 12:48:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588880881; bh=fzcw845SznOzDlsXl5ENNYkld8znYyz90iSXxpXdfag=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qQ9TypUUoPNwmRIuAEZ46HTpklUkWUgpN+ojMM8ANZSvWJcRr1K4sxwEmv6eWKDBG wq1dth3OjJ25cMvgOeHJ6M50J0/8Q6aDEKS7AmAt0FVTzmAUBlYhwR0aMM5hdoDVK2 G9E5c3xNnYqi92YfyPWZvpWpEvVyeYBDCpVYrR40=
Date: Thu, 07 May 2020 12:48:01 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2NW6C53JBWBB4KXEN4YBDPDEVBNHHCJHLYIA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3635/625460666@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3635@github.com>
References: <quicwg/base-drafts/issues/3635@github.com>
Subject: Re: [quicwg/base-drafts] Nit in invariants draft (#3635)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb465f110cee_44123fdfa5ccd96c346d0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uXF-Cjlc8zWKGNdG9ediGaXaIFU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 19:48:04 -0000

----==_mimepart_5eb465f110cee_44123fdfa5ccd96c346d0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

how about `Bits that have version-specific semantics are called Version-Specific Bits` :)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3635#issuecomment-625460666
----==_mimepart_5eb465f110cee_44123fdfa5ccd96c346d0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>how about <code>Bits that have version-specific semantics are called Version-Specific Bits</code> :)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3635#issuecomment-625460666">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5QDRZN7N5CIHIHQTDRQMF7DANCNFSM4M3TK5AA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7FMV72RYZ55TJWRXDRQMF7DA5CNFSM4M3TK5AKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVD4LOQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3635#issuecomment-625460666",
"url": "https://github.com/quicwg/base-drafts/issues/3635#issuecomment-625460666",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb465f110cee_44123fdfa5ccd96c346d0--


From nobody Thu May  7 13:29:21 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 C9BF63A0D66 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:29:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 sCN8ynzUdJ5u for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:29:17 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8769D3A0D63 for <quic-issues@ietf.org>; Thu,  7 May 2020 13:29:17 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 3692A1C07C2 for <quic-issues@ietf.org>; Thu,  7 May 2020 13:29:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588883356; bh=8CsEU11l5ZkxnFVEnEXAMtxJ+1L0bDmHYcAnntx7S14=; h=Date:From:To:Subject:From; b=SsAfV6937gn+vjp0bmMpA0mU60YJW95IK5iW9I25OsTZsV7PNxWkcv6fnwTRlA2Pu rmuHVzBelAb/aY5mFL+d0UtSIZ8E6yaGCNzgOW9ZHrCzAp8MSic1aWnfprElng7sBg +tdsuUOYT5oYEYAm8ezRzCOVKXWfCu8yIgQWEAm4=
Date: Thu, 07 May 2020 13:29:16 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/invariants/consistency/000000-1b967a@github.com>
Subject: [quicwg/base-drafts] 1b967a: Text/figure consistency
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OZJKgR8Cf_NwwKhX_5TT_4kdhrs>
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: Thu, 07 May 2020 20:29:19 -0000

  Branch: refs/heads/invariants/consistency
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1b967adee968825c2f230d3c20c69118f70c4778
      https://github.com/quicwg/base-drafts/commit/1b967adee968825c2f230d3c20c69118f70c4778
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Text/figure consistency



From nobody Thu May  7 13:30:29 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 823883A0D63 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:30:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 sV0FdlKrSt3I for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:30:15 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 347743A0C04 for <quic-issues@ietf.org>; Thu,  7 May 2020 13:30:15 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 663FA1213D6 for <quic-issues@ietf.org>; Thu,  7 May 2020 13:30:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588883414; bh=3aiPCjXR8p7z4XRsNggtRVXa9Dpg3FDI7vcNW2hFI70=; h=Date:From:To:Subject:From; b=Vow3qvUfXQQVuLiaEH+2Iny3qOygMOULo6CzoXqUGrgqJXyhT1O85Q7ubrOPqLiDM 6e+BgaDmO5G5RI3yps1Ta/AN02w+AB/xYB+2OTeR4dzFGlSSSidkBmSze4g/uTe/EO tWUxm+oEBwk3wcuRIBZv/Y1u0ExrfDM2HSRGmavE=
Date: Thu, 07 May 2020 13:30:14 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/161bf8-eeaf7c@github.com>
Subject: [quicwg/base-drafts] eeaf7c: Script updating gh-pages from 1b967ade. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5RAI8IKPuQFCxwG2Lh34mYOewVA>
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: Thu, 07 May 2020 20:30:18 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: eeaf7c184ed8876c6ffa8abc9796647c67d5469d
      https://github.com/quicwg/base-drafts/commit/eeaf7c184ed8876c6ffa8abc9796647c67d5469d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M index.html
    A invariants/consistency/draft-ietf-quic-http.html
    A invariants/consistency/draft-ietf-quic-http.txt
    A invariants/consistency/draft-ietf-quic-invariants.html
    A invariants/consistency/draft-ietf-quic-invariants.txt
    A invariants/consistency/draft-ietf-quic-qpack.html
    A invariants/consistency/draft-ietf-quic-qpack.txt
    A invariants/consistency/draft-ietf-quic-recovery.html
    A invariants/consistency/draft-ietf-quic-recovery.txt
    A invariants/consistency/draft-ietf-quic-tls.html
    A invariants/consistency/draft-ietf-quic-tls.txt
    A invariants/consistency/draft-ietf-quic-transport.html
    A invariants/consistency/draft-ietf-quic-transport.txt
    A invariants/consistency/index.html

  Log Message:
  -----------
  Script updating gh-pages from 1b967ade. [ci skip]



From nobody Thu May  7 13:30:41 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 C90C43A0D68 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:30:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.479
X-Spam-Level: 
X-Spam-Status: No, score=-6.479 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 2XZ4aBemBjpw for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:30:38 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0F9893A0D66 for <quic-issues@ietf.org>; Thu,  7 May 2020 13:30:38 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 1A0A91C02C1 for <quic-issues@ietf.org>; Thu,  7 May 2020 13:30:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588883437; bh=ie4U7ditdDCk5+7+bzBe4B1HoGXZ5PKc3mgVCV6RFf0=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=npjtI+beLwLujX7sMUcFsWUyhinSD5adRF/u3LJWOy+jkD+P+z4OmmuXDRKHeWixC idP0r5N3sxXvMlwhSaKZltJz+z1qhvSg8ysawdkV8eYbZglVAeJFb6p4igTquzxbnU tg77XmTVHJlsdPpWTpW2Drdz+S7N7RplfuTij1qQ=
Date: Thu, 07 May 2020 13:30:37 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2GCRV6NWZ7P622HMV4YBIO3EVBNHHCJHOYRM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3636@github.com>
Subject: [quicwg/base-drafts] Text/figure consistency (#3636)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb46fedb3a7_4d153fb3226cd9684067b8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/inHbpU4rBI5uIz6zGXCZLxNGBIo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 20:30:40 -0000

----==_mimepart_5eb46fedb3a7_4d153fb3226cd9684067b8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Happened to notice that the updated figure (didn&#39;t check the old one) was inconsistent with the text about the allowed length of the CID fields.  Should be editorial, since the text wins any conflicts.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3636

-- Commit Summary --

  * Text/figure consistency

-- File Changes --

    M draft-ietf-quic-invariants.md (12)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3636.patch
https://github.com/quicwg/base-drafts/pull/3636.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3636

----==_mimepart_5eb46fedb3a7_4d153fb3226cd9684067b8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Happened to notice that the updated figure (didn't check the old one) was inconsistent with the text about the allowed length of the CID fields.  Should be editorial, since the text wins any conflicts.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3636'>https://github.com/quicwg/base-drafts/pull/3636</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Text/figure consistency</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3636/files#diff-56e4bfb748c2d740a862d41ab8d0dcd6">draft-ietf-quic-invariants.md</a>
    (12)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3636.patch'>https://github.com/quicwg/base-drafts/pull/3636.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3636.diff'>https://github.com/quicwg/base-drafts/pull/3636.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3636">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3UZAUVSVL2GOZDRELRQMK63ANCNFSM4M3UJ73Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ2WFNOBBKAQDPNQDLRQMK63A5CNFSM4M3UJ732YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JE53CFQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3636",
"url": "https://github.com/quicwg/base-drafts/pull/3636",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb46fedb3a7_4d153fb3226cd9684067b8--


From nobody Thu May  7 13:51:50 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 F3FF23A0DA8 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:51:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 3yKDAjzuNfTB for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:51:44 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AF4DC3A0DA5 for <quic-issues@ietf.org>; Thu,  7 May 2020 13:51:44 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 198628C0543 for <quic-issues@ietf.org>; Thu,  7 May 2020 13:51:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588884703; bh=r1hviWxA1GjbVTYYWxXgUENP5S0EHNenGs+jNkyY224=; h=Date:From:To:Subject:From; b=Sz1IIlawRkGfEKh/NvR5/DeH6qcvLZa8rObOiRt5hr9rfZFXY/QNXrK6YBUU0UuNz g1c5AWabu8yhixXnAPyvggL2q1Ei0W7Zo0XrRrI9+VrzDXlhJ9YSAxx5cizKpdRNBs VeGqW6AG99ZjAmQBkWNNWJvATfxPIOVhbXfhgFxs=
Date: Thu, 07 May 2020 13:51:43 -0700
From: martinduke <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/invariants/000000-9329fe@github.com>
Subject: [quicwg/load-balancers] 9329fe: invariants discussion
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xEvYbtivs1f09wUm_jyFfjt6aIw>
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: Thu, 07 May 2020 20:51:48 -0000

  Branch: refs/heads/invariants
  Home:   https://github.com/quicwg/load-balancers
  Commit: 9329fe5b12bd2180a47665db6cef367c778fb405
      https://github.com/quicwg/load-balancers/commit/9329fe5b12bd2180a47665db6cef367c778fb405
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  invariants discussion



From nobody Thu May  7 13:52:24 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 A73A03A0DA8 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:52:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Psuy9xfVFzda for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:52:21 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 456073A0DA5 for <quic-issues@ietf.org>; Thu,  7 May 2020 13:52:21 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 3DDEF521EAA for <quic-issues@ietf.org>; Thu,  7 May 2020 13:52:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588884740; bh=yadab5dcbT6nfUgNnUAFZAt4ls4lqrcXLCmTf6TTk54=; h=Date:From:To:Subject:From; b=xCmBoe87YfM0wxgs5f85YjUd1pp7i9v0VKcWZN+43B2kGzBOq/TUo6v1jGdHWS24c w7/0YJ6wIcmtNE/iB32qye4cyDo8h+K8yD/8vgM/eREalE/NiaGh8toCR47/uJk1ps /jY4S3rbK+VAufwuDrZQxcZhUOgtpKONMotMjxv8=
Date: Thu, 07 May 2020 13:52:20 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/gh-pages/666805-978fd4@github.com>
Subject: [quicwg/load-balancers] 978fd4: Script updating gh-pages from 9329fe5. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NqohaRgBqPmnV90nsW8y7sE-_Ls>
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: Thu, 07 May 2020 20:52:23 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/load-balancers
  Commit: 978fd4e36ae779d3a56c5041d717024e27acec44
      https://github.com/quicwg/load-balancers/commit/978fd4e36ae779d3a56c5041d717024e27acec44
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M index.html
    A invariants/draft-ietf-quic-load-balancers.html
    A invariants/draft-ietf-quic-load-balancers.txt
    A invariants/index.html

  Log Message:
  -----------
  Script updating gh-pages from 9329fe5. [ci skip]



From nobody Thu May  7 13:52:30 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 D8B253A0DA8 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:52:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 n8uNwYdqZe5T for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:52:27 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 954B23A0DA5 for <quic-issues@ietf.org>; Thu,  7 May 2020 13:52:27 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 2F9D6281FB4 for <quic-issues@ietf.org>; Thu,  7 May 2020 13:52:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588884745; bh=CRQzcBHUQRpiWESy77NwHFhnwDw9T/VJUbd0ypaOFdM=; h=Date:From:To:Subject:From; b=QUNsL0EqK7qv0q/YFkyQJb4VumhIvU/kez6nMHkmBaw9kdHZtZGvnqvqMPdFCLi3K HtQnqQ8jyg6yZWX2u5UTnQG7osGob2azzY3KtS7Cx7r6wfhOVAqneG0f4PKBFi8XS7 sREZpRp+vLcd0RqV1RCBuqAlL+wOHAKXP4LvXLBQ=
Date: Thu, 07 May 2020 13:52:25 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/gh-pages/978fd4-149149@github.com>
Subject: [quicwg/load-balancers] 149149: Script updating archive at 2020-05-07T20:52:08Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xUaatxplgs89GrHOYCsjwgllADw>
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: Thu, 07 May 2020 20:52:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/load-balancers
  Commit: 1491496d667c42a24890aa4c0d7ad6c62aa4f137
      https://github.com/quicwg/load-balancers/commit/1491496d667c42a24890aa4c0d7ad6c62aa4f137
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-07T20:52:08Z. [ci skip]



From nobody Thu May  7 13:54:23 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 5A57F3A0DAE for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:54:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 paqSW-eSWrIV for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:54:20 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3C7473A0DAC for <quic-issues@ietf.org>; Thu,  7 May 2020 13:54:20 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 3E844C6025A for <quic-issues@ietf.org>; Thu,  7 May 2020 13:54:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588884859; bh=55DXnOz0hdpqKMnBkkDoMn1detr/j+HqoFi4ON1vEGg=; h=Date:From:To:Subject:From; b=n+DXd9QwayfmL5e34utKQQ1XP6/40IHCvvAiDJpa+SdqguRihYkheSyUU5QoxkXh8 QqJKnv1BMQcnow34+SNd4oOqImyLyiBmyS1nio+dlIdqJpVR7bFRLZwJWhbL5xgE8I ZOJ3gPx5AGsKukqhlpRct26FKhes8kx4tP4uyU/s=
Date: Thu, 07 May 2020 13:54:19 -0700
From: martinduke <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/invariants/9329fe-4e3d9c@github.com>
Subject: [quicwg/load-balancers] 4e3d9c: fix typo
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LbNg5xNh_ACJ4Einp2zguq2MGsE>
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: Thu, 07 May 2020 20:54:21 -0000

  Branch: refs/heads/invariants
  Home:   https://github.com/quicwg/load-balancers
  Commit: 4e3d9c0ad9086dacf6d58854e9e3aa595e8a28b4
      https://github.com/quicwg/load-balancers/commit/4e3d9c0ad9086dacf6d58854e9e3aa595e8a28b4
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  fix typo



From nobody Thu May  7 13:55:03 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 5DA933A0DAC for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:55:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 cClvtBXeduIB for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 13:55:01 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2D7AE3A0DAE for <quic-issues@ietf.org>; Thu,  7 May 2020 13:55:01 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id F38CC660B5B for <quic-issues@ietf.org>; Thu,  7 May 2020 13:54:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588884899; bh=v1eUMCn7ss+rQlsYNW1UxI2nQrfAoiw7isnYwfZ8ckQ=; h=Date:From:To:Subject:From; b=RFG9i7HTMZX5cihKBqyNaY8JzW2gSSrhjbIEwI/zwmxx3j5oMaaX7z+Vf0V/y8GPM DqelUwdzZLSw/c0cAQLEWAcCgauinoQCbHt8NmBLESj7Z7omN4Jsmhooq380+5/8ro YkTABQNrJlcypNCgtIYrJ46eHN9qMByCqKFvkGhE=
Date: Thu, 07 May 2020 13:54:59 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/gh-pages/149149-0de260@github.com>
Subject: [quicwg/load-balancers] 0de260: Script updating gh-pages from 4e3d9c0. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8-KsMfx5W570XBmNe7hJlh3Sw8c>
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: Thu, 07 May 2020 20:55:02 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/load-balancers
  Commit: 0de260d6d2f3ebdb475f1d9e8a1a4a40de898f8e
      https://github.com/quicwg/load-balancers/commit/0de260d6d2f3ebdb475f1d9e8a1a4a40de898f8e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M invariants/draft-ietf-quic-load-balancers.html
    M invariants/draft-ietf-quic-load-balancers.txt

  Log Message:
  -----------
  Script updating gh-pages from 4e3d9c0. [ci skip]



From nobody Thu May  7 14:11:11 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 0E5243A0DD5 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 14:11:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.098
X-Spam-Level: 
X-Spam-Status: No, score=-3.098 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Mz-8UPU6xlYN for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 14:11:04 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 670053A0DD1 for <quic-issues@ietf.org>; Thu,  7 May 2020 14:11:04 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 689D16E0768 for <quic-issues@ietf.org>; Thu,  7 May 2020 14:11:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588885863; bh=EB7E3l/RBi2anqJZZ/uGJig+ufCHloCcRl3+AlB9MR0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GkH68yHyMxWwkhTJ+1VxRvW76dQc4Ee45ks2Kbn9dmk5uz+JrCzqrk58VwPi4/MBO sZfiKx1r7uRsQaJsmCwGwkTpMeQYWcQlhWppy50mWvwYnC3A45nTu4cdFOFCT/u7l1 dygmakPGebUbAgF/fOqAnNCpQ/8yoMKXy8u0hALs=
Date: Thu, 07 May 2020 14:11:03 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4YGXHRCL6IUKSS4LV4YBNGPEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/407814166@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb47967583cf_48403ff60dacd9681317f5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rLIm8ZgMsTenzye65L0hqYnvUr0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 21:11:10 -0000

----==_mimepart_5eb47967583cf_48403ff60dacd9681317f5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.

This seems good overall, but a few comments

> +Section 5.5 of {{!TLS13}} apply. {{!TLS13}} does not specify a limit for
+AEAD_AES_128_CCM, but the analysis in {{ccm-bounds}} shows that a limit of 2^24
+packets can be used to obtain the same confidentiality protection as the limits
+specified in TLS.
+
+The usage limits defined in TLS 1.3 exist to provide protection against attacks
+on confidentiality and apply to successful applications of AEAD protection. The
+integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a per-AEAD limit. Endpoints

What's a "per-AEAD limit"?

> +on confidentiality and apply to successful applications of AEAD protection. The
+integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a per-AEAD limit. Endpoints
+MUST initiate a key update before reaching this limit. Applying a limit reduces
+the probability than attacker is able to successfully forge a packet; see
+{{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305 the
+number of packets that fail authentication MUST NOT exceed 2^36. Note that the

This MUST NOT is a bit of a circuitous requirement. Perhaps "if the number of packets that fail authentication exceeds 2^36, the endpoint MUST immediately close the connection"

> +packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a per-AEAD limit. Endpoints
+MUST initiate a key update before reaching this limit. Applying a limit reduces
+the probability than attacker is able to successfully forge a packet; see
+{{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305 the
+number of packets that fail authentication MUST NOT exceed 2^36. Note that the
+analysis in {{AEBounds}} supports a higher limit for the AEAD_AES_128_GCM and
+AEAD_AES_256_GCM, but this specification recommends a lower limit. For
+AEAD_AES_128_CCM the number of packets that fail authentication MUST NOT exceed
+2^24.5; see {{ccm-bounds}}.

similar to above

> +MUST initiate a key update before reaching this limit. Applying a limit reduces
+the probability than attacker is able to successfully forge a packet; see
+{{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305 the
+number of packets that fail authentication MUST NOT exceed 2^36. Note that the
+analysis in {{AEBounds}} supports a higher limit for the AEAD_AES_128_GCM and
+AEAD_AES_256_GCM, but this specification recommends a lower limit. For
+AEAD_AES_128_CCM the number of packets that fail authentication MUST NOT exceed
+2^24.5; see {{ccm-bounds}}.
+
+Any TLS cipher suite that is specified for use with QUIC MUST define limits on
+the use of the associated AEAD function that preserves margins for
+confidentiality and integrity. That is, limits MUST be specified for the number
+of packets that can be authenticated and for the number packets that can fail
+authentication.  Any limits SHOULD reference any analysis upon which values are

This is a strange SHOULD. It's a recommendation about how the spec is to be written in the future. I would remove the normative here.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-407814166
----==_mimepart_5eb47967583cf_48403ff60dacd9681317f5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> commented on this pull request.</p>

<p>This seems good overall, but a few comments</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r421775749">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +Section 5.5 of {{!TLS13}} apply. {{!TLS13}} does not specify a limit for
+AEAD_AES_128_CCM, but the analysis in {{ccm-bounds}} shows that a limit of 2^24
+packets can be used to obtain the same confidentiality protection as the limits
+specified in TLS.
+
+The usage limits defined in TLS 1.3 exist to provide protection against attacks
+on confidentiality and apply to successful applications of AEAD protection. The
+integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a per-AEAD limit. Endpoints
</pre>
<p>What's a "per-AEAD limit"?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r421793843">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +on confidentiality and apply to successful applications of AEAD protection. The
+integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a per-AEAD limit. Endpoints
+MUST initiate a key update before reaching this limit. Applying a limit reduces
+the probability than attacker is able to successfully forge a packet; see
+{{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305 the
+number of packets that fail authentication MUST NOT exceed 2^36. Note that the
</pre>
<p>This MUST NOT is a bit of a circuitous requirement. Perhaps "if the number of packets that fail authentication exceeds 2^36, the endpoint MUST immediately close the connection"</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r421794128">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a per-AEAD limit. Endpoints
+MUST initiate a key update before reaching this limit. Applying a limit reduces
+the probability than attacker is able to successfully forge a packet; see
+{{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305 the
+number of packets that fail authentication MUST NOT exceed 2^36. Note that the
+analysis in {{AEBounds}} supports a higher limit for the AEAD_AES_128_GCM and
+AEAD_AES_256_GCM, but this specification recommends a lower limit. For
+AEAD_AES_128_CCM the number of packets that fail authentication MUST NOT exceed
+2^24.5; see {{ccm-bounds}}.
</pre>
<p>similar to above</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r421795457">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +MUST initiate a key update before reaching this limit. Applying a limit reduces
+the probability than attacker is able to successfully forge a packet; see
+{{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305 the
+number of packets that fail authentication MUST NOT exceed 2^36. Note that the
+analysis in {{AEBounds}} supports a higher limit for the AEAD_AES_128_GCM and
+AEAD_AES_256_GCM, but this specification recommends a lower limit. For
+AEAD_AES_128_CCM the number of packets that fail authentication MUST NOT exceed
+2^24.5; see {{ccm-bounds}}.
+
+Any TLS cipher suite that is specified for use with QUIC MUST define limits on
+the use of the associated AEAD function that preserves margins for
+confidentiality and integrity. That is, limits MUST be specified for the number
+of packets that can be authenticated and for the number packets that can fail
+authentication.  Any limits SHOULD reference any analysis upon which values are
</pre>
<p>This is a strange SHOULD. It's a recommendation about how the spec is to be written in the future. I would remove the normative here.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-407814166">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7ADRSJBPJPS7NLNOTRQMPWPANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2VLTHMNEMFESLZHL3RQMPWPA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBHMAFQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-407814166",
"url": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-407814166",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb47967583cf_48403ff60dacd9681317f5--


From nobody Thu May  7 14:37:00 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 8A8A33A0B22 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 14:36:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.039
X-Spam-Level: 
X-Spam-Status: No, score=-1.039 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 oatFjOBAfjnh for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 14:36:56 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6D66A3A0B1B for <quic-issues@ietf.org>; Thu,  7 May 2020 14:36:56 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 044CA6A10C1 for <quic-issues@ietf.org>; Thu,  7 May 2020 14:36:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588887415; bh=G3fxNmIPRSUkIcENgpRh++y0z4+poXyd7kkD2x4FAEU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JhOtvk9ie3zN34lRR49oqQjifV9HYwx2NX47jncBRl4nLjrKiLG1gEivDs/ocWP6K x8WWpXnZdM604ozWF4563wYfG1XAcf+tZneIYWiMAZNxfJAiRXw9yja08htgLtQe1H ew6KZUdLk4NAU6d4m8k6W0hbLT7VMki4NLmpSv2s=
Date: Thu, 07 May 2020 14:36:54 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3MMT6LWOMOLVVEPFV4YBQHNEVBNHHCJHOYRM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3636/review/407854891@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3636@github.com>
References: <quicwg/base-drafts/pull/3636@github.com>
Subject: Re: [quicwg/base-drafts] Text/figure consistency (#3636)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb47f76e8b60_3ef73f9a430cd95c613b7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7gGfL5ZI8PC1Pggp7niAyS3tmsY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 21:36:58 -0000

----==_mimepart_5eb47f76e8b60_3ef73f9a430cd95c613b7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3636#pullrequestreview-407854891
----==_mimepart_5eb47f76e8b60_3ef73f9a430cd95c613b7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3636#pullrequestreview-407854891">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK36MS7GQGMOJ3GWFSTRQMSXNANCNFSM4M3UJ73Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5YR4L2UVMRWUATT73RQMSXNA5CNFSM4M3UJ732YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBHV6KY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3636#pullrequestreview-407854891",
"url": "https://github.com/quicwg/base-drafts/pull/3636#pullrequestreview-407854891",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb47f76e8b60_3ef73f9a430cd95c613b7--


From nobody Thu May  7 16:45:41 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 80C253A097E for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:45:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.694
X-Spam-Level: 
X-Spam-Status: No, score=-1.694 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZfRW_h0jtKUK for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:45:33 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 71C263A097A for <quic-issues@ietf.org>; Thu,  7 May 2020 16:45:33 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 4272F8C0F31 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:45:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895132; bh=fTXTV2vBNEqSyvfij8/zUVjyGVRDfv5EL1RJxeBGzdk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cvj+x0LnrAYdKj5eoStoQIsqpg2/DJk1oCWYW4mjWX5+84f1WoW6dYiHGLQfMMfGd mYwkGTda9Q4iDGeaQJOhYZekyyiMRHFEzwkYJ9WFyG6PaaVSliPbIPuq9CUMwE4jO1 rpVXRFsAUEz7Voe4Eh/Y6YfLpYge97bGcoy+oJb0=
Date: Thu, 07 May 2020 16:45:32 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6U4WAPNXCHI5GY4754YB7JZEVBNHHCJHOYRM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3636/review/407908579@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3636@github.com>
References: <quicwg/base-drafts/pull/3636@github.com>
Subject: Re: [quicwg/base-drafts] Text/figure consistency (#3636)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb49d9c314ca_22d53f83862cd9601193b2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fr-ioZw9U1jbCdIB1vEocKVOJyo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 23:45:38 -0000

----==_mimepart_5eb49d9c314ca_22d53f83862cd9601193b2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson requested changes on this pull request.



> @@ -138,9 +138,9 @@ Long Header Packet {
   Version-Specific Bits (7),
   Version (32),
   DCID Len (8),
-  Destination Connection ID (0..160),
+  Destination Connection ID (0..255),

Yikes, we both got this wrong.  (And then I got it wrong again by putting 2047 here first.)

```suggestion
  Destination Connection ID (0..2040),
```

>    SCID Len (8),
-  Source Connection ID (0..160),
+  Source Connection ID (0..255),

```suggestion
  Source Connection ID (0..2040),
```

> @@ -138,9 +138,9 @@ Long Header Packet {
   Version-Specific Bits (7),

^^ Up there, there is a redundant sentence.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3636#pullrequestreview-407908579
----==_mimepart_5eb49d9c314ca_22d53f83862cd9601193b2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> requested changes on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3636#discussi=
on_r421855643">draft-ietf-quic-invariants.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -138,9 +138,9 @@ Long Header Packet {=0D=

   Version-Specific Bits (7),=0D
   Version (32),=0D
   DCID Len (8),=0D
-  Destination Connection ID (0..160),=0D
+  Destination Connection ID (0..255),=0D
</pre>=0D
<p>Yikes, we both got this wrong.  (And then I got it wrong again by putt=
ing 2047 here first.)</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-  Destination Connection ID (0..255),=0D
+  Destination Connection ID (0..2040),=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3636#discussi=
on_r421855679">draft-ietf-quic-invariants.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;    SCID Len (8),=0D
-  Source Connection ID (0..160),=0D
+  Source Connection ID (0..255),=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-  Source Connection ID (0..255),=0D
+  Source Connection ID (0..2040),=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3636#discussi=
on_r421856326">draft-ietf-quic-invariants.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -138,9 +138,9 @@ Long Header Packet {=0D=

   Version-Specific Bits (7),=0D
</pre>=0D
<p>^^ Up there, there is a redundant sentence.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3636#pullrequestreview-407908579">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K3FPDEEKPM5THOVNWDRQNBZZANCNFSM4M3UJ73Q">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKYBMKXSHYSFO3B4XBTRQNBZZA5CNFSM4=
M3UJ732YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODBIDBYY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3636#pullrequestrev=
iew-407908579",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3636#pullrequestreview=
-407908579",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb49d9c314ca_22d53f83862cd9601193b2--


From nobody Thu May  7 16:46:28 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 F0CFF3A097E for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:46:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 uKTX0XfMD4PP for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:46:20 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9B6CA3A097A for <quic-issues@ietf.org>; Thu,  7 May 2020 16:46:20 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 940CB8C045A for <quic-issues@ietf.org>; Thu,  7 May 2020 16:46:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895179; bh=ALXL9FmxX2w2BFccFdi7AWASLvCZbN5f1p4qGuBgUoA=; h=Date:From:To:Subject:From; b=qzfRbrcSOa3EHcH6fvWk4Sc9piChedRLGQsmWcZsqOiI60zJCL3fqAsLMzzdoiGvG LzWvg62/XbPDg7DtyPcZ6y3c4Tp2I0als95CjsKXZ72dPQW+OVwE1uUHPGPAZNfi5r IGvM8JnN1QH0gp8uiBnj6094p7RaU31wowaNjoxk=
Date: Thu, 07 May 2020 16:46:19 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/invariants/consistency/1b967a-5ddd58@github.com>
Subject: [quicwg/base-drafts] 5ddd58: Math, and no more X.
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-wIVoE8mT315ptsecZ7HNOww1tA>
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: Thu, 07 May 2020 23:46:26 -0000

  Branch: refs/heads/invariants/consistency
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5ddd5814b6e3e839a16d1ef960b22694e67eae4a
      https://github.com/quicwg/base-drafts/commit/5ddd5814b6e3e839a16d1ef960b22694e67eae4a
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Math, and no more X.



From nobody Thu May  7 16:47:11 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 4D9DA3A097A for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:46:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 sHu86phqX_1E for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:46:28 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 32BB83A0996 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:46:28 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 8F931281152 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:46:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895187; bh=u5t/xFZmS65/YQSXhulRbmy2DaqJYoIRPDLl0awXYkE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rHyhLnA1LMsa0ieaZUOHfnXMfEJ/KF9lArdc6KUIBCMeTgk2tG4FzAgyj5lehcG8B Z4DmudCITxHAc5Yfm3D3VPIPak5QrbFUPTsnvGjc6ODRwnOFOB0p/yUBR7ZcK3UJcR LBQ++6WAvlTfukgc/ODApxBu1ARV3529FXYm+ojs=
Date: Thu, 07 May 2020 16:46:27 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3636/push/5038810594@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3636@github.com>
References: <quicwg/base-drafts/pull/3636@github.com>
Subject: Re: [quicwg/base-drafts] Text/figure consistency (#3636)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb49dd37e398_592b3f87b70cd964270957"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AQUtnWK9J2gKobddn6qMw9zh-pY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 23:46:32 -0000

----==_mimepart_5eb49dd37e398_592b3f87b70cd964270957
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

5ddd5814b6e3e839a16d1ef960b22694e67eae4a  Math, and no more X.


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3636/files/1b967adee968825c2f230d3c20c69118f70c4778..5ddd5814b6e3e839a16d1ef960b22694e67eae4a

----==_mimepart_5eb49dd37e398_592b3f87b70cd964270957
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/5ddd5814b6e3e839a16d1ef960b22694e67eae4a">5ddd581</a>  Math, and no more X.</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3636/files/1b967adee968825c2f230d3c20c69118f70c4778..5ddd5814b6e3e839a16d1ef960b22694e67eae4a">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2FECIJBGR2K2IRG7TRQNB5HANCNFSM4M3UJ73Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZAKT65GM5AJ4VKWOLRQNB5HA5CNFSM4M3UJ732YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTIOJQGM3TON2QOVZWQIZVGAZTQOBRGA2TSNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3636/files/1b967adee968825c2f230d3c20c69118f70c4778..5ddd5814b6e3e839a16d1ef960b22694e67eae4a",
"url": "https://github.com/quicwg/base-drafts/pull/3636/files/1b967adee968825c2f230d3c20c69118f70c4778..5ddd5814b6e3e839a16d1ef960b22694e67eae4a",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb49dd37e398_592b3f87b70cd964270957--


From nobody Thu May  7 16:48:25 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 644A93A09A9 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:47:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 D1u2Y1kMy9kp for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:47:17 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DBD0E3A097A for <quic-issues@ietf.org>; Thu,  7 May 2020 16:47:16 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 2701E5208AB for <quic-issues@ietf.org>; Thu,  7 May 2020 16:47:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895236; bh=/c2QhNDVrqmhfqsaudMbLIQzEbVyCFvGGCr8GVpgCdQ=; h=Date:From:To:Subject:From; b=MqLeb9XwtUfDrB+bnjZOHyd4nwSiNiVF9NzTDDkLzMSU7yQVZEQ7f53yaVLwP6hsV qx006fB0UfN7SdMbnI0YkSG8NgWl18aCaXfC8GD8L5I9bCH/C2ENDRMgMgYK/xwkeW 5kqOveKaPXByuw7wHxHYscq8wue5G6wO8g/AUgaM=
Date: Thu, 07 May 2020 16:47:16 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/eeaf7c-1e4a92@github.com>
Subject: [quicwg/base-drafts] 1e4a92: Script updating gh-pages from 5ddd5814. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1lKKdMbt0HoHw4IcbPoXc-ATXx4>
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: Thu, 07 May 2020 23:47:33 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1e4a92301a65f2630e7c0b3d8bc101abd1a3e4b0
      https://github.com/quicwg/base-drafts/commit/1e4a92301a65f2630e7c0b3d8bc101abd1a3e4b0
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M index.html
    M invariants/consistency/draft-ietf-quic-invariants.html
    M invariants/consistency/draft-ietf-quic-invariants.txt

  Log Message:
  -----------
  Script updating gh-pages from 5ddd5814. [ci skip]



From nobody Thu May  7 16:48:34 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 0F1463A0998 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:47:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 dN9AGZ2T-OWD for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:47:27 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9B84D3A0996 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:47:27 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 435371C0E9F for <quic-issues@ietf.org>; Thu,  7 May 2020 16:47:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895245; bh=KA9lm3FDHlLU7UpfcAq0CzlN25ax0h6BSYWzg6ZXm6s=; h=Date:From:To:Subject:From; b=MvR5y0k1Zb6bmFxz0UOWYwwoMWCuTVYgL9up7p+wwsakCTqVQYWABfTwsoWF4zzmm pZTreI+FAlE9XZtnRGCddnoWPFXoyOq0BaZIidtwmTx2mVZ8SsRtpz/3mqzkF5C8OP DFNO6Rry7TdVpdMOXA2KazC8hjQ5m+vcd9RCOT2I=
Date: Thu, 07 May 2020 16:47:25 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1e4a92-892d4d@github.com>
Subject: [quicwg/base-drafts] 892d4d: Script updating archive at 2020-05-07T23:47:07Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zAiuibDHL6ssp7hnaUGv0qQAsD0>
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: Thu, 07 May 2020 23:47:37 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 892d4da3ebc51d7fe126f4eba502669ef0d9a303
      https://github.com/quicwg/base-drafts/commit/892d4da3ebc51d7fe126f4eba502669ef0d9a303
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-07T23:47:07Z. [ci skip]



From nobody Thu May  7 16:48:38 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 36DFB3A0998 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:47:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 QbWJnWzsUhFb for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:47:33 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A14AB3A09B8 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:47:33 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 03ABD6E1F59 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:47:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895253; bh=PQZOfnesa7jINbwaOCIXWsGq9zEaqsPRjKeGV3ahyqo=; h=Date:From:To:Subject:From; b=nwJq+oG9tqJNbJUWIfmkDuFjsOE5MMCiozoIuoNM0xg/FHChKgUqp90neTKsppdDI n74EE1s6fBG4KwSw6KNg6dBrtkVLo2oWzRftO8noSSHdc7FvK1ECQTC3i0ZrwpvW1+ xb601vSk4PReyGWvHYax+AfI4Bmy1+Ybd1w7/IKg=
Date: Thu, 07 May 2020 16:47:32 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgery-limit/acb7b2-7d9824@github.com>
Subject: [quicwg/base-drafts] 7d9824: Grammah
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ow6GdWC7whKQ47Ctc1L0BsGonX0>
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: Thu, 07 May 2020 23:47:43 -0000

  Branch: refs/heads/forgery-limit
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7d982461c409323b5a2ba2363441c09f3d763832
      https://github.com/quicwg/base-drafts/commit/7d982461c409323b5a2ba2363441c09f3d763832
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Grammah

Co-authored-by: Lucas Pardue <lucaspardue.24.7@gmail.com>



From nobody Thu May  7 16:48:41 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 81F8E3A09A2 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:47:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 0pR8DWoZQ4nI for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:47:47 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 803143A0996 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:47:42 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id BE0911C0093 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:47:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895261; bh=PxI+bEgi6S+dSHWrxujI43dbJZy3CdVPolQ+XhGtkXA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=m3Vq97h7qc9RY6Lv5lQAV93z9NFQfTeVSMj8eotijnA9EDAlK3Db04GXgQaYZR47i Y0n2sx8CTwMOMJ0eWcppoG3wqKlN71y9jW2+dv4Ed8VU0K8xX9OoIkSguSDcMIFhNL dpq5mE1TtLXpHvAUnpUIS/OdYLEil+6FuTl+A9Do=
Date: Thu, 07 May 2020 16:47:41 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/push/5038814279@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb49e1dad73b_61083fb8676cd964159273"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/skulT09LS7H_Whn_-RhnK8L6ciE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 23:47:58 -0000

----==_mimepart_5eb49e1dad73b_61083fb8676cd964159273
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

7d982461c409323b5a2ba2363441c09f3d763832  Grammah


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620/files/acb7b227f19ac7572efb987e60f8e494e1301e32..7d982461c409323b5a2ba2363441c09f3d763832

----==_mimepart_5eb49e1dad73b_61083fb8676cd964159273
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/7d982461c409323b5a2ba2363441c09f3d763832">7d98246</a>  Grammah</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3620/files/acb7b227f19ac7572efb987e60f8e494e1301e32..7d982461c409323b5a2ba2363441c09f3d763832">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK44VAETTMBCPKWJYS3RQNCB3ANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYDE7DX2K3VNOMCX6LRQNCB3A5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTCOJZG4YDIM2QOVZWQIZVGAZTQOBRGQZDOOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620/files/acb7b227f19ac7572efb987e60f8e494e1301e32..7d982461c409323b5a2ba2363441c09f3d763832",
"url": "https://github.com/quicwg/base-drafts/pull/3620/files/acb7b227f19ac7572efb987e60f8e494e1301e32..7d982461c409323b5a2ba2363441c09f3d763832",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb49e1dad73b_61083fb8676cd964159273--


From nobody Thu May  7 16:48:45 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 D21913A067A for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:48:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 qu_13DOFmczD for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:48:25 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2AF673A0B63 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:48:25 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 4DA758C0087 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:48:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895304; bh=+2QFQXs0mKF0WHuP6xBpt+rXkV5yMhDcvCutYYcVGtE=; h=Date:From:To:Subject:From; b=0j8XkqxZWLgi//+q1aHs6+Pu3Skw4wNU7chpvuI/O/Wl+CTdje3tIbSLKA67ZIfdo rp9XRDhuyOx4qd616hhjX43K7ZNe419dNxLbAnXiRQ62/drrAWPmFbi/OhCJ2CbxFv qC4n4xs+chBCDwKiZPyzlRXuOEjMbvRXq3TAn6kQ=
Date: Thu, 07 May 2020 16:48:24 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/892d4d-64a533@github.com>
Subject: [quicwg/base-drafts] 64a533: Script updating gh-pages from 7d982461. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kEnbFQgqCaEmrui7q2hxn-Sz6C4>
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: Thu, 07 May 2020 23:48:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 64a5330aa2ff5d8b1555263b928d21128184961e
      https://github.com/quicwg/base-drafts/commit/64a5330aa2ff5d8b1555263b928d21128184961e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 7d982461. [ci skip]



From nobody Thu May  7 16:52:16 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 F20EF3A09C7 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:52:13 -0700 (PDT)
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 GrJ36sKP7gK5 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:52:11 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5826A3A09B8 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:52:11 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id DB08B1212F9 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:52:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895530; bh=yZuW9zIjDEmAV2P3uJfdODgz7rZ4/geel84YY/1fnTw=; h=Date:From:To:Subject:From; b=OjOCF6EC8TdHo8tY6vbUsD6GgN3E6YH/osGkoGhaWbmDzd0snYTWvDqBmW5AOJ3b2 W3laManLTT3gjdmprdJlTqGc8M+HCLSZ7DHFdvcxP75blWCM7f1PqGUD38X9DkJ6OL p3SuQBQJxPPKQaFwIbm1dVawoJ7H+v3O2rmGykks=
Date: Thu, 07 May 2020 16:52:10 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgery-limit/7d9824-d5613b@github.com>
Subject: [quicwg/base-drafts] d5613b: Editorial comments, reorder
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Frz8PgmhMxgGtDj2Y3by3H4UzH0>
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: Thu, 07 May 2020 23:52:14 -0000

  Branch: refs/heads/forgery-limit
  Home:   https://github.com/quicwg/base-drafts
  Commit: d5613bc37a4a89238782c0743c64f541c810f54a
      https://github.com/quicwg/base-drafts/commit/d5613bc37a4a89238782c0743c64f541c810f54a
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Editorial comments, reorder



From nobody Thu May  7 16:52:50 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 763A93A09CD for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:52:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 UROknCQGJIVH for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:52:29 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C469A3A09B8 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:52:29 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id E4A816A10D2 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:52:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895548; bh=CR6jBT5C8pVk5teCiHpRlh1l8m9nVgYuzmClqpsoy3Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ccN7OnWoUO5jN+80ZRF//qx4MxUcLESsSSxTCQAwxZOP6MhZ0nuxGHUqIHytghV6X Jnb6T2zKe+kR5wZpQIuE9pcQRuUssST64MaeRdU/ACw057AgCVrZ7TpNQMPlDgqQ3u xHIDV/mdsJX4I1+2l8pyt6JPuGbNLgT6iukObpLc=
Date: Thu, 07 May 2020 16:52:28 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYU7ON6D76RYORCWQV4YCADZEVBNHHCJHOYRM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3636/review/407911434@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3636@github.com>
References: <quicwg/base-drafts/pull/3636@github.com>
Subject: Re: [quicwg/base-drafts] Text/figure consistency (#3636)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb49f3cd5f5f_5c8f3f9d246cd96827650"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/H4_u8wQYYPUgUE9lUwLwlnpikvw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 23:52:32 -0000

----==_mimepart_5eb49f3cd5f5f_5c8f3f9d246cd96827650
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop commented on this pull request.



>    SCID Len (8),
-  Source Connection ID (0..255),
+  Source Connection ID (0..2040),

Text still says 255.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3636#pullrequestreview-407911434
----==_mimepart_5eb49f3cd5f5f_5c8f3f9d246cd96827650
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3636#discussion_r421858387">draft-ietf-quic-invariants.md</a>:</p>
<pre style='color:#555'>&gt;    SCID Len (8),
-  Source Connection ID (0..255),
+  Source Connection ID (0..2040),
</pre>
<p>Text still says 255.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3636#pullrequestreview-407911434">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3MGHAD5I2VKBUMGFLRQNCTZANCNFSM4M3UJ73Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYJDEZXXREWCHICC5LRQNCTZA5CNFSM4M3UJ732YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBIDYCQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3636#pullrequestreview-407911434",
"url": "https://github.com/quicwg/base-drafts/pull/3636#pullrequestreview-407911434",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb49f3cd5f5f_5c8f3f9d246cd96827650--


From nobody Thu May  7 16:53:19 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 EC1953A09C7 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:52:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 E15upo8k_qKS for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:52:21 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 167453A0B16 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:52:21 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id ADB668C0A98 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:52:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895539; bh=6IzPQWQbbhcDR70+11ikpVgW1m/v/WjvotiNqyG4mlo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=a4l1ES1s3J6DnM+k68bg7gAPMpiNGMxXo95iyIA3VD8YXdaG4SAm1REJHQaUoOLbw LgyDnxJRi9iuZptozFmvR9TTaczkzwQnHUJcgAHW+xDgKlLL5nXSgPZlaPE+K+BRNK q+TkZs2xQj8RasimTXBYfej7+UBDDkWLcHFo4NNs=
Date: Thu, 07 May 2020 16:52:19 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/push/5038828076@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb49f339ed59_18cc3f9b27acd9681705ca"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OrpDwImnxGkWly8vt3wn6GLihEU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 23:52:23 -0000

----==_mimepart_5eb49f339ed59_18cc3f9b27acd9681705ca
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

d5613bc37a4a89238782c0743c64f541c810f54a  Editorial comments, reorder


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620/files/7d982461c409323b5a2ba2363441c09f3d763832..d5613bc37a4a89238782c0743c64f541c810f54a

----==_mimepart_5eb49f339ed59_18cc3f9b27acd9681705ca
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/d5613bc37a4a89238782c0743c64f541c810f54a">d5613bc</a>  Editorial comments, reorder</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3620/files/7d982461c409323b5a2ba2363441c09f3d763832..d5613bc37a4a89238782c0743c64f541c810f54a">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2NRWDCBFHKUULMXFTRQNCTHANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYUT4QOX2FMB43QLR3RQNCTHA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTCOJZG4YDIM2QOVZWQIZVGAZTQOBSHAYDONQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620/files/7d982461c409323b5a2ba2363441c09f3d763832..d5613bc37a4a89238782c0743c64f541c810f54a",
"url": "https://github.com/quicwg/base-drafts/pull/3620/files/7d982461c409323b5a2ba2363441c09f3d763832..d5613bc37a4a89238782c0743c64f541c810f54a",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb49f339ed59_18cc3f9b27acd9681705ca--


From nobody Thu May  7 16:53:27 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 45A7E3A09E3 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:53:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 q-13HYckEVib for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:52:57 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 869673A09CD for <quic-issues@ietf.org>; Thu,  7 May 2020 16:52:54 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id B5A6D960E69 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:52:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895573; bh=skX7Z8moWXvhaYO/MK5qOt/WeX5FL35jH6W7iTbGxDE=; h=Date:From:To:Subject:From; b=rKTalr4/IxjM3Tz31C10OlK4JAn3b4VWvp8zZ7mG+KAJbAK9O8uDG9NntvF9CPrgh bqVTisoOIg6To0vjwd448uYVdYcSBGE/Zz/CyYr6IYg6mQKtK2TVbBd8v6TFGWkOx7 ShUO1sAE6sGPuvsL+i6/wQiAscWMBUKMObLPhGug=
Date: Thu, 07 May 2020 16:52:53 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/64a533-31d16f@github.com>
Subject: [quicwg/base-drafts] 31d16f: Script updating gh-pages from d5613bc3. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KNegaSTX_WtWCOSgA469VRvRrso>
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: Thu, 07 May 2020 23:53:03 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 31d16f5e76c131f737ec40c0e06c15d4e0b53236
      https://github.com/quicwg/base-drafts/commit/31d16f5e76c131f737ec40c0e06c15d4e0b53236
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d5613bc3. [ci skip]



From nobody Thu May  7 16:53:56 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 65E453A095D for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:53:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.039
X-Spam-Level: 
X-Spam-Status: No, score=-1.039 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 mhUJllUOc0TJ for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:53:46 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C8C213A0898 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:53:45 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id E06DF8C11D5 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:53:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895622; bh=N4HCd+Dwhtd0ab6weRGrSkSJrU1UUcqrfI2NhdmLB/0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TsccGNO6LReZccCUjfawzQDWhaWRGpHbCZ5Ls+DMIP03mPISGH90Iq1Ab+wRH+Nqy +l+Vf8FQUF85cpYCr7TJRN0NwtsO8vz2Im9SnzwIgKBzRfxFtMqiatFZ0gmn+rtY0o huT4ZTjI/wHnSmr5rItEWnEaG+hlQtUGKd9R0swM=
Date: Thu, 07 May 2020 16:53:42 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4VERWJQNOE5OLASEN4YCAINEVBNHHCJHOYRM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3636/c625554280@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3636@github.com>
References: <quicwg/base-drafts/pull/3636@github.com>
Subject: Re: [quicwg/base-drafts] Text/figure consistency (#3636)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb49f86d1620_7f603fa7fc2cd95c1214ba"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zNyPDJePo9Ugzs0u0eEZ8wYEzqo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 23:53:54 -0000

----==_mimepart_5eb49f86d1620_7f603fa7fc2cd95c1214ba
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Bah, yes, 255 bytes = 2,040 bits.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3636#issuecomment-625554280
----==_mimepart_5eb49f86d1620_7f603fa7fc2cd95c1214ba
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Bah, yes, 255 bytes = 2,040 bits.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3636#issuecomment-625554280">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4HFV7OFXBZXUQJRATRQNCYNANCNFSM4M3UJ73Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2UAA4F7UQF6Q4PUMLRQNCYNA5CNFSM4M3UJ732YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVETG2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3636#issuecomment-625554280",
"url": "https://github.com/quicwg/base-drafts/pull/3636#issuecomment-625554280",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb49f86d1620_7f603fa7fc2cd95c1214ba--


From nobody Thu May  7 16:56:35 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 3E56E3A095D for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:56:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.039
X-Spam-Level: 
X-Spam-Status: No, score=-1.039 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 WYByja7peyrR for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:56:30 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 60B073A09C7 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:56:30 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id A242B6E0840 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:56:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895789; bh=Io1WyJUfgR+sFulmd02wWScrxA3LWFYIPr9ZVvyTgDg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qYRdjud1T0sDn3gZf4iWPhofrUYza+8jd7a0sp8Jq1EufbEi9yso/vp7LCz38KFEn eGabn5LhsiGwHxzhhLwj1h3hKNNybjv/Y2OVT/Chi2DsbGpH/wzvuxhXLanZlChRx2 VnxcWnPNuLjc+Kmfh+sRbiovVumQ0XS8qKj+I+cE=
Date: Thu, 07 May 2020 16:56:29 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYH7L66ZBQUDFCCQGF4YCAS3EVBNHHCJHOYRM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3636/c625555021@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3636@github.com>
References: <quicwg/base-drafts/pull/3636@github.com>
Subject: Re: [quicwg/base-drafts] Text/figure consistency (#3636)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4a02d927a6_57103f8bb1ccd9641595d0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KBSjrmDj6wcAz1POi2ppetCty1k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 23:56:34 -0000

----==_mimepart_5eb4a02d927a6_57103f8bb1ccd9641595d0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

:D  That's exactly the process that my mind followed.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3636#issuecomment-625555021
----==_mimepart_5eb4a02d927a6_57103f8bb1ccd9641595d0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>:D  That's exactly the process that my mind followed.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3636#issuecomment-625555021">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2P66VVAXWI6KJ43TDRQNDC3ANCNFSM4M3UJ73Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4KB636OTIDWPHDAHLRQNDC3A5CNFSM4M3UJ732YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVETMTI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3636#issuecomment-625555021",
"url": "https://github.com/quicwg/base-drafts/pull/3636#issuecomment-625555021",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4a02d927a6_57103f8bb1ccd9641595d0--


From nobody Thu May  7 16:57:31 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 BED633A09E1 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:56:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 0EzHqjOXrlvf for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:56:38 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 21A773A095D for <quic-issues@ietf.org>; Thu,  7 May 2020 16:56:37 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 4694296056D for <quic-issues@ietf.org>; Thu,  7 May 2020 16:56:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895797; bh=QztB0ey9hCUHk7DGT9SnVs+TJFzuuiT/oOmj77a3BWg=; h=Date:From:To:Subject:From; b=je/2+3rId+wtbqOu+FfYb120BcxshZ2XA+YPj8HzoM6evLTxXDhAzrwZt6G4AQ4jT g/3clnGuoyw+evkPjwdDA8kJEgoUE7rgeogJrpLcwrw/nxWd0eib8ikJYhKsvjOYUh OztSDcgOV1i4fIcb79C+kiRX5YEQTitkD1xfdfog=
Date: Thu, 07 May 2020 16:56:37 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/invariants/consistency/5ddd58-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/r6uGUAB1uaa_FS65AVnJBCu_S_A>
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: Thu, 07 May 2020 23:56:40 -0000

  Branch: refs/heads/invariants/consistency
  Home:   https://github.com/quicwg/base-drafts


From nobody Thu May  7 16:58:07 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 6F0DF3A095D for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:56:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 fcrgXrGy0DLq for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:56:37 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 17B773A09CD for <quic-issues@ietf.org>; Thu,  7 May 2020 16:56:37 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id 55B848C05E1 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:56:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895796; bh=rZYikpniT1gka1XyTmkMQhyqoDPOUqc1Unk7rovhyxA=; h=Date:From:To:Subject:From; b=dW4y7iKzfCmfwWjIQ5YHne0HTLm2DxyQ23Ul7LumI+VsPxkOO4s6g2Q6vW8NnM5xg rgUGfIKWfbd4MVyFFApyBwgMCPMLd6YRFE8/zyZ3Vu/vGOkR2/iAbWRwM0f9CxKE9T jL+fFV3gWnsz+kmRJRjb3XOjSJ3VIdZYwv9GayUY=
Date: Thu, 07 May 2020 16:56:36 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/32b432-103cfc@github.com>
Subject: [quicwg/base-drafts] 1b967a: Text/figure consistency
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tHims-jkMM1tI8okVLdO1N3Gu3w>
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: Thu, 07 May 2020 23:56:42 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1b967adee968825c2f230d3c20c69118f70c4778
      https://github.com/quicwg/base-drafts/commit/1b967adee968825c2f230d3c20c69118f70c4778
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Text/figure consistency


  Commit: 5ddd5814b6e3e839a16d1ef960b22694e67eae4a
      https://github.com/quicwg/base-drafts/commit/5ddd5814b6e3e839a16d1ef960b22694e67eae4a
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Math, and no more X.


  Commit: 103cfce74f5da885d97b95e6ea46967821068501
      https://github.com/quicwg/base-drafts/commit/103cfce74f5da885d97b95e6ea46967821068501
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Merge pull request #3636 from quicwg/invariants/consistency

Text/figure consistency


Compare: https://github.com/quicwg/base-drafts/compare/32b432f44327...103cfce74f5d


From nobody Thu May  7 16:58:41 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 4F0EE3A09CD for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:56:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 2hKF6ZKgHNYO for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:56:46 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5E9E93A09C7 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:56:46 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 8CAEEA006F for <quic-issues@ietf.org>; Thu,  7 May 2020 16:56:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895805; bh=FoBEBe8h6EfEpakPn0xkihYa5NwCCTYIzpL3KUIsAvg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mnTKYFOzYGqzkClcKUNEottCT/UrGing966pwMKPuolC0TxuEUj1bZ3ixsqeAMS/3 RKnM0uN6IGzhzh4lTpvCWmYQ5GWh4wMoi1ylmIVUtwt38LIxS4cR4crQIgiVJ2d59V EHRiF40wzn6d2taNwgUFT47Q0x+ANPPm+rPt94q8=
Date: Thu, 07 May 2020 16:56:45 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ7YRXBJW7PQCECX6F4YCAT3EVBNHHCJHOYRM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3636/issue_event/3315062643@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3636@github.com>
References: <quicwg/base-drafts/pull/3636@github.com>
Subject: Re: [quicwg/base-drafts] Text/figure consistency (#3636)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4a03d7d5f7_71e33f96062cd964811bc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/njhstdW3zZ5frMAmSwC-0x0LrVA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 07 May 2020 23:56:49 -0000

----==_mimepart_5eb4a03d7d5f7_71e33f96062cd964811bc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3636 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3636#event-3315062643
----==_mimepart_5eb4a03d7d5f7_71e33f96062cd964811bc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="614324363" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3636" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3636/hovercard" href="https://github.com/quicwg/base-drafts/pull/3636">#3636</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3636#event-3315062643">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZTZ6WKXEXA6PZSZZ3RQNDD3ANCNFSM4M3UJ73Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7X3M7ZMJWJVEIUQJLRQNDD3A5CNFSM4M3UJ732YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYWL5O4Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3636#event-3315062643",
"url": "https://github.com/quicwg/base-drafts/pull/3636#event-3315062643",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4a03d7d5f7_71e33f96062cd964811bc--


From nobody Thu May  7 16:59:21 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 C97F73A09D8 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:57:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KzAwr9fvh2nW for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 16:57:36 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2A1643A09DE for <quic-issues@ietf.org>; Thu,  7 May 2020 16:57:36 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 7D563C60992 for <quic-issues@ietf.org>; Thu,  7 May 2020 16:57:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588895855; bh=1LlhQdBBeOfyDgJiFgcWjHe0hXItvJ7oI3zJrAGHiaQ=; h=Date:From:To:Subject:From; b=DLcjVX/d6+XwX/vMNXgKhKPwIsTaCJDSCL/ZkSf2mVgQ5e3giQ34vOSj/O1qlE8D+ +dwLMEqcdwp3olHYdNIgit+Ehpwzse6xW5/VVHUEfGol9m5hacf5wwy0bADao5cNw4 Z+SVfUW+mYUA+Uss/6cw4++Br6NIcVP01MVCoYs0=
Date: Thu, 07 May 2020 16:57:35 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/31d16f-d2b671@github.com>
Subject: [quicwg/base-drafts] d2b671: Script updating gh-pages from 103cfce7. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MnhQCONe7rIlLd1OdjGLAgCUiVg>
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: Thu, 07 May 2020 23:57:39 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d2b6718894d5070659d392281d12a9949384ac94
      https://github.com/quicwg/base-drafts/commit/d2b6718894d5070659d392281d12a9949384ac94
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 103cfce7. [ci skip]



From nobody Thu May  7 17:10:04 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 9691D3A097B for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:04:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Ce3hGPDUZEzj for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:03:58 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0A7703A08E7 for <quic-issues@ietf.org>; Thu,  7 May 2020 17:03:57 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 2FA18520083 for <quic-issues@ietf.org>; Thu,  7 May 2020 17:03:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588896237; bh=vy3/jvTyUMbe7GQ6dBKf1rIjKwvoiGP1InVqxRJfFj4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=R0+Fz1qaTNz/XV64H3grqV/Lehn8SMXWigtSiNIyNTQfj3ZdyQIT78/Ul7pay6R/Y Aw1GcRQuDEhLPQ1va2IIP587drOQJ6HNLrLrkWL44JwQs1LmPp44aENZbN0KP1ydmq 6634hdl9GNc0LH30O176GgkBeh55vdBkGyJ7P/vY=
Date: Thu, 07 May 2020 17:03:57 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK527BOK5ELA5UDBSTN4YCBO3EVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/407915096@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4a1ed20cca_2e4c3fd98e2cd95c225868"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/w3PWH7tnOJ1qWbwsPZdouWHutBs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 00:04:04 -0000

----==_mimepart_5eb4a1ed20cca_2e4c3fd98e2cd95c225868
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho commented on this pull request.

Thank you for all of this. LGTM modulo the point below.

> +integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a limit that is specific to
+the AEAD in use. Endpoints MUST initiate a key update before reaching this
+limit. Applying a limit reduces the probability that an attacker is able to
+successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, if the
+number of packets that fail authentication exceeds 2^36, the endpoint MUST
+immediately close the connection.  Note that the analysis in {{AEBounds}}

I wonder if "MUST immediately close the connection" is correct. Our recommendation, stated above, is to do a key update.

I think it would be fine to simply say "MUST NOT exceed X."

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-407915096
----==_mimepart_5eb4a1ed20cca_2e4c3fd98e2cd95c225868
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@kazuho</b> commented on this pull request.</p>

<p>Thank you for all of this. LGTM modulo the point below.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r421861668">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a limit that is specific to
+the AEAD in use. Endpoints MUST initiate a key update before reaching this
+limit. Applying a limit reduces the probability that an attacker is able to
+successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, if the
+number of packets that fail authentication exceeds 2^36, the endpoint MUST
+immediately close the connection.  Note that the analysis in {{AEBounds}}
</pre>
<p>I wonder if "MUST immediately close the connection" is correct. Our recommendation, stated above, is to do a key update.</p>
<p>I think it would be fine to simply say "MUST NOT exceed X."</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-407915096">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY5MSJTVFF5VURPKVDRQND63ANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6KZNVX3LGUWWRPEYLRQND63A5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBIEUWA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-407915096",
"url": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-407915096",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4a1ed20cca_2e4c3fd98e2cd95c225868--


From nobody Thu May  7 17:10:36 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 0B7153A097B for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:04:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 PBjQSz8vgVWM for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:04:34 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 89E4D3A08E7 for <quic-issues@ietf.org>; Thu,  7 May 2020 17:04:33 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 89F17521F0A for <quic-issues@ietf.org>; Thu,  7 May 2020 17:04:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588896272; bh=5c+VleDMepm3ONH9tPcDuC4CL+rRxPkyEM5oM4SwvCg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EGr1b5b9zyP/bYe8RqQZAVEjxbUDPabEGZt6AvfjVO9x/wM3KQEpWeposJmGmzwCQ uJxwu99qnNoB904I9mqFEXrF8958GLpI+rCAFSU0YOle6zOWeP4+2D/N86ntpVJ6It uXGaQ8XzlpwdKBh5XE2scAsG6Z1DErCLAAvihCQ4=
Date: Thu, 07 May 2020 17:04:32 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZJSQKBRYCL3QNX6HF4YCBRBEVBNHHCJHLYIA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3635/625557304@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3635@github.com>
References: <quicwg/base-drafts/issues/3635@github.com>
Subject: Re: [quicwg/base-drafts] Nit in invariants draft (#3635)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4a21079963_35183fe9730cd964103476"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8eEtfsvi3RONvi9M22wC6GGWdDc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 00:04:44 -0000

----==_mimepart_5eb4a21079963_35183fe9730cd964103476
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think this was fixed by https://github.com/quicwg/base-drafts/pull/3636, I dont know if that was just a coincidence or it was untagged

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3635#issuecomment-625557304
----==_mimepart_5eb4a21079963_35183fe9730cd964103476
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I think this was fixed by <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="614324363" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3636" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3636/hovercard" href="https://github.com/quicwg/base-drafts/pull/3636">#3636</a>, I dont know if that was just a coincidence or it was untagged</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3635#issuecomment-625557304">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZEE7GN7O5P5E3WA5LRQNEBBANCNFSM4M3TK5AA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK24DLLSWYUU5BMKB53RQNEBBA5CNFSM4M3TK5AKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVET6OA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3635#issuecomment-625557304",
"url": "https://github.com/quicwg/base-drafts/issues/3635#issuecomment-625557304",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4a21079963_35183fe9730cd964103476--


From nobody Thu May  7 17:10:54 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 AF1923A09E3 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:07:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KBj-MA1_qPJ6 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:07:30 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EFEA73A08E7 for <quic-issues@ietf.org>; Thu,  7 May 2020 17:07:29 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 9BCF9960301 for <quic-issues@ietf.org>; Thu,  7 May 2020 17:07:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588896448; bh=Fmbs3XJgNHV9wrPgkHhd/dg91wb5qJHUhwGBt1RDgcw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=b6Utl9QNRG/FwIrC9zWSz9sboklPv2VyEZBqLfpB6VoO4HcVIATcpMwSbxSz0tdNE U2lgEf7n3vuVJPAxvuwf/kf4IoKBbFQcPLNt37fue+ac+za4A210hHX/Jr+N6u0+wl UR6TJj929CyuNN/Eppl+JMqclBDQOjwi4I2TFaCM=
Date: Thu, 07 May 2020 17:07:28 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYKNCFSZDLLIFJYKGN4YCB4BEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/407916362@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4a2c08c7f9_1d8a3fa9ccccd96c1404f1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ocqiCZmFTwZleFgDIs3G5r9kX9M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 00:07:43 -0000

----==_mimepart_5eb4a2c08c7f9_1d8a3fa9ccccd96c1404f1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a limit that is specific to
+the AEAD in use. Endpoints MUST initiate a key update before reaching this
+limit. Applying a limit reduces the probability that an attacker is able to
+successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, if the
+number of packets that fail authentication exceeds 2^36, the endpoint MUST
+immediately close the connection.  Note that the analysis in {{AEBounds}}

My thinking was that this is the necessary reaction if the key update was not successful before this limit was reached.  That we require a key update to be initiated before this is reached isn't any guarantee that the key update will succeed.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#discussion_r421862841
----==_mimepart_5eb4a2c08c7f9_1d8a3fa9ccccd96c1404f1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r421862841">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a limit that is specific to
+the AEAD in use. Endpoints MUST initiate a key update before reaching this
+limit. Applying a limit reduces the probability that an attacker is able to
+successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, if the
+number of packets that fail authentication exceeds 2^36, the endpoint MUST
+immediately close the connection.  Note that the analysis in {{AEBounds}}
</pre>
<p>My thinking was that this is the necessary reaction if the key update was not successful before this limit was reached.  That we require a key update to be initiated before this is reached isn't any guarantee that the key update will succeed.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r421862841">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK66X2632CDLKNEEJ4LRQNEMBANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7DUKQEFYTMNIH6G3LRQNEMBA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBIE6SQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620#discussion_r421862841",
"url": "https://github.com/quicwg/base-drafts/pull/3620#discussion_r421862841",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4a2c08c7f9_1d8a3fa9ccccd96c1404f1--


From nobody Thu May  7 17:11:23 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 1F1533A09DE for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:08:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.039
X-Spam-Level: 
X-Spam-Status: No, score=-1.039 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 ZZ7cCNNlCFbh for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:07:56 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 518693A08E7 for <quic-issues@ietf.org>; Thu,  7 May 2020 17:07:56 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 2C2FE6E1FE1 for <quic-issues@ietf.org>; Thu,  7 May 2020 17:07:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588896475; bh=RXjqxajTMdOjAm+/FBnUfLYMi3ACRCar3SDkv18JrnQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AChew1w0KrJDljffsItBzhrjuXsG4PQvtwcjRKUKJvLRNS2CVUPg6wSlUSfJ4kTX8 YhQ1DYFV6QeoY/SMHnEo3oQVae3pFuw5pLnoAsJfycLUmBk1amR8S/7R2jxpmSdN2C y0/ONFb3BePihdTUr5GT1v7VXV8ayHKJCd0mqIBw=
Date: Thu, 07 May 2020 17:07:55 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK35ZBRU5QLONOCGJ554YCB5XEVBNHHCJHLYIA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3635/625558261@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3635@github.com>
References: <quicwg/base-drafts/issues/3635@github.com>
Subject: Re: [quicwg/base-drafts] Nit in invariants draft (#3635)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4a2db1cebe_378a3fdb564cd9682716d5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OVPkrBGAGfEHOaQOGBufP79wiMI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 00:08:01 -0000

----==_mimepart_5eb4a2db1cebe_378a3fdb564cd9682716d5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That was intentional.  I just neglected to tag this.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3635#issuecomment-625558261
----==_mimepart_5eb4a2db1cebe_378a3fdb564cd9682716d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>That was intentional.  I just neglected to tag this.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3635#issuecomment-625558261">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3LZBGJN7QZSZY5TRDRQNENXANCNFSM4M3TK5AA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4YH6PZECRPMNFGKWTRQNENXA5CNFSM4M3TK5AKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVEUF5I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3635#issuecomment-625558261",
"url": "https://github.com/quicwg/base-drafts/issues/3635#issuecomment-625558261",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4a2db1cebe_378a3fdb564cd9682716d5--


From nobody Thu May  7 17:11:44 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 3A08B3A08E7 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:08:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 PzSGq52xmMBm for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:08:00 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 875363A097B for <quic-issues@ietf.org>; Thu,  7 May 2020 17:08:00 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 94949660075 for <quic-issues@ietf.org>; Thu,  7 May 2020 17:07:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588896478; bh=g94+9o8atoIcyjQPZKZjZe56CtPijzalVnyUASqwoYk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=i7vSvO1oxDwiVfszS65BJpylyE2iyAibIKgaTmyk5d1zJOqe3Vrf6vvR1/QS+KHxX p0uK2FAsy78iGJBRZ7PRsjru6dZXJ6b8HzdL/ROfAigMDqANkLDqQexjzStu11Cl5q 72g++OayEAThpO3kE/yb34ZJQJGjOQawxbYQC/RI=
Date: Thu, 07 May 2020 17:07:58 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZKEELH6NXPZNMH7NN4YCB55EVBNHHCJHLYIA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3635/issue_event/3315084153@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3635@github.com>
References: <quicwg/base-drafts/issues/3635@github.com>
Subject: Re: [quicwg/base-drafts] Nit in invariants draft (#3635)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4a2de85fb4_7163f99670cd95c1291e2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7fLvsczAiUmZBBWLjtgUTzQzkbI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 00:08:05 -0000

----==_mimepart_5eb4a2de85fb4_7163f99670cd95c1291e2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3635.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3635#event-3315084153
----==_mimepart_5eb4a2de85fb4_7163f99670cd95c1291e2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="614299712" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3635" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3635/hovercard" href="https://github.com/quicwg/base-drafts/issues/3635">#3635</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3635#event-3315084153">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK55U22C6P6BSXNIUTLRQNEN5ANCNFSM4M3TK5AA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYXYUZCN56O2RBUJ3TRQNEN5A5CNFSM4M3TK5AKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYWMCW6I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3635#event-3315084153",
"url": "https://github.com/quicwg/base-drafts/issues/3635#event-3315084153",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4a2de85fb4_7163f99670cd95c1291e2--


From nobody Thu May  7 17:32:24 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 9B6DA3A082A for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:31:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 o8axmFIU4Iy8 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:31:55 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 403E03A0834 for <quic-issues@ietf.org>; Thu,  7 May 2020 17:31:55 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 11FE9960C0F for <quic-issues@ietf.org>; Thu,  7 May 2020 17:31:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588897914; bh=1BthkJ+aABmPXdGVnvrqS4KMKrMWCJ8LWB+34VLdBfE=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=wq+H5JATbnK9QgJ9bElpuioq2F9L8Nu7jzVjwbKl7LgqaMTZFzxKVrNTHiUoFgbYD 8Nfc4MWLgeBac+p4tdgEEAp/7ZlPvxR3rn0EvGrteFroxFTMDMNTxvo/kLw9uFJ+zR 66kl5Ce3ZbbHRdIu55As3dKvnTyMI1eLffv8bEQE=
Date: Thu, 07 May 2020 17:31:54 -0700
From: Kazu Yamamoto <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK25KKMPIKMKITLSWJF4YCEXTEVBNHHCJH3CRQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3637@github.com>
Subject: [quicwg/base-drafts] redrawing handshake figures in ascending encryption-level order. (#3637)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4a87a31d4_2e353fb7ac6cd95c1768a8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazu-yamamoto
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SjO-K7gr7S_BtJPyicI5AR7Y_bg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 00:32:00 -0000

----==_mimepart_5eb4a87a31d4_2e353fb7ac6cd95c1768a8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This should fix #3632.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3637

-- Commit Summary --

  * redrawing handshake figures in ascending encryption-level order.

-- File Changes --

    M draft-ietf-quic-transport.md (8)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3637.patch
https://github.com/quicwg/base-drafts/pull/3637.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3637

----==_mimepart_5eb4a87a31d4_2e353fb7ac6cd95c1768a8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This should <span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3632.">fix</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="613810233" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3632" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3632/hovercard" href="https://github.com/quicwg/base-drafts/issues/3632">#3632</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3637'>https://github.com/quicwg/base-drafts/pull/3637</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>redrawing handshake figures in ascending encryption-level order.</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3637/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (8)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3637.patch'>https://github.com/quicwg/base-drafts/pull/3637.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3637.diff'>https://github.com/quicwg/base-drafts/pull/3637.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3637">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5OYUWOJMERRZMERXDRQNHHVANCNFSM4M3YV2DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3LYXGUVF3UYVGI4F3RQNHHVA5CNFSM4M3YV2D2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JE7MKGA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3637",
"url": "https://github.com/quicwg/base-drafts/pull/3637",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb4a87a31d4_2e353fb7ac6cd95c1768a8--


From nobody Thu May  7 17:36:58 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 A65F03A0840 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:36:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 D6-atlH0seZf for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 17:36:50 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 886113A083D for <quic-issues@ietf.org>; Thu,  7 May 2020 17:36:49 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 3A86B960500 for <quic-issues@ietf.org>; Thu,  7 May 2020 17:36:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588898209; bh=0utUu7jBdWxCCVhy7X18vmK2rwJJvmj8K+8Mfp+HSYA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MKd8OiWYP4cSMW8ZfBPeRRYBC9zipzYF1SXgMGcHJrYvrU6Ni5wTF0x0cGbQyfHmw ZfAKdhAjxxe/YAYAfSMOcBpnATh6RaZkIsYLabaaM/kpPPNzkmn2rbHxE2fCuOzm30 JMzveAS9QIW3kGvlIF8lX0KqAtTtseINVenT7Sws=
Date: Thu, 07 May 2020 17:36:49 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZD5OI3S7TP6OL2LGN4YCFKDEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/407925512@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4a9a12abe3_28a83fafb74cd960193a8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UiUM14EutEqxfUGrqmxBJnUmAm4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 00:36:55 -0000

----==_mimepart_5eb4a9a12abe3_28a83fafb74cd960193a8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho commented on this pull request.



> +integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a limit that is specific to
+the AEAD in use. Endpoints MUST initiate a key update before reaching this
+limit. Applying a limit reduces the probability that an attacker is able to
+successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, if the
+number of packets that fail authentication exceeds 2^36, the endpoint MUST
+immediately close the connection.  Note that the analysis in {{AEBounds}}

I see. Thank you for the clarification.

Then, I think that the text could become less confusing if we move "MUST close the connection" to the paragraph above, and change this paragraph to just listing the numbers.

For example, the paragraph above can be changed to something like:
_Endpoints MUST count the number of packets that are received but cannot be authenticated. If the number of packets that fail authentication exceeds a limit that is specific to the AEAD in use, the endpoint MUST immediately close the connection. Endpoints MUST initiate a key update before reaching this limit. Applying a limit reduces the probability that an attacker is able to successfully forge a packet; see {{AEBounds}} and {{ROBUST}}._

_For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, the limit on the number of packets that fail authentication is 2^36..._

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#discussion_r421871212
----==_mimepart_5eb4a9a12abe3_28a83fafb74cd960193a8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@kazuho</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r421871212">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated. Packet protection keys MUST NOT be used for removing packet
+protection after authentication fails on more than a limit that is specific to
+the AEAD in use. Endpoints MUST initiate a key update before reaching this
+limit. Applying a limit reduces the probability that an attacker is able to
+successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, if the
+number of packets that fail authentication exceeds 2^36, the endpoint MUST
+immediately close the connection.  Note that the analysis in {{AEBounds}}
</pre>
<p>I see. Thank you for the clarification.</p>
<p>Then, I think that the text could become less confusing if we move "MUST close the connection" to the paragraph above, and change this paragraph to just listing the numbers.</p>
<p>For example, the paragraph above can be changed to something like:<br>
<em>Endpoints MUST count the number of packets that are received but cannot be authenticated. If the number of packets that fail authentication exceeds a limit that is specific to the AEAD in use, the endpoint MUST immediately close the connection. Endpoints MUST initiate a key update before reaching this limit. Applying a limit reduces the probability that an attacker is able to successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.</em></p>
<p><em>For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, the limit on the number of packets that fail authentication is 2^36...</em></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r421871212">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZAV622HAOO36CMYF3RQNH2DANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5MYO2NDH6XYFQOBPDRQNH2DA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBIHGCA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620#discussion_r421871212",
"url": "https://github.com/quicwg/base-drafts/pull/3620#discussion_r421871212",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4a9a12abe3_28a83fafb74cd960193a8--


From nobody Thu May  7 18:14:50 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 95A573A0A54 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 18:14:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 szyJV9bgxE0E for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 18:14:42 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6D5093A0A39 for <quic-issues@ietf.org>; Thu,  7 May 2020 18:14:42 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 5A06AE15D1 for <quic-issues@ietf.org>; Thu,  7 May 2020 18:14:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588900481; bh=AHQuq5fgZlECctfFalO/pWhaNt/3HofcR4BeIkCr31M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pSS3a/aEEajMSZxH2XHpD8udUHkX+6E2Da6u9YIYsKekiBk7HSuXFiWD9vEe+5XsZ MwZByEQUM/pOnZ9p2Y0QVALQrYDMWoVc90VV8f3tGR0fNzZ1Os6BYeyTERxmOe4/Ck FPePfffUJLYmEf+0mx3rdX6AF+ggDVGGeXAC8Aw0=
Date: Thu, 07 May 2020 18:14:41 -0700
From: Christian Huitema <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3FP5BGSVZUNNC5EYN4YCJYDEVBNHHCIZJKDU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3622/625575624@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3622@github.com>
References: <quicwg/base-drafts/issues/3622@github.com>
Subject: Re: [quicwg/base-drafts] Make using static table and Huffman encoding in QPACK opt-in (#3622)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4b2814b2e4_1d1d3fc4c5acd964729e0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: huitema
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/I5134oiN6eOGKgauCkGrVCa9VZg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 01:14:48 -0000

----==_mimepart_5eb4b2814b2e4_1d1d3fc4c5acd964729e0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

First, I do agree with the decision to push this to v2. Second, I confirm that the Huffman decoding code can fit in less than 1K, which means that the issue is maybe not too urgent. As @MikeBishop said, if we want to negotiate for code size, we might consider negotiating Qpack as well as Huffman.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3622#issuecomment-625575624
----==_mimepart_5eb4b2814b2e4_1d1d3fc4c5acd964729e0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>First, I do agree with the decision to push this to v2. Second, I confirm that the Huffman decoding code can fit in less than 1K, which means that the issue is maybe not too urgent. As <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/MikeBishop/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/MikeBishop">@MikeBishop</a> said, if we want to negotiate for code size, we might consider negotiating Qpack as well as Huffman.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3622#issuecomment-625575624">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2AMT74NB2MVOD4ZXDRQNMIDANCNFSM4MW5NTVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3LUA5CH63YZLBWFULRQNMIDA5CNFSM4MW5NTV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVEYNSA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-625575624",
"url": "https://github.com/quicwg/base-drafts/issues/3622#issuecomment-625575624",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4b2814b2e4_1d1d3fc4c5acd964729e0--


From nobody Thu May  7 18:37:14 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 286E73A0ADA for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 18:37:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.096
X-Spam-Level: 
X-Spam-Status: No, score=-3.096 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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 oMRyLNHyxUL0 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 18:37:10 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B82BC3A0AD7 for <quic-issues@ietf.org>; Thu,  7 May 2020 18:37:10 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id E1DFDE0DBE for <quic-issues@ietf.org>; Thu,  7 May 2020 18:37:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588901829; bh=ZepofQ0gpQlNgqem/p7bm5TEkJuoI/APj6ZvnUJ3+2A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OuW0mFEE5x0USSWRhNxVhxZC9zQvl9yGofvHXj+714MBdymQT36/R5Y4IPJLyRcdF OGJq6OKk4iYdbkKv3c7K0jyaiTils5Y0sAh85pXeetEocxhzjbRxvZuUop3cckN6vq ZpLCqSFqFEt4GXaZ1F1lfaArJ/z54M19rKDzIj+Y=
Date: Thu, 07 May 2020 18:37:09 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK75R2N2XUDKWLSLBNV4YCMMLEVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/625581184@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4b7c5d05f4_74e33fb8958cd95c828fc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zK2OiBRAeV1874DIGXQ4BnMBJ5c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 01:37:12 -0000

----==_mimepart_5eb4b7c5d05f4_74e33fb8958cd95c828fc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@chris-wood points out an error in my calculation.  I had based my calculations on direct mapping of `l[E]` in the CCM analysis to `l` in our calculations.  That is, `l` was the number of blocks in the message.  But the analysis by Jonsson defines this as:

![image](https://user-images.githubusercontent.com/67641/81360611-b252b580-911f-11ea-8d81-d6824c685d51.png)

The definition of \Beta is the CCM function, so this function really reduces to 2 times the length of the message (in blocks), plus 1 (to account for the additional encryption).  We can ignore the extra 1 as that is absorbed by the tag length.

I'm updating the numbers in the PR.  The result is another halving of the number of packets.  @fxguenther, @ad-l, it's pretty clear that I'm out of my depth here, so your input would be highly valued.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625581184
----==_mimepart_5eb4b7c5d05f4_74e33fb8958cd95c828fc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/chris-wood/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/chris-wood">@chris-wood</a> points out an error in my calculation.  I had based my calculations on direct mapping of <code>l[E]</code> in the CCM analysis to <code>l</code> in our calculations.  That is, <code>l</code> was the number of blocks in the message.  But the analysis by Jonsson defines this as:</p>
<p><a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/67641/81360611-b252b580-911f-11ea-8d81-d6824c685d51.png"><img src="https://user-images.githubusercontent.com/67641/81360611-b252b580-911f-11ea-8d81-d6824c685d51.png" alt="image" style="max-width:100%;"></a></p>
<p>The definition of \Beta is the CCM function, so this function really reduces to 2 times the length of the message (in blocks), plus 1 (to account for the additional encryption).  We can ignore the extra 1 as that is absorbed by the tag length.</p>
<p>I'm updating the numbers in the PR.  The result is another halving of the number of packets.  <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/fxguenther/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/fxguenther">@fxguenther</a>, <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ad-l/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ad-l">@ad-l</a>, it's pretty clear that I'm out of my depth here, so your input would be highly valued.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625581184">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7JXRO2TNYSFHMTTBLRQNO4LANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7CDT7LUK5TRQGTKI3RQNO4LA5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVEZZAA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625581184",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625581184",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4b7c5d05f4_74e33fb8958cd95c828fc--


From nobody Thu May  7 18:39:44 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 7AC3D3A0AE2 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 18:39:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 cWO4AbCsVU-7 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 18:39:40 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3366E3A0ADB for <quic-issues@ietf.org>; Thu,  7 May 2020 18:39:40 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 397808C0CD4 for <quic-issues@ietf.org>; Thu,  7 May 2020 18:39:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588901979; bh=LIDVolSxhFdWmKdMbvGjzgf91jyAiGut47eQ199JFu8=; h=Date:From:To:Subject:From; b=bm22lecvAtVxisgZZZPmR+Ef/3JTp9xwyIA3uvqpRqL59zrimhIybZwfeqbfPjP/I FOpK+OwUAv/+E+I8jqIGJxNcwhRFLmlo0RXG1P37pIsTRY64yUuZDdxgVfs0F0MooF C4fPI780HhSOTZ0VGDSnScHEmefJ15wqRsWwhfag=
Date: Thu, 07 May 2020 18:39:39 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgery-limit/d5613b-cdf655@github.com>
Subject: [quicwg/base-drafts] 9da977: Editorial improvement
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xqKuDeQJ9UMUSpc1UMvwx6JOPoc>
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, 08 May 2020 01:39:42 -0000

  Branch: refs/heads/forgery-limit
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9da9774ddd3638a4f85faf29893495b5855fcbe9
      https://github.com/quicwg/base-drafts/commit/9da9774ddd3638a4f85faf29893495b5855fcbe9
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Editorial improvement


  Commit: cdf655307293ebf7be598849ccdad0f41ce32e11
      https://github.com/quicwg/base-drafts/commit/cdf655307293ebf7be598849ccdad0f41ce32e11
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Math is hard, halve the numbers again

Based on input from @chris-wood, it appears as though the length
calculation was off.

Of course, the length calculation is off anyway, because 2^10 is
arbitrary and doesn't match the expected packet size. But as long as
we're being arbitrary, we can at least be *consistently* arbitrary.


Compare: https://github.com/quicwg/base-drafts/compare/d5613bc37a4a...cdf655307293


From nobody Thu May  7 18:40:09 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 250313A0ADB for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 18:39:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 LdDitzjDvn_c for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 18:39:49 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2536B3A0AE2 for <quic-issues@ietf.org>; Thu,  7 May 2020 18:39:49 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 10965C60394 for <quic-issues@ietf.org>; Thu,  7 May 2020 18:39:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588901988; bh=a20zAC5u/yrEQpEtMdBQ4lImQTuG9KVn551UzhSMdzk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZgGq+dSL8Tf5/879aHyPG20YOXqPM9cL0o8Un/5Cym4DV6psIkvOgKqiIE2cQmc2g L8hDJEwdMq2ho2yc1QXntc+RYvBkBm236mxMohEfRcjSEwZwcwCUtJg5sILmcS4ngR 0bJPrnTJKaFlGt+Xv7LwTXxUpGAzfnhWCIbVYYKc=
Date: Thu, 07 May 2020 18:39:48 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/push/5039139712@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4b864b1c_3dd13f99246cd96c195011"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IymPqTi5TVkOkR2_kpGqFkjNcM8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 01:39:51 -0000

----==_mimepart_5eb4b864b1c_3dd13f99246cd96c195011
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 2 commits.

9da9774ddd3638a4f85faf29893495b5855fcbe9  Editorial improvement
cdf655307293ebf7be598849ccdad0f41ce32e11  Math is hard, halve the numbers again


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620/files/d5613bc37a4a89238782c0743c64f541c810f54a..cdf655307293ebf7be598849ccdad0f41ce32e11

----==_mimepart_5eb4b864b1c_3dd13f99246cd96c195011
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/9da9774ddd3638a4f85faf29893495b5855fcbe9">9da9774</a>  Editorial improvement</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/cdf655307293ebf7be598849ccdad0f41ce32e11">cdf6553</a>  Math is hard, halve the numbers again</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3620/files/d5613bc37a4a89238782c0743c64f541c810f54a..cdf655307293ebf7be598849ccdad0f41ce32e11">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY2EDJXHZSGAX5KWJLRQNPGJANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ6OM6TCK77XICZHVDRQNPGJA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTCOJZG4YDIM2QOVZWQIZVGAZTSMJTHE3TCMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620/files/d5613bc37a4a89238782c0743c64f541c810f54a..cdf655307293ebf7be598849ccdad0f41ce32e11",
"url": "https://github.com/quicwg/base-drafts/pull/3620/files/d5613bc37a4a89238782c0743c64f541c810f54a..cdf655307293ebf7be598849ccdad0f41ce32e11",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb4b864b1c_3dd13f99246cd96c195011--


From nobody Thu May  7 18:40:47 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 5B2213A0AE4 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 18:40:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 rJp5PQY9lThe for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 18:40:44 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2A2AF3A0AE2 for <quic-issues@ietf.org>; Thu,  7 May 2020 18:40:44 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 499D0A0551 for <quic-issues@ietf.org>; Thu,  7 May 2020 18:40:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588902043; bh=1kJztxl5JERFn4h6+FnhIUroU+xZf7l0+RiFc0ire5w=; h=Date:From:To:Subject:From; b=1LGLlopTcm2gPF6cTYNVRYqjEQecY6oYZ6YMEGDZtJLVB+Lfhagamf6RW+5hnPCsR dbxD8/jDfYTkTMQw3cqbMRFlBZ4DHZzYblZ7R5RpmLEdIUTAAl/s7UJ8/7Odx6ckjh etJX4lxR1Kr9W0QOm8MWMz9vPJ4foM8VOAsxAYsk=
Date: Thu, 07 May 2020 18:40:43 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d2b671-98aca1@github.com>
Subject: [quicwg/base-drafts] 98aca1: Script updating gh-pages from cdf65530. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PwCMyAxJI8EmrgEdiRuxd-UnWlQ>
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, 08 May 2020 01:40:46 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 98aca1b06355cf156e02d74be8f82e47a5912d4e
      https://github.com/quicwg/base-drafts/commit/98aca1b06355cf156e02d74be8f82e47a5912d4e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-http.html
    M forgery-limit/draft-ietf-quic-http.txt
    M forgery-limit/draft-ietf-quic-invariants.html
    M forgery-limit/draft-ietf-quic-invariants.txt
    M forgery-limit/draft-ietf-quic-qpack.html
    M forgery-limit/draft-ietf-quic-qpack.txt
    M forgery-limit/draft-ietf-quic-recovery.html
    M forgery-limit/draft-ietf-quic-recovery.txt
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from cdf65530. [ci skip]



From nobody Thu May  7 19:15:54 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 0901E3A0C13 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 19:15:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 VjCkF5a6SPKe for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 19:15:49 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2F83D3A0C0C for <quic-issues@ietf.org>; Thu,  7 May 2020 19:15:49 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 43C218C03C9 for <quic-issues@ietf.org>; Thu,  7 May 2020 19:15:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588904147; bh=olaFZI3IQUHLwB5RFT0huuFe8mCmFQtIx1cJhZchT54=; h=Date:From:To:Subject:From; b=nzqHPriInR+pSMJFNIHz3yhZYtfKIHsGZgXohTv+miySIdIvWZKJHKMWpUONi/BYE sIWq/oV245H+AGyIudxNnnIw4yisue6jHaHjj+6Fs+yXuK0RR31DhKsSckmljwEB22 qSk9OUZv8QH/dS/fRGZvghtyQTPFyy+rNrQdUvE4=
Date: Thu, 07 May 2020 19:15:47 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/103cfc-20d77d@github.com>
Subject: [quicwg/base-drafts] 8411fa: redrawing handshake figures in ascending encryptio...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IsgoSPoSOaJwxPMnsC60hsaaLTs>
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, 08 May 2020 02:15:52 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8411fae236d9ec1598c04e976e3ab90a5525129c
      https://github.com/quicwg/base-drafts/commit/8411fae236d9ec1598c04e976e3ab90a5525129c
  Author: Kazu Yamamoto <kazu@iij.ad.jp>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  redrawing handshake figures in ascending encryption-level order.


  Commit: 20d77df1ddb05985570b2a5df88423046a67740b
      https://github.com/quicwg/base-drafts/commit/20d77df1ddb05985570b2a5df88423046a67740b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3637 from kazu-yamamoto/fix-handshake-figures

redrawing handshake figures in ascending encryption-level order.


Compare: https://github.com/quicwg/base-drafts/compare/103cfce74f5d...20d77df1ddb0


From nobody Thu May  7 19:16:16 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 9EFDF3A0C0C for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 19:15:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 kPlYaomFQ_MG for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 19:15:50 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5CEA73A0C12 for <quic-issues@ietf.org>; Thu,  7 May 2020 19:15:50 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 809DE2C0E96 for <quic-issues@ietf.org>; Thu,  7 May 2020 19:15:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588904149; bh=pRIUPLAFVk9Ci9FSQj+CKCOLQUZCxbogb+YKG8ec9jk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wh6UmnOpXlIN4tNRYTBud7fRoYNCslxnqwe6TIqK8DKcO5DF3/Yh70o0JuDrrYxg0 mYe44ojNuTzLHhaRBdB1MNynYWwbybE4mafRQB6MThKPDwmbhSYfVi9pI0G3VZJ7iT 9HV0y+ERh/XC6rUz6RRGb1W29eyVsP4sZyjroeu4=
Date: Thu, 07 May 2020 19:15:49 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK25GGJVDXJK4XFG4MN4YCQ5LEVBNHHCJH3CRQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3637/c625590784@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3637@github.com>
References: <quicwg/base-drafts/pull/3637@github.com>
Subject: Re: [quicwg/base-drafts] redrawing handshake figures in ascending encryption-level order. (#3637)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4c0d570e0f_4b103f9ffa0cd968126710"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/poCKuYYxjvGt_qVXr9NSv-7UqBY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 02:15:52 -0000

----==_mimepart_5eb4c0d570e0f_4b103f9ffa0cd968126710
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks!

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3637#issuecomment-625590784
----==_mimepart_5eb4c0d570e0f_4b103f9ffa0cd968126710
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Thanks!</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3637#issuecomment-625590784">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ5DTMJFOBYEVTLFSTRQNTNLANCNFSM4M3YV2DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYS7QHU2LAKYIOB5KLRQNTNLA5CNFSM4M3YV2D2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVE4EAA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3637#issuecomment-625590784",
"url": "https://github.com/quicwg/base-drafts/pull/3637#issuecomment-625590784",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4c0d570e0f_4b103f9ffa0cd968126710--


From nobody Thu May  7 19:16:22 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 A66D03A0C22 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 19:15:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 2dfSy0dtsQk9 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 19:15:57 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7C9713A0C12 for <quic-issues@ietf.org>; Thu,  7 May 2020 19:15:57 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id ADA9EA1E41 for <quic-issues@ietf.org>; Thu,  7 May 2020 19:15:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588904156; bh=RA9A2/pfULeq1ysAwyKFBb+c24CrliBF4Ttpk22gRog=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CxuZDYN5991n3NRknRaPT9jd0wbPgccujFdazySv68BawUPAfUiVynj1S11IeVXRF r7ap/6jeqGF3a0zsTXlvaulbVXkC7+N+taV4gDlT80fNmJJp2Hh94w9Kd0rKRirzdS lDcVbWqLYBnRhnuE/FNCSzoWhQ2+MLyaeA7urkNA=
Date: Thu, 07 May 2020 19:15:56 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7ZQNTR6LTSZX2LRW54YCQ5ZEVBNHHCJH3CRQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3637/issue_event/3315308464@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3637@github.com>
References: <quicwg/base-drafts/pull/3637@github.com>
Subject: Re: [quicwg/base-drafts] redrawing handshake figures in ascending encryption-level order. (#3637)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4c0dc9d0c8_71d23ff832ecd960122286"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gldZmGP1QbzhopUQ_rEaNCSkHQE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 02:16:00 -0000

----==_mimepart_5eb4c0dc9d0c8_71d23ff832ecd960122286
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3637 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3637#event-3315308464
----==_mimepart_5eb4c0dc9d0c8_71d23ff832ecd960122286
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="614425228" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3637" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3637/hovercard" href="https://github.com/quicwg/base-drafts/pull/3637">#3637</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3637#event-3315308464">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZKENHLG3Q2S34FI6TRQNTNZANCNFSM4M3YV2DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYPRUFOTKFHVOWYF2TRQNTNZA5CNFSM4M3YV2D2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYWNZPMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3637#event-3315308464",
"url": "https://github.com/quicwg/base-drafts/pull/3637#event-3315308464",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4c0dc9d0c8_71d23ff832ecd960122286--


From nobody Thu May  7 19:16:25 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 328863A0C12 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 19:16:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.555
X-Spam-Level: 
X-Spam-Status: No, score=-6.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 nAWxmnsg09tO for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 19:15:58 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E8BF23A0C16 for <quic-issues@ietf.org>; Thu,  7 May 2020 19:15:57 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 82C5FA0B7C for <quic-issues@ietf.org>; Thu,  7 May 2020 19:15:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588904156; bh=jA6199+9x+i76T+HoHFOopYxSB080s72IZpOySSWUSU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yIA7Fbp2Nl8TXbhpIEUJ8UdZgRY6aHphYDdHoTa7BkXEiWPjFbjbt/j9mYybIgNYO l/0Q818C6pCRF/PTo/AQG6Ei2cn8Lj8NipCaNL+ClRN7vg+KMCE5mw/Th840WGy5Ue QraC779BBSLuTPYZDejGxb0pP/2kmikzyGjOdJb0=
Date: Thu, 07 May 2020 19:15:56 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4EUBYBK7FYODYHMEV4YCQ5ZEVBNHHCJFQAHE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3632/issue_event/3315308467@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3632@github.com>
References: <quicwg/base-drafts/issues/3632@github.com>
Subject: Re: [quicwg/base-drafts] Order packets by space in examples (#3632)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4c0dc7045d_71f33ff832ecd960312017"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PsuTkgs6VCGjIQ-faKt3HCmk8hc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 02:16:00 -0000

----==_mimepart_5eb4c0dc7045d_71f33ff832ecd960312017
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3632 via #3637.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3632#event-3315308467
----==_mimepart_5eb4c0dc7045d_71f33ff832ecd960312017
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="613810233" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3632" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3632/hovercard" href="https://github.com/quicwg/base-drafts/issues/3632">#3632</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="614425228" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3637" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3637/hovercard" href="https://github.com/quicwg/base-drafts/pull/3637">#3637</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3632#event-3315308467">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK63ZSVDC6MTBNCZ34DRQNTNZANCNFSM4M3BQUVA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ6RFMWREWK5KMLSTLRQNTNZA5CNFSM4M3BQUVKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYWNZPMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3632#event-3315308467",
"url": "https://github.com/quicwg/base-drafts/issues/3632#event-3315308467",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4c0dc7045d_71f33ff832ecd960312017--


From nobody Thu May  7 19:16:49 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 A2AFC3A0C12 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 19:16:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 AdME2COAYNd5 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 19:16:46 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 19E1E3A0C0C for <quic-issues@ietf.org>; Thu,  7 May 2020 19:16:45 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 4B4D59609FA for <quic-issues@ietf.org>; Thu,  7 May 2020 19:16:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588904205; bh=kXeS+oWF6JRaghd1ecgSfbzCkjdSauY9OzMtG/hC6Mo=; h=Date:From:To:Subject:From; b=z4szsj+UcLywCxNxbn6OWdG0UaAwGKpTzkyeLI9cevU4hTFLnca5HIXZlyj1eAbGI WH2rrjQ4vrlRCFjGPQ82EpTRqZQWmJaAdtkmrONB1tikWLhHIwscR/kruujyhIB2L4 uwlnPFmc2ib3CRKSwGNYWMhTZenUpyYT6BbemukE=
Date: Thu, 07 May 2020 19:16:45 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/98aca1-25360f@github.com>
Subject: [quicwg/base-drafts] 25360f: Script updating gh-pages from 20d77df1. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mfeE8z8Nk4-6wPt1y96ZeqzptSg>
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, 08 May 2020 02:16:49 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 25360fbea03a253cca4b25a95dcb66cbb9070c47
      https://github.com/quicwg/base-drafts/commit/25360fbea03a253cca4b25a95dcb66cbb9070c47
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 20d77df1. [ci skip]



From nobody Thu May  7 23:44:34 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 41ACB3A07F7 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 23:44:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 pMAznGRsxwVm for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 23:44:31 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E50E53A07F0 for <quic-issues@ietf.org>; Thu,  7 May 2020 23:44:30 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 0843A8C10A7 for <quic-issues@ietf.org>; Thu,  7 May 2020 23:44:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588920269; bh=p6jQc9bRrk/foohMd/vzzAxrVdovAQjEviDXlZMdhNM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TDHHtBWZlh9h/5l29EV/3897xfCo+drHfhGQGnNecrGmnulfF865AUaX9tcAHMk+5 hkuwHxLZ6JzjoewXhC5SwLJKdbOi1nYN06NAZsCYz3DOGgACvl0tAYLWhk5RISKBlB zSZGNstQsxv6oDstaMN7BUaB96P0RSA8PfzLk50k=
Date: Thu, 07 May 2020 23:44:28 -0700
From: =?UTF-8?B?RmVsaXggR8O8bnRoZXI=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5JI5TSOAMXY6ILAE54YDQMZEVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/625663474@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb4ffccec0fb_6d153f95140cd9681725e8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: fxguenther
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7XWQF5Kg0IbbvPs6PXDfmhpYO8A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 06:44:33 -0000

----==_mimepart_5eb4ffccec0fb_6d153f95140cd9681725e8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Good catch, yes, the double passing over the message requires a factor 2 here. (The AD a may also be up to 3 blocks if I understand the header format correctly, but I guess that's negligible compared to the conservative 2^10 message size.)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625663474
----==_mimepart_5eb4ffccec0fb_6d153f95140cd9681725e8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Good catch, yes, the double passing over the message requires a factor 2 here. (The AD a may also be up to 3 blocks if I understand the header format correctly, but I guess that's negligible compared to the conservative 2^10 message size.)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625663474">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2AE43OBLKONKGS72DRQOS4ZANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7APHMRKFZPOYWGOB3RQOS4ZA5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVFN34Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625663474",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625663474",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb4ffccec0fb_6d153f95140cd9681725e8--


From nobody Thu May  7 23:47:48 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 D1C5C3A07E9 for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 23:47:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 3C44smloYLqw for <quic-issues@ietfa.amsl.com>; Thu,  7 May 2020 23:47:44 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E8CF33A07E7 for <quic-issues@ietf.org>; Thu,  7 May 2020 23:47:43 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id A47D5C60487 for <quic-issues@ietf.org>; Thu,  7 May 2020 23:47:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588920462; bh=OcZErAYvlUljVU56kKvqYTV2vqXerNBH5INUSFOJ2EM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lk8yXcesq5ByW0GU2w5adqct7P3hrHp6hZSPj3+e+N7NA8PCEG+xH2IPZOLmRKi5K SmAAvrcnPZowXrpUeAuWLRS+LY7sZFyIpo3//DWI/oBMmUN3Sj6pQFxveIz5otU3hj XQLxxHRys2tlsqsyiaEGxGNkiCEnKFmeTPD79Llw=
Date: Thu, 07 May 2020 23:47:42 -0700
From: =?UTF-8?B?RmVsaXggR8O8bnRoZXI=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6LDGOMLPW7WOS4YPV4YDQY5EVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/408033722@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5008e92e79_5bd03fd5f5ccd96c2657a7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: fxguenther
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/snjHSY3iph_eamS2z9kjeFKlC4g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 06:47:46 -0000

----==_mimepart_5eb5008e92e79_5bd03fd5f5ccd96c2657a7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@fxguenther commented on this pull request.



> @@ -2158,12 +2158,12 @@ to the second, so that term can be removed without a significant effect on the
 result. This produces the relation:
 
 ~~~
-v + q <= 2^25.5
+v + q <= 2^24.5
 ~~~
 
 Using the previously-established value of 2^24 for `q` and rounding, this leads

```suggestion
Using the previously-established value of 2^23 for `q` and rounding, this leads
```

Reflecting the updated confidentiality bound.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-408033722
----==_mimepart_5eb5008e92e79_5bd03fd5f5ccd96c2657a7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@fxguenther</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3620#discussi=
on_r421972535">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2158,12 +2158,12 @@ to the second, so =
that term can be removed without a significant effect on the=0D
 result. This produces the relation:=0D
 =0D
 ~~~=0D
-v + q &lt;=3D 2^25.5=0D
+v + q &lt;=3D 2^24.5=0D
 ~~~=0D
 =0D
 Using the previously-established value of 2^24 for `q` and rounding, thi=
s leads=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-Using the previously-established value of 2^2=
4 for `q` and rounding, this leads=0D
+Using the previously-established value of 2^23 for `q` and rounding, thi=
s leads=0D
</pre>=0D
=0D
<p>Reflecting the updated confidentiality bound.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3620#pullrequestreview-408033722">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KZHLJ45NH66SQ5WXH3RQOTI5ANCNFSM4MW4IM3A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK73FL6FLPKZRAQL3ZTRQOTI5A5CNFSM4=
MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODBJBTOQ.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestrev=
iew-408033722",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview=
-408033722",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb5008e92e79_5bd03fd5f5ccd96c2657a7--


From nobody Fri May  8 00:26:07 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 B99CC3A0858 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 00:26:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 jLBjwy2ii_XP for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 00:26:02 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D24A03A0853 for <quic-issues@ietf.org>; Fri,  8 May 2020 00:26:01 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id C19746A1EB8 for <quic-issues@ietf.org>; Fri,  8 May 2020 00:26:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588922760; bh=CYUQA+n7KpUaSX3CDJQhrdXeH1F4P8SSfuiAfkR+x+M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=N7VqTYaUDzY0o7E7zF66PoQmdmQoYVG/ycksoE1oLR3m7XSCKenW5uyAVRqOfiisY wWGI3WLQ78+mnlHxWA/mwi8Lz+sDfAUXM5jt9mqVyGtynPn1QNxFgQhyT7jSD+bGQE yKMw8tIRzHfKotlzOFRIgUemAUjZ/4IwRw4ISInc=
Date: Fri, 08 May 2020 00:26:00 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5GARSZGTB3JPRWII54YDVIREVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/625678827@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb50988b2007_74be3feb9cccd964349064"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XHoodUNq_4SlO0tslBLhStyVJlQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 07:26:05 -0000

----==_mimepart_5eb50988b2007_74be3feb9cccd964349064
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Good point about the AD.  The AD - at least for QUIC - is always sent, so that fits in the same space.  We don't necessarily need to double count the tiny number of blocks, but as you say, counting that only once yields a negligible difference.  If we had a large AD that wasn't also transmitted, that would be different.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625678827
----==_mimepart_5eb50988b2007_74be3feb9cccd964349064
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Good point about the AD.  The AD - at least for QUIC - is always sent, so that fits in the same space.  We don't necessarily need to double count the tiny number of blocks, but as you say, counting that only once yields a negligible difference.  If we had a large AD that wasn't also transmitted, that would be different.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625678827">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK66IWUFVD36HKWE4Q3RQOXYRANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6MDA7ANISIVMCHPMLRQOXYRA5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVFRT2Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625678827",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625678827",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb50988b2007_74be3feb9cccd964349064--


From nobody Fri May  8 00:38:13 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 22F503A0863 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 00:38:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 gZeIbykVGPWJ for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 00:38:10 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 429C03A0803 for <quic-issues@ietf.org>; Fri,  8 May 2020 00:38:10 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 57DFD6E1451 for <quic-issues@ietf.org>; Fri,  8 May 2020 00:38:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588923489; bh=hZptMlqQ7IrzXwB3QQK08fE+gi4ZjmY9zE59MXMUUTQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uE5li74lGPPxjhGrc3nOuTxmx6WcZodEZoGdpnrvP8dZMdKRLZ4kaA2UxRYTlhHx7 hEj8UANQiu9wma0Dv2idVUK8/FIq2Bwf10Zqmxm/rOE2o4Ht/I4uYF4zr6/kSGPnAZ xDPWjrT4sbJCCEdt/LL+j4Q/xbK/AZ1WygWaWstE=
Date: Fri, 08 May 2020 00:38:09 -0700
From: =?UTF-8?B?RmVsaXggR8O8bnRoZXI=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7QDXJ4IPM3QVDSRDV4YDWWDEVBNHHCIZC2Y4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3619/625683801@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3619@github.com>
References: <quicwg/base-drafts/issues/3619@github.com>
Subject: Re: [quicwg/base-drafts] Forgery limits on packet protection (#3619)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb50c6147063_35923f936d4cd96c3263aa"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: fxguenther
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tpoi1-VKCXUj4NcrV9OFFF0th24>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 07:38:12 -0000

----==_mimepart_5eb50c6147063_35923f936d4cd96c3263aa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Agreed. To be precise: if I'm not mistaken the AD isn't counted at all right now (`l` accounts for the max. `2^10` payload blocks), but of course the difference is still negligible as long as the AD is small.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625683801
----==_mimepart_5eb50c6147063_35923f936d4cd96c3263aa
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Agreed. To be precise: if I'm not mistaken the AD isn't counted at all right now (<code>l</code> accounts for the max. <code>2^10</code> payload blocks), but of course the difference is still negligible as long as the AD is small.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625683801">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4QQZTPGUMS2MOCJELRQOZGDANCNFSM4MW3IVFA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7KOPHA2LHDYERHRNTRQOZGDA5CNFSM4MW3IVFKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVFS2WI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625683801",
"url": "https://github.com/quicwg/base-drafts/issues/3619#issuecomment-625683801",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb50c6147063_35923f936d4cd96c3263aa--


From nobody Fri May  8 00:38:33 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 8208D3A0853 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 00:38:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 4klO3mQslQpz for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 00:38:24 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 433AB3A0803 for <quic-issues@ietf.org>; Fri,  8 May 2020 00:38:24 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 6F9EF521023 for <quic-issues@ietf.org>; Fri,  8 May 2020 00:38:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588923503; bh=E1BbgUesXqsMXvANgRF+KYYXChu9yAlNZ4PwKw90IEI=; h=Date:From:To:Subject:From; b=g27Oz5aE3pfivEIS8d6mkT2/335yYBS2bv7kDK3Y3mwAzWYhe2nXv5SWNx9om1J8y P9VJuH910wvLrSk7bqyflPsFXMhyG+xAXXGyFZGHig6fnCzZN+1cPONIrMHflmLVqv XEKOPEWEfppAZrDAYmWFShKIbd+TLTXp+MwFXjpU=
Date: Fri, 08 May 2020 00:38:23 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgery-limit/cdf655-7d4f2a@github.com>
Subject: [quicwg/base-drafts] 7d4f2a: Missed one
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/8oj2dcuep1nFrcpkKm1rmDSjLrQ>
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, 08 May 2020 07:38:27 -0000

  Branch: refs/heads/forgery-limit=0D
  Home:   https://github.com/quicwg/base-drafts=0D
  Commit: 7d4f2ac708582bd6b60d00586d177af41867263a=0D
      https://github.com/quicwg/base-drafts/commit/7d4f2ac708582bd6b60d00=
586d177af41867263a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-08 (Fri, 08 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Missed one=0D
=0D
Co-authored-by: Felix G=C3=BCnther <mail@felixguenther.info>=0D
=0D
=0D


From nobody Fri May  8 00:38:39 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 154273A0877 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 00:38:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 DvRqPnZHwnhi for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 00:38:33 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6E1683A0853 for <quic-issues@ietf.org>; Fri,  8 May 2020 00:38:33 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 30EB528100A for <quic-issues@ietf.org>; Fri,  8 May 2020 00:38:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588923512; bh=13NGdBnTLBluz6Y2vyLfHdbEJ/fdhTMmIajv2DBk8w8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KEqwhYHCfqkNr3PKkjHWBDJV644lk1+XAF9EaFbZVEqN37kgpsar2Dh4hS8yaqJHq rrRgSHCPbEd1YslTj5QHy1nML+gp/4URUuIP7lO4ZlCf5ikZwddk2OoDpq2nhY76Qa StxFeEKS1g3aiHctGw+i1DIKMdHfoJqIHGrFYvHw=
Date: Fri, 08 May 2020 00:38:32 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/push/5040234065@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb50c7820b41_22693fbaa36cd96c4213d2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nYml0iRGxZu7DmGFOdLT54-fcRE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 07:38:35 -0000

----==_mimepart_5eb50c7820b41_22693fbaa36cd96c4213d2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

7d4f2ac708582bd6b60d00586d177af41867263a  Missed one


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620/files/cdf655307293ebf7be598849ccdad0f41ce32e11..7d4f2ac708582bd6b60d00586d177af41867263a

----==_mimepart_5eb50c7820b41_22693fbaa36cd96c4213d2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/7d4f2ac708582bd6b60d00586d177af41867263a">7d4f2ac</a>  Missed one</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3620/files/cdf655307293ebf7be598849ccdad0f41ce32e11..7d4f2ac708582bd6b60d00586d177af41867263a">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7XXJX2RIX7RPB5333RQOZHRANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZHRG6CTHWCL5B5RWLRQOZHRA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTCOJZG4YDIM2QOVZWQIZVGA2DAMRTGQYDMNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620/files/cdf655307293ebf7be598849ccdad0f41ce32e11..7d4f2ac708582bd6b60d00586d177af41867263a",
"url": "https://github.com/quicwg/base-drafts/pull/3620/files/cdf655307293ebf7be598849ccdad0f41ce32e11..7d4f2ac708582bd6b60d00586d177af41867263a",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb50c7820b41_22693fbaa36cd96c4213d2--


From nobody Fri May  8 00:39:40 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 A14073A086A for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 00:39:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KqW-62Qx-s16 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 00:39:36 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2E2B53A0863 for <quic-issues@ietf.org>; Fri,  8 May 2020 00:39:36 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 0F36C1C0EA1 for <quic-issues@ietf.org>; Fri,  8 May 2020 00:39:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588923574; bh=Qz/Yp13RaVkVQK36XX6CbbR0/Or6Csj6XNbZSqePCuU=; h=Date:From:To:Subject:From; b=LYQCILuZNoZ63mwCo89bTdmTqLXLb2j7/oTyWQ4/6LzZ9q3nYYlcjGNJeuACDo7cV bb3T0cn/r1R6Q3DRy5IXqQe1KEf/AgmAwmZX7Dxu6u8oPd492dH2eZJlT5DcfPxHfs Fs/3rAxxm0/+WCyMEGJ45DCe9nCruYbNXQ370BPY=
Date: Fri, 08 May 2020 00:39:34 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/25360f-07e012@github.com>
Subject: [quicwg/base-drafts] 07e012: Script updating gh-pages from 7d4f2ac7. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UfMKvuuumOh2qyna6dn9xdUsasQ>
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, 08 May 2020 07:39:38 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 07e012469f9e6f3232797f2cf323f8f953c0adb1
      https://github.com/quicwg/base-drafts/commit/07e012469f9e6f3232797f2cf323f8f953c0adb1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    R dead-hp-note/draft-ietf-quic-http.html
    R dead-hp-note/draft-ietf-quic-http.txt
    R dead-hp-note/draft-ietf-quic-invariants.html
    R dead-hp-note/draft-ietf-quic-invariants.txt
    R dead-hp-note/draft-ietf-quic-qpack.html
    R dead-hp-note/draft-ietf-quic-qpack.txt
    R dead-hp-note/draft-ietf-quic-recovery.html
    R dead-hp-note/draft-ietf-quic-recovery.txt
    R dead-hp-note/draft-ietf-quic-tls.html
    R dead-hp-note/draft-ietf-quic-tls.txt
    R dead-hp-note/draft-ietf-quic-transport.html
    R dead-hp-note/draft-ietf-quic-transport.txt
    R dead-hp-note/index.html
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 7d4f2ac7. [ci skip]



From nobody Fri May  8 01:04:37 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 23DF03A0886 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 01:04:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 ptDJ7r8XrYVT for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 01:04:33 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 27EA43A04BB for <quic-issues@ietf.org>; Fri,  8 May 2020 01:04:33 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 3B4B26605A6 for <quic-issues@ietf.org>; Fri,  8 May 2020 01:04:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588925072; bh=NMbMh+tCGaTSjpTlo1z4t2A776qagfKhXUpbN4L/HoU=; h=Date:From:To:Subject:From; b=tTeO5LFG+6aKH6BuFE2VIDfMNlWW/ShuzNS3+uolHJ6MtjfFsBye9onElhW8sti6H mfjmEohgtnRQzoxQglQkjx78NYFrayT2A7IkWX/pV30pMzAiHHhAluiF1Q7jr4ALzZ yqDVSowSLltygp6Or8YDxuxO99usxdfqMjmOOEHY=
Date: Fri, 08 May 2020 01:04:32 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgery-limit/7d4f2a-f75650@github.com>
Subject: [quicwg/base-drafts] f75650: Explain how we got the 2l value
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Aq8mX50T7vy3f17sq0S1Nj_BSNY>
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, 08 May 2020 08:04:36 -0000

  Branch: refs/heads/forgery-limit
  Home:   https://github.com/quicwg/base-drafts
  Commit: f756508d497d4111c40f0f2523b90d1cd5f91abc
      https://github.com/quicwg/base-drafts/commit/f756508d497d4111c40f0f2523b90d1cd5f91abc
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Explain how we got the 2l value



From nobody Fri May  8 01:05:00 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 B7E963A0886 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 01:04:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 RGql_oAegqVD for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 01:04:42 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1C8723A04BB for <quic-issues@ietf.org>; Fri,  8 May 2020 01:04:41 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 41CA18C1E88 for <quic-issues@ietf.org>; Fri,  8 May 2020 01:04:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588925081; bh=dyChb9JM03Rt8VTIiw7IiiLmJFhOFMKZsAXqUyv9FfA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZPkYrbo4uRMtPWQM4Mcq4KKENXAGMo1QbcF3/iEQ5iXu8ACDejLVo5oWEQ1QE82/S Yqaz1mIglWorKn2m//djEwP0LF6Fx/O1b/wnjzBHEylaIIwCceBKlk4xGuDe+zVtUO qdQzrg1YU4a8MbFETSoRxIO8JyG39q2bo6y8Rz3g=
Date: Fri, 08 May 2020 01:04:41 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/push/5040343763@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb512993293c_79dc3fef1b2cd96461735"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/a-glZVtOQdKLviVU7OVT8uxfQBY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 08:04:47 -0000

----==_mimepart_5eb512993293c_79dc3fef1b2cd96461735
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

f756508d497d4111c40f0f2523b90d1cd5f91abc  Explain how we got the 2l value


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620/files/7d4f2ac708582bd6b60d00586d177af41867263a..f756508d497d4111c40f0f2523b90d1cd5f91abc

----==_mimepart_5eb512993293c_79dc3fef1b2cd96461735
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/f756508d497d4111c40f0f2523b90d1cd5f91abc">f756508</a>  Explain how we got the 2l value</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3620/files/7d4f2ac708582bd6b60d00586d177af41867263a..f756508d497d4111c40f0f2523b90d1cd5f91abc">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5INAOQW4VFWQ7QVRDRQO4JTANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4S5SE6RY26YLYDQHTRQO4JTA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTCOJZG4YDIM2QOVZWQIZVGA2DAMZUGM3TMMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620/files/7d4f2ac708582bd6b60d00586d177af41867263a..f756508d497d4111c40f0f2523b90d1cd5f91abc",
"url": "https://github.com/quicwg/base-drafts/pull/3620/files/7d4f2ac708582bd6b60d00586d177af41867263a..f756508d497d4111c40f0f2523b90d1cd5f91abc",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb512993293c_79dc3fef1b2cd96461735--


From nobody Fri May  8 01:05:20 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 F42283A0886 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 01:05:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 B8AnJWaxVTor for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 01:05:17 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 10B7B3A04BB for <quic-issues@ietf.org>; Fri,  8 May 2020 01:05:17 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 614ED521F30 for <quic-issues@ietf.org>; Fri,  8 May 2020 01:05:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588925116; bh=fLEKz3jYr/wOjIki1pRBBC/8eSwMSILcKpgy7iU57EY=; h=Date:From:To:Subject:From; b=W1/oXVl1baBgRMR9Zq2jvqfHRzKpH3wttEP1JEou+bycT5j8gqr7HrejG2iaTQ41R 8MK1qS5kDfMPnMEOZiJr1Be53ag2CTYBy9Ejn6xpINdBxxoCWi5nSPS1Uk4lubTI8K yciypJasByyh1G10Gou4tZCeQGCl8w8Jl+jpRA1E=
Date: Fri, 08 May 2020 01:05:16 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/07e012-b71db1@github.com>
Subject: [quicwg/base-drafts] b71db1: Script updating gh-pages from f756508d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/divIseOd5ZMeUzHGjd-LdutLr8Y>
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, 08 May 2020 08:05:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b71db1af607f8c88075e4d7aebf99eee79b9cf4c
      https://github.com/quicwg/base-drafts/commit/b71db1af607f8c88075e4d7aebf99eee79b9cf4c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M index.html
    R retry-split/draft-ietf-quic-http.html
    R retry-split/draft-ietf-quic-http.txt
    R retry-split/draft-ietf-quic-invariants.html
    R retry-split/draft-ietf-quic-invariants.txt
    R retry-split/draft-ietf-quic-qpack.html
    R retry-split/draft-ietf-quic-qpack.txt
    R retry-split/draft-ietf-quic-recovery.html
    R retry-split/draft-ietf-quic-recovery.txt
    R retry-split/draft-ietf-quic-tls.html
    R retry-split/draft-ietf-quic-tls.txt
    R retry-split/draft-ietf-quic-transport.html
    R retry-split/draft-ietf-quic-transport.txt
    R retry-split/index.html

  Log Message:
  -----------
  Script updating gh-pages from f756508d. [ci skip]



From nobody Fri May  8 01:05:30 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 BAFE53A04BB for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 01:05:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 U1PcBwQav9sz for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 01:05:27 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9EDF73A0886 for <quic-issues@ietf.org>; Fri,  8 May 2020 01:05:27 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id CBCDBC60E1F for <quic-issues@ietf.org>; Fri,  8 May 2020 01:05:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588925126; bh=UxGsAZoHfr+G0Zr4UipIzNZC41swlNjML1VaxpqHB/w=; h=Date:From:To:Subject:From; b=qvgFrOvIQxOBsPZwQ6BWll9o5O6U71ex1IB2X3u+mmpE7P8nI7On+0ruz40/hJN+N fzYxagCKaAEWCVAltFpXDi/9DcAA52pI/9G3pA0XP/Y5a41xMeRgTsb0As+HV+4LhO rufu2mXtAVJn/F/cbknVbhtCk+IxCWySq7gkfk4w=
Date: Fri, 08 May 2020 01:05:26 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b71db1-a6b779@github.com>
Subject: [quicwg/base-drafts] a6b779: Script updating archive at 2020-05-08T08:05:07Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vjtmyuhwWi1VMAtWp1lsNmrJTf0>
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, 08 May 2020 08:05:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: a6b77910a78d0719069f2dcbd4ed36796b37b3bd
      https://github.com/quicwg/base-drafts/commit/a6b77910a78d0719069f2dcbd4ed36796b37b3bd
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-08T08:05:07Z. [ci skip]



From nobody Fri May  8 05:52:31 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 306473A040C for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 05:52:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.039
X-Spam-Level: 
X-Spam-Status: No, score=-1.039 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 oKG5cqWkxckS for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 05:52:27 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B844D3A041E for <quic-issues@ietf.org>; Fri,  8 May 2020 05:52:26 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id BC1EE6E0058 for <quic-issues@ietf.org>; Fri,  8 May 2020 05:52:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588942345; bh=1uKrYq/N8HeIdwVA7/A8QZckq3GwQGirDgR3YdeGYnI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CpCaDrVgVeS+oitwgMqxOsTIdMYwyt9XV/DaAm0LX02WftZb+eqdO4kfEdoy1s/nC KykRBCNlf1QzKlP4NyPseVDi41EEtTNcw9cotG1OWuRBb9PjXa4bPI4QUOGx+yGXd1 2s6OB8RP9v9yw/c7tgLkfZYp3c/TmXDDqw62MMaQ=
Date: Fri, 08 May 2020 05:52:25 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3NRCZOQ6LDGFZVV5F4YE3QTEVBNHHCJGDDN4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3634/review/408215538@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3634@github.com>
References: <quicwg/base-drafts/pull/3634@github.com>
Subject: Re: [quicwg/base-drafts] Describe error handling of GOAWAY ID increase (#3634)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb55609acebc_6a253fbc56ccd95c1639d4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BIoZEAhpZEseBMWS41U9OhF4tVI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 12:52:29 -0000

----==_mimepart_5eb55609acebc_6a253fbc56ccd95c1639d4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3634#pullrequestreview-408215538
----==_mimepart_5eb55609acebc_6a253fbc56ccd95c1639d4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3634#pullrequestreview-408215538">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5AELKVILRNA4LZRCTRQP6ATANCNFSM4M3HDKRQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6PG2CA3UELQKHTDE3RQP6ATA5CNFSM4M3HDKR2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBKN74Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3634#pullrequestreview-408215538",
"url": "https://github.com/quicwg/base-drafts/pull/3634#pullrequestreview-408215538",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb55609acebc_6a253fbc56ccd95c1639d4--


From nobody Fri May  8 08:23:35 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 0C2293A0410 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 08:23:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 MgywTSiCuPlT for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 08:23:31 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E95A33A017E for <quic-issues@ietf.org>; Fri,  8 May 2020 08:23:30 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id C0BA98C0546 for <quic-issues@ietf.org>; Fri,  8 May 2020 08:23:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588951409; bh=qRifXoFzjK8Sz8CRalo3G0p0Oe68WJrdf2c/Jp0jTio=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=U6tUighK9HnFcMYzosegChCH2P19qNvllwBokvMJv7mfVKU8Vxo+/8AVy4E+ZNZ7B r/opFjbw6vVXPV8F4y+0C/bgTE1iYE6DNaepuvvoQlbQI6xuProxyTS+Q37gjXOZot HGH6MDy2q7ylMPgtubylXw5lObZKaeqlF+TZrgsU=
Date: Fri, 08 May 2020 08:23:29 -0700
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2HYKAVYUAFXKSESIV4YFNHDEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/408305716@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb57971b234e_2a6d3fa9b72cd96835367f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chris-wood
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yCJ2xczHZm3UiNz9sybblI6MjJw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 15:23:33 -0000

----==_mimepart_5eb57971b234e_2a6d3fa9b72cd96835367f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@chris-wood approved this pull request.

Thanks, @martinthomson! I derived the same bounds. This looks good to me.

>  
 Key updates MUST be initiated before usage limits on packet protection keys are
-exceeded.  For the cipher suites mentioned in this document, the limits in
-Section 5.5 of {{!TLS13}} apply.  Other cipher suites MUST define usage limits
-in order to be used with QUIC.
+exceeded. For the cipher suites mentioned in this document, the limits in
+Section 5.5 of {{!TLS13}} apply. {{!TLS13}} does not specify a limit for
+AEAD_AES_128_CCM, but the analysis in {{ccm-bounds}} shows that a limit of 2^23
+packets can be used to obtain the same confidentiality protection as the limits
+specified in TLS.
+
+The usage limits defined in TLS 1.3 exist to provide protection against attacks

```suggestion
The usage limits defined in TLS 1.3 exist for protection against attacks
```

> +packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.

```suggestion
packet that cannot be authenticated, allowing multiple attempts forgery attempts.
```

> +Endpoints MUST count the number of packets that are received but cannot be
+authenticated.  If the number of packets that fail authentication exceeds a

```suggestion
Endpoints MUST count the number of received packets that fail authentication.
If the number of packets that fail authentication exceeds a
```

> +analysis of other AEAD functions in {{AEBounds}}, this analysis assumes a
+packet length of 2^10 blocks and a packet size limit of 2^14.
+
+For AEAD_AES_128_CCM, the total number of block cipher operations is the sum
+of: the length of the associated data in blocks, the length of the ciphertext
+in blocks, the length of the plaintext in blocks, plus 1. In this analysis,
+this is simplified to a value of twice the length of the packet in blocks (that
+is, `2l = 2^11`). This simplification is based on the packet containing all of
+the associated data and ciphertext. This results in a negligible 1 to 3 block
+overestimation of the number of operations.
+
+
+## Confidentiality Limits
+
+For confidentiality, Theorem 2 in {{?CCM-ANALYSIS}} establishes that an
+attacker gains an advantage over an ideal pseudorandom permutation (PRP) of no

```suggestion
attacker gains a distinguishing advantage over an ideal pseudorandom permutation (PRP) of no
```

> +For a target advantage of 2^-60, which matches that used by {{!TLS13}}, this
+results in the relation:
+
+~~~
+q <= 2^23
+~~~
+
+That is, endpoints cannot protect more than 2^23 packets with the same set of
+keys without causing an attacker to gain an larger advantage than the target of
+2^-60.
+
+
+## Integrity Limits
+
+For integrity, Theorem 1 in {{?CCM-ANALYSIS}} establishes that an attacker
+gains an advantage over an ideal PRP of no more than:

```suggestion
gains a distinguishing advantage over an ideal PRP of no more than:
```

> +analysis of other AEAD functions in {{AEBounds}}, this analysis assumes a
+packet length of 2^10 blocks and a packet size limit of 2^14.
+
+For AEAD_AES_128_CCM, the total number of block cipher operations is the sum
+of: the length of the associated data in blocks, the length of the ciphertext
+in blocks, the length of the plaintext in blocks, plus 1. In this analysis,
+this is simplified to a value of twice the length of the packet in blocks (that
+is, `2l = 2^11`). This simplification is based on the packet containing all of
+the associated data and ciphertext. This results in a negligible 1 to 3 block
+overestimation of the number of operations.
+
+
+## Confidentiality Limits
+
+For confidentiality, Theorem 2 in {{?CCM-ANALYSIS}} establishes that an
+attacker gains an advantage over an ideal pseudorandom permutation (PRP) of no

(to clarify that the harm is distinguishability from an ideal PRP, and not plaintext leakage or something.)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-408305716
----==_mimepart_5eb57971b234e_2a6d3fa9b72cd96835367f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@chris-wood</b> approved this pull request.</p>=0D
=0D
<p>Thanks, <a class=3D"user-mention" data-hovercard-type=3D"user" data-ho=
vercard-url=3D"/users/martinthomson/hovercard" data-octo-click=3D"hoverca=
rd-link-click" data-octo-dimensions=3D"link_type:self" href=3D"https://gi=
thub.com/martinthomson">@martinthomson</a>! I derived the same bounds. Th=
is looks good to me.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3620#discussi=
on_r422197038">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 Key updates MUST be initiated before usage limits on packet protection k=
eys are=0D
-exceeded.  For the cipher suites mentioned in this document, the limits =
in=0D
-Section 5.5 of {{!TLS13}} apply.  Other cipher suites MUST define usage =
limits=0D
-in order to be used with QUIC.=0D
+exceeded. For the cipher suites mentioned in this document, the limits i=
n=0D
+Section 5.5 of {{!TLS13}} apply. {{!TLS13}} does not specify a limit for=
=0D
+AEAD_AES_128_CCM, but the analysis in {{ccm-bounds}} shows that a limit =
of 2^23=0D
+packets can be used to obtain the same confidentiality protection as the=
 limits=0D
+specified in TLS.=0D
+=0D
+The usage limits defined in TLS 1.3 exist to provide protection against =
attacks=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-The usage limits defined in TLS 1.3 exist to =
provide protection against attacks=0D
+The usage limits defined in TLS 1.3 exist for protection against attacks=
=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3620#discussi=
on_r422197507">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +packet that cannot be authenticated, allo=
wing multiple attempts at defeating=0D
+integrity protection.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-packet that cannot be authenticated, allowing=
 multiple attempts at defeating=0D
-integrity protection.=0D
+packet that cannot be authenticated, allowing multiple attempts forgery =
attempts.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3620#discussi=
on_r422197996">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +Endpoints MUST count the number of packet=
s that are received but cannot be=0D
+authenticated.  If the number of packets that fail authentication exceed=
s a=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-Endpoints MUST count the number of packets th=
at are received but cannot be=0D
-authenticated.  If the number of packets that fail authentication exceed=
s a=0D
+Endpoints MUST count the number of received packets that fail authentica=
tion.=0D
+If the number of packets that fail authentication exceeds a=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3620#discussi=
on_r422204716">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +analysis of other AEAD functions in {{AEB=
ounds}}, this analysis assumes a=0D
+packet length of 2^10 blocks and a packet size limit of 2^14.=0D
+=0D
+For AEAD_AES_128_CCM, the total number of block cipher operations is the=
 sum=0D
+of: the length of the associated data in blocks, the length of the ciphe=
rtext=0D
+in blocks, the length of the plaintext in blocks, plus 1. In this analys=
is,=0D
+this is simplified to a value of twice the length of the packet in block=
s (that=0D
+is, `2l =3D 2^11`). This simplification is based on the packet containin=
g all of=0D
+the associated data and ciphertext. This results in a negligible 1 to 3 =
block=0D
+overestimation of the number of operations.=0D
+=0D
+=0D
+## Confidentiality Limits=0D
+=0D
+For confidentiality, Theorem 2 in {{?CCM-ANALYSIS}} establishes that an=0D=

+attacker gains an advantage over an ideal pseudorandom permutation (PRP)=
 of no=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-attacker gains an advantage over an ideal pse=
udorandom permutation (PRP) of no=0D
+attacker gains a distinguishing advantage over an ideal pseudorandom per=
mutation (PRP) of no=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3620#discussi=
on_r422205469">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +For a target advantage of 2^-60, which ma=
tches that used by {{!TLS13}}, this=0D
+results in the relation:=0D
+=0D
+~~~=0D
+q &lt;=3D 2^23=0D
+~~~=0D
+=0D
+That is, endpoints cannot protect more than 2^23 packets with the same s=
et of=0D
+keys without causing an attacker to gain an larger advantage than the ta=
rget of=0D
+2^-60.=0D
+=0D
+=0D
+## Integrity Limits=0D
+=0D
+For integrity, Theorem 1 in {{?CCM-ANALYSIS}} establishes that an attack=
er=0D
+gains an advantage over an ideal PRP of no more than:=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-gains an advantage over an ideal PRP of no mo=
re than:=0D
+gains a distinguishing advantage over an ideal PRP of no more than:=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3620#discussi=
on_r422205842">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +analysis of other AEAD functions in {{AEB=
ounds}}, this analysis assumes a=0D
+packet length of 2^10 blocks and a packet size limit of 2^14.=0D
+=0D
+For AEAD_AES_128_CCM, the total number of block cipher operations is the=
 sum=0D
+of: the length of the associated data in blocks, the length of the ciphe=
rtext=0D
+in blocks, the length of the plaintext in blocks, plus 1. In this analys=
is,=0D
+this is simplified to a value of twice the length of the packet in block=
s (that=0D
+is, `2l =3D 2^11`). This simplification is based on the packet containin=
g all of=0D
+the associated data and ciphertext. This results in a negligible 1 to 3 =
block=0D
+overestimation of the number of operations.=0D
+=0D
+=0D
+## Confidentiality Limits=0D
+=0D
+For confidentiality, Theorem 2 in {{?CCM-ANALYSIS}} establishes that an=0D=

+attacker gains an advantage over an ideal pseudorandom permutation (PRP)=
 of no=0D
</pre>=0D
<p>(to clarify that the harm is distinguishability from an ideal PRP, and=
 not plaintext leakage or something.)</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3620#pullrequestreview-408305716">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KZAXR2T4NHQHGSNJQ3RQQPXDANCNFSM4MW4IM3A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK4OKNO2AJRZOEVWGCDRQQPXDA5CNFSM4=
MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODBLEANA.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestrev=
iew-408305716",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview=
-408305716",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb57971b234e_2a6d3fa9b72cd96835367f--


From nobody Fri May  8 08:29:02 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 D44313A0C96 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 08:28:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 omfiCqOtLupl for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 08:28:52 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 681EA3A0C34 for <quic-issues@ietf.org>; Fri,  8 May 2020 08:28:44 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id DBFB1660854 for <quic-issues@ietf.org>; Fri,  8 May 2020 08:28:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588951722; bh=dlJV15fHTtXZW6Qqf9Gedb/977lFy0Qpz+u3GMOTouI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CCuZ43kc5DZhgO4lGrZVjPq9b2TnJGMsUuHBaxA/E4gF6A5rvmuiVe9kt8Tif5GSw hgrYI0dvkS+nGo7WRbcrfoeB9E4gwUJPYNcJrFDKT4TExygPrYaJlUvn5JU2jAW8u7 ehQwOix79TDad4aGTCqPla0mYI4eay5/lGaqV2IM=
Date: Fri, 08 May 2020 08:28:42 -0700
From: =?UTF-8?B?RmVsaXggR8O8bnRoZXI=?= <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK742KIDPKC53TMJERN4YFN2VEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/408320779@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb57aaacc3cf_3c03faf8b2cd95c7634a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: fxguenther
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dtHXSRwEmH72xVH_RxT_s8DDwmk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 15:29:00 -0000

----==_mimepart_5eb57aaacc3cf_3c03faf8b2cd95c7634a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@fxguenther commented on this pull request.



> +packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.

```suggestion
packet that cannot be authenticated, allowing multiple forgery attempts.
```

Duplicate.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#discussion_r422209058
----==_mimepart_5eb57aaacc3cf_3c03faf8b2cd95c7634a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@fxguenther</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3620#discussi=
on_r422209058">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +packet that cannot be authenticated, allo=
wing multiple attempts at defeating=0D
+integrity protection.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-packet that cannot be authenticated, allowing=
 multiple attempts at defeating=0D
-integrity protection.=0D
+packet that cannot be authenticated, allowing multiple forgery attempts.=
=0D
</pre>=0D
=0D
<p>Duplicate.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3620#discussion_r422209058">view it on GitHub</a>, or=
 <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK5KHOY=
GLFYXR37AUWDRQQQKVANCNFSM4MW4IM3A">unsubscribe</a>.<img src=3D"https://gi=
thub.com/notifications/beacon/AFTOJK5LQLNB6PW2XZHJELTRQQQKVA5CNFSM4MW4IM3=
KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBLH=
WCY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3620#discussion_r42=
2209058",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3620#discussion_r42220=
9058",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb57aaacc3cf_3c03faf8b2cd95c7634a--


From nobody Fri May  8 08:30:59 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 636943A0410 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 08:30:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 tvJgbraPLR2q for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 08:30:55 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0CDC53A040A for <quic-issues@ietf.org>; Fri,  8 May 2020 08:30:55 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 3FB626E1249 for <quic-issues@ietf.org>; Fri,  8 May 2020 08:30:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588951854; bh=bwNl5s0GaZjIC+M838EPBnvThNCaFsJKVnF2aD+CmIM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VDN7Pe3O9vPKX1uW87yBbbiTQeW+ZnTa4+TjehuBkbNfFRSkOG2K+TZwY2CAwmqOp UDXk4UAY6RrwYA3P/SkCE1j0YafpFbOobkfkLNsafZrtzTVtS8HfvkEJSv4+IsF8Oq VkJPEnguoWfOeRLddLvodh9wU4I6HHDSClaAi8n0=
Date: Fri, 08 May 2020 08:30:54 -0700
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3TB5AXMUJSQOPY5WV4YFOC5EVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/408322191@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb57b2e30f00_39103fa3294cd964818b6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chris-wood
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vWowCe1IDwHvHGF9m2Zy6pFV8g4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 15:30:57 -0000

----==_mimepart_5eb57b2e30f00_39103fa3294cd964818b6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@chris-wood commented on this pull request.



> +packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.

:-)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#discussion_r422210185
----==_mimepart_5eb57b2e30f00_39103fa3294cd964818b6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@chris-wood</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r422210185">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
</pre>
<p>:-)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r422210185">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3I6ICIEHE6JDO6OLDRQQQS5ANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZMIAYA4MBERL5V4UDRQQQS5A5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBLIBDY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620#discussion_r422210185",
"url": "https://github.com/quicwg/base-drafts/pull/3620#discussion_r422210185",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb57b2e30f00_39103fa3294cd964818b6--


From nobody Fri May  8 13:20:37 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 703D13A0CE4 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 13:20:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.101
X-Spam-Level: 
X-Spam-Status: No, score=-8.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 8AvNkcRxkgZM for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 13:20:32 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 28E763A0CE5 for <quic-issues@ietf.org>; Fri,  8 May 2020 13:20:31 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 9BBFCA0C31 for <quic-issues@ietf.org>; Fri,  8 May 2020 13:20:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588969230; bh=PD1mbXAu9VRM+A5kBFq3+MOwVruN9MTaICqHoN17nDc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Wh38VrqEsHq/PaKvbC2Th1xL+zN2IDoi15dFPW/ub2MrXewLxjOaMsacR1N255H1I ZF0vdnua4QlzmYgcbsdDeRiMIWhRRKHdVsk9UDOXnYI1oS3Y3AHYaC56Lc9iiyhavK mZbaSWo0F4/LfBOl/ojCx2wS+r6iBDYMprbiNjIQ=
Date: Fri, 08 May 2020 13:20:30 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYEWJAOAG6LTU6TWUV4YGQA5EVBNHHCIEMPUI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3595/review/408499704@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3595@github.com>
References: <quicwg/base-drafts/pull/3595@github.com>
Subject: Re: [quicwg/base-drafts] Prohibit TLS 1.3 middlebox compatibility mode (#3595)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5bf0e8c901_60643fd9a4ecd96c358df"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SHMJabXAwaugmfuH9CftRFCEW5s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 20:20:35 -0000

----==_mimepart_5eb5bf0e8c901_60643fd9a4ecd96c358df
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr approved this pull request.



> @@ -213,6 +209,11 @@ own key update mechanism {{key-update}}.
 ~~~
 {: #tls-full title="TLS Handshake with 0-RTT"}
 
+{{tls-full}} omits the EndOfEarlyData message, which is not used in QUIC; see
+{{remove-eoed}}. Likewise, neither ChangeCipherSpec nor KeyUpdate messages are
+used by QUIC. ChangeCipherSpec is redundant in TLS 1.3; see {{compat-mode}}.
+QUIC has its own key update mechanism; see {{key-update}}.

Worth noting that it's not possible to send CCS anywya?

> @@ -1631,6 +1632,21 @@ PROTOCOL_VIOLATION.
 As a result, EndOfEarlyData does not appear in the TLS handshake transcript.
 
 
+## Prohibit TLS Middlebox Compatibility Mode {#compat-mode}
+
+Appendix D.4 of {{!TLS13}} describes an alteration to the TLS 1.3 handshake as
+a workaround for bugs in some middleboxes. The TLS 1.3 middlebox compatibility
+mode involves setting the legacy_session_id field to a 32-byte value in the
+ClientHello and ServerHello, then sending a change_cipher_spec record. Both
+field and record carry no semantic content and are ignored.
+
+This mode has no use in QUIC as it only applies to middleboxes that interfere
+with TLS over TCP. A client MUST NOT request the use of the TLS 1.3
+compatibility mode. A server SHOULD treat the receipt of a TLS ClientHello that
+requests the use of the TLS 1.3 middlebox compatibility mode as a connection

```suggestion
with a non-empty legacy_session_id field as a connection
```

> @@ -1631,6 +1632,21 @@ PROTOCOL_VIOLATION.
 As a result, EndOfEarlyData does not appear in the TLS handshake transcript.
 
 
+## Prohibit TLS Middlebox Compatibility Mode {#compat-mode}
+
+Appendix D.4 of {{!TLS13}} describes an alteration to the TLS 1.3 handshake as
+a workaround for bugs in some middleboxes. The TLS 1.3 middlebox compatibility
+mode involves setting the legacy_session_id field to a 32-byte value in the
+ClientHello and ServerHello, then sending a change_cipher_spec record. Both
+field and record carry no semantic content and are ignored.
+
+This mode has no use in QUIC as it only applies to middleboxes that interfere
+with TLS over TCP. A client MUST NOT request the use of the TLS 1.3
+compatibility mode. A server SHOULD treat the receipt of a TLS ClientHello that
+requests the use of the TLS 1.3 middlebox compatibility mode as a connection

This way you don't need to dig into D.4 to see what the signal is.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3595#pullrequestreview-408499704
----==_mimepart_5eb5bf0e8c901_60643fd9a4ecd96c358df
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ekr</b> approved this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3595#discussi=
on_r422352605">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -213,6 +209,11 @@ own key update mechan=
ism {{key-update}}.=0D
 ~~~=0D
 {: #tls-full title=3D&quot;TLS Handshake with 0-RTT&quot;}=0D
 =0D
+{{tls-full}} omits the EndOfEarlyData message, which is not used in QUIC=
; see=0D
+{{remove-eoed}}. Likewise, neither ChangeCipherSpec nor KeyUpdate messag=
es are=0D
+used by QUIC. ChangeCipherSpec is redundant in TLS 1.3; see {{compat-mod=
e}}.=0D
+QUIC has its own key update mechanism; see {{key-update}}.=0D
</pre>=0D
<p>Worth noting that it's not possible to send CCS anywya?</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3595#discussi=
on_r422353489">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1631,6 +1632,21 @@ PROTOCOL_VIOLATION.=
=0D
 As a result, EndOfEarlyData does not appear in the TLS handshake transcr=
ipt.=0D
 =0D
 =0D
+## Prohibit TLS Middlebox Compatibility Mode {#compat-mode}=0D
+=0D
+Appendix D.4 of {{!TLS13}} describes an alteration to the TLS 1.3 handsh=
ake as=0D
+a workaround for bugs in some middleboxes. The TLS 1.3 middlebox compati=
bility=0D
+mode involves setting the legacy_session_id field to a 32-byte value in =
the=0D
+ClientHello and ServerHello, then sending a change_cipher_spec record. B=
oth=0D
+field and record carry no semantic content and are ignored.=0D
+=0D
+This mode has no use in QUIC as it only applies to middleboxes that inte=
rfere=0D
+with TLS over TCP. A client MUST NOT request the use of the TLS 1.3=0D
+compatibility mode. A server SHOULD treat the receipt of a TLS ClientHel=
lo that=0D
+requests the use of the TLS 1.3 middlebox compatibility mode as a connec=
tion=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-requests the use of the TLS 1.3 middlebox com=
patibility mode as a connection=0D
+with a non-empty legacy_session_id field as a connection=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3595#discussi=
on_r422353581">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1631,6 +1632,21 @@ PROTOCOL_VIOLATION.=
=0D
 As a result, EndOfEarlyData does not appear in the TLS handshake transcr=
ipt.=0D
 =0D
 =0D
+## Prohibit TLS Middlebox Compatibility Mode {#compat-mode}=0D
+=0D
+Appendix D.4 of {{!TLS13}} describes an alteration to the TLS 1.3 handsh=
ake as=0D
+a workaround for bugs in some middleboxes. The TLS 1.3 middlebox compati=
bility=0D
+mode involves setting the legacy_session_id field to a 32-byte value in =
the=0D
+ClientHello and ServerHello, then sending a change_cipher_spec record. B=
oth=0D
+field and record carry no semantic content and are ignored.=0D
+=0D
+This mode has no use in QUIC as it only applies to middleboxes that inte=
rfere=0D
+with TLS over TCP. A client MUST NOT request the use of the TLS 1.3=0D
+compatibility mode. A server SHOULD treat the receipt of a TLS ClientHel=
lo that=0D
+requests the use of the TLS 1.3 middlebox compatibility mode as a connec=
tion=0D
</pre>=0D
<p>This way you don't need to dig into D.4 to see what the signal is.</p>=
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3595#pullrequestreview-408499704">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K3N4YXSNXVTE5V4C4DRQRSQ5ANCNFSM4MOSTQXQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK6AGHXQXO3KEAOOHRDRQRSQ5A5CNFSM4=
MOSTQX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODBMTL6A.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3595#pullrequestrev=
iew-408499704",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3595#pullrequestreview=
-408499704",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb5bf0e8c901_60643fd9a4ecd96c358df--


From nobody Fri May  8 13:27:13 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 43D2B3A0ECA for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 13:23:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=unavailable 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 o4SFnTxByBBl for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 13:23:00 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 68A1A3A0F4C for <quic-issues@ietf.org>; Fri,  8 May 2020 13:22:22 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 18834521D92 for <quic-issues@ietf.org>; Fri,  8 May 2020 13:22:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588969339; bh=h2isi7ZlwZjsutYjl8cOmCSEL6+/42MyB+DIuaFTZ5I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Okrh3/FAFCKMJWnsmUUZI4NXnk1rUu17h2p3BuasHoJ58cx7bqQLwDfoMjd5U7Hg9 2ZE4JseXcm0AeEo7PMsmqUhlrJG9UpBkiRpAWYOV/DVyPNp3/Sel2ZaQGk+vkc/3Gs p0MvEgRq5VSNyEwFhMkVtE4VQ2+3XFYwWETdhlEw=
Date: Fri, 08 May 2020 13:22:19 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYV26RYADGSCZRGMJN4YGQHVEVBNHHCGQM7OQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3563/review/408501768@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3563@github.com>
References: <quicwg/base-drafts/pull/3563@github.com>
Subject: Re: [quicwg/base-drafts] Migration with zero-length CID is inadvisable (#3563)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5bf7b6cd4_615d3fd9a4ecd96c48922"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1Ap3kwZj-fGb8sPYWwvisOt0DqA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 20:24:10 -0000

----==_mimepart_5eb5bf7b6cd4_615d3fd9a4ecd96c48922
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr approved this pull request.



> @@ -2246,6 +2246,16 @@ that packet numbers cannot be used to correlate activity.  This does not prevent
 other properties of packets, such as timing and size, from being used to
 correlate activity.
 
+An endpoint SHOULD NOT initiate migration with a peer that uses a zero-length

```suggestion
An endpoint SHOULD NOT initiate migration with a peer that has requested a zero-length
```

> @@ -2246,6 +2246,16 @@ that packet numbers cannot be used to correlate activity.  This does not prevent
 other properties of packets, such as timing and size, from being used to
 correlate activity.
 
+An endpoint SHOULD NOT initiate migration with a peer that uses a zero-length

"uses" is confusing here. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3563#pullrequestreview-408501768
----==_mimepart_5eb5bf7b6cd4_615d3fd9a4ecd96c48922
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ekr</b> approved this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3563#discussi=
on_r422354244">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2246,6 +2246,16 @@ that packet numbers=
 cannot be used to correlate activity.  This does not prevent=0D
 other properties of packets, such as timing and size, from being used to=
=0D
 correlate activity.=0D
 =0D
+An endpoint SHOULD NOT initiate migration with a peer that uses a zero-l=
ength=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-An endpoint SHOULD NOT initiate migration wit=
h a peer that uses a zero-length=0D
+An endpoint SHOULD NOT initiate migration with a peer that has requested=
 a zero-length=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3563#discussi=
on_r422354292">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2246,6 +2246,16 @@ that packet numbers=
 cannot be used to correlate activity.  This does not prevent=0D
 other properties of packets, such as timing and size, from being used to=
=0D
 correlate activity.=0D
 =0D
+An endpoint SHOULD NOT initiate migration with a peer that uses a zero-l=
ength=0D
</pre>=0D
<p>"uses" is confusing here.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3563#pullrequestreview-408501768">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K25THLMZ5BOOLXUEW3RQRSXXANCNFSM4LYEVEVQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK2AJGBKWRJIS2AAEV3RQRSXXA5CNFSM4=
LYEVEV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODBMT4CA.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3563#pullrequestrev=
iew-408501768",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3563#pullrequestreview=
-408501768",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb5bf7b6cd4_615d3fd9a4ecd96c48922--


From nobody Fri May  8 13:34:54 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 72D843A0CE5 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 13:34:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.098
X-Spam-Level: 
X-Spam-Status: No, score=-3.098 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 r0uG-wruKhSV for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 13:34:46 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7473C3A1014 for <quic-issues@ietf.org>; Fri,  8 May 2020 13:34:27 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 9CF016A1D94 for <quic-issues@ietf.org>; Fri,  8 May 2020 13:34:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588970066; bh=PDrsGeKWCQkdHZ2VWg6JvWkc6pqYhuQ04TkUSgyIGeI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=O6U966iD9UGSQ1C5yvZX1VwkToCSyrRpQ3PA9omnXjohyud+bmrDMC8yNy66neS7S S27VgC6Ohj+E9fQC5xjKdT1dl2iL4z9MA7jNGFMCzGdc59SerS+rIR+S4f6DV0g87K dqsoTiU8nxP9SoukvTQEjY+lwcYcJ+VfeSqVe2CQ=
Date: Fri, 08 May 2020 13:34:26 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK52WHBXD526S5UJTL54YGRVFEVBNHHCGFYIAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/review/408507339@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5c2528d328_295d3fc4ecacd96031439e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/d2OPSdXMZVz83qCCPNrTM-5zmB4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 20:34:50 -0000

----==_mimepart_5eb5c2528d328_295d3fc4ecacd96031439e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr requested changes on this pull request.



> @@ -1069,6 +1069,15 @@ to cease using the connection IDs when requested can result in connection
 failures, as the issuing endpoint might be unable to continue using the
 connection IDs with the active connection.
 
+An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST
+NOT forget a connection ID without retiring it, though MAY choose to treat
+having too many connection IDs in need of retirement as a connection error of
+type CONNECTION_ID_LIMIT_ERROR.
+
+Endpoints SHOULD NOT issue updates of the Retire Prior To field before receiving
+RETIRE_CONNECTION_ID frames for the previous update of Retire Prior To.

```suggestion
RETIRE_CONNECTION_ID frames that retire all connection IDs indicated by the previous Retire Prior To value.
```

> +An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST

```suggestion
An endpoint SHOULD limit the number of connection IDs for which it has issued an outstanding RETIRE_CONNECTION_ID to at least twice the active_connection_id limit.
```

> +An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST

I tried to rewrite the text to make it clearer, but in doing so, I realize that the original text is unclear.

Ignoring the details it says: "It should limit value X to no less than Y."

But I can achieve this by not limiting it at all, which is not the advice we seem to want to give. Is what you are trying to say:

1. There should be a fixed limit.
1. It should be no lower than Y.

What's the rationale for > 2xactive_connection_id.



> @@ -1069,6 +1069,15 @@ to cease using the connection IDs when requested can result in connection
 failures, as the issuing endpoint might be unable to continue using the
 connection IDs with the active connection.
 
+An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST
+NOT forget a connection ID without retiring it, though MAY choose to treat
+having too many connection IDs in need of retirement as a connection error of

"too many" seems non-specific here. I think we need more detail.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547#pullrequestreview-408507339
----==_mimepart_5eb5c2528d328_295d3fc4ecacd96031439e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ekr</b> requested changes on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3547#discussi=
on_r422358287">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1069,6 +1069,15 @@ to cease using the =
connection IDs when requested can result in connection=0D
 failures, as the issuing endpoint might be unable to continue using the=0D=

 connection IDs with the active connection.=0D
 =0D
+An endpoint SHOULD limit the state it commits to retiring connection IDs=
 using=0D
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tr=
acks for=0D
+retirement to at least twice the active_connection_id_limit. An endpoint=
 MUST=0D
+NOT forget a connection ID without retiring it, though MAY choose to tre=
at=0D
+having too many connection IDs in need of retirement as a connection err=
or of=0D
+type CONNECTION_ID_LIMIT_ERROR.=0D
+=0D
+Endpoints SHOULD NOT issue updates of the Retire Prior To field before r=
eceiving=0D
+RETIRE_CONNECTION_ID frames for the previous update of Retire Prior To.=0D=

</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-RETIRE_CONNECTION_ID frames for the previous =
update of Retire Prior To.=0D
+RETIRE_CONNECTION_ID frames that retire all connection IDs indicated by =
the previous Retire Prior To value.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3547#discussi=
on_r422358826">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +An endpoint SHOULD limit the state it com=
mits to retiring connection IDs using=0D
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tr=
acks for=0D
+retirement to at least twice the active_connection_id_limit. An endpoint=
 MUST=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-An endpoint SHOULD limit the state it commits=
 to retiring connection IDs using=0D
-RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tr=
acks for=0D
-retirement to at least twice the active_connection_id_limit. An endpoint=
 MUST=0D
+An endpoint SHOULD limit the number of connection IDs for which it has i=
ssued an outstanding RETIRE_CONNECTION_ID to at least twice the active_co=
nnection_id limit.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3547#discussi=
on_r422359624">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +An endpoint SHOULD limit the state it com=
mits to retiring connection IDs using=0D
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tr=
acks for=0D
+retirement to at least twice the active_connection_id_limit. An endpoint=
 MUST=0D
</pre>=0D
<p>I tried to rewrite the text to make it clearer, but in doing so, I rea=
lize that the original text is unclear.</p>=0D
<p>Ignoring the details it says: "It should limit value X to no less than=
 Y."</p>=0D
<p>But I can achieve this by not limiting it at all, which is not the adv=
ice we seem to want to give. Is what you are trying to say:</p>=0D
<ol>=0D
<li>There should be a fixed limit.</li>=0D
<li>It should be no lower than Y.</li>=0D
</ol>=0D
<p>What's the rationale for &gt; 2xactive_connection_id.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3547#discussi=
on_r422359850">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1069,6 +1069,15 @@ to cease using the =
connection IDs when requested can result in connection=0D
 failures, as the issuing endpoint might be unable to continue using the=0D=

 connection IDs with the active connection.=0D
 =0D
+An endpoint SHOULD limit the state it commits to retiring connection IDs=
 using=0D
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tr=
acks for=0D
+retirement to at least twice the active_connection_id_limit. An endpoint=
 MUST=0D
+NOT forget a connection ID without retiring it, though MAY choose to tre=
at=0D
+having too many connection IDs in need of retirement as a connection err=
or of=0D
</pre>=0D
<p>"too many" seems non-specific here. I think we need more detail.</p>=0D=

=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3547#pullrequestreview-408507339">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KZ7LYGQPWFI62IUBL3RQRUFFANCNFSM4LUQW5DQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK644ECMFXREUJRTEODRQRUFFA5CNFSM4=
LUQW5D2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODBMVHSY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3547#pullrequestrev=
iew-408507339",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3547#pullrequestreview=
-408507339",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb5c2528d328_295d3fc4ecacd96031439e--


From nobody Fri May  8 13:43:00 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 4FB2E3A0EBC for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 13:42:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.694
X-Spam-Level: 
X-Spam-Status: No, score=-1.694 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 TJbg02eEOf9U for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 13:42:57 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D38453A0EB5 for <quic-issues@ietf.org>; Fri,  8 May 2020 13:42:56 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 302A16E1F5A for <quic-issues@ietf.org>; Fri,  8 May 2020 13:42:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588970576; bh=SOka4F26CQ4gkkuLYLdBsPcsc7YAsLph5gV6Z5gLfMs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZjQ7GurVLv8K2XmDIo4M8D9EtfBuNVatK6DomXnlt5FYX6f4qMHcp66ambPKFKUar 2vyqwENzatY12ndVY66514tPCuI9o9NW2mYntjsgqdg/7vQAKNSdN41+ZBlU8hqkEU zg3OnHZaOtC3xIuEtyP/jLiIJXqJgU6jiwEMO+4o=
Date: Fri, 08 May 2020 13:42:56 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7Z4PMIRCNRAC5OMM54YGSVBEVBNHHCCZ7YJA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3426/review/408513951@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3426@github.com>
References: <quicwg/base-drafts/pull/3426@github.com>
Subject: Re: [quicwg/base-drafts] Clarify zero-length CIDs and active_connection_id_limit TP (#3426)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5c450217da_55d43fd8c56cd9681145b7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/O_XSdmudYvvznpD5Z1dEeRZrsDo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 20:42:59 -0000

----==_mimepart_5eb5c450217da_55d43fd8c56cd9681145b7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr requested changes on this pull request.



> @@ -4697,11 +4697,14 @@ active_connection_id_limit (0x000e):
   to store. This value includes the connection ID received during the handshake,
   that received in the preferred_address transport parameter, and those received
   in NEW_CONNECTION_ID frames.
-  Unless a zero-length connection ID is being used, the value of the
-  active_connection_id_limit parameter MUST be no less than 2. If this
-  transport parameter is absent, a default of 2 is assumed.
-  When a zero-length connection ID is being used, the active_connection_id_limit
-  parameter MUST NOT be sent.
+  The value of the active_connection_id_limit parameter MUST be at least 2.
+  An endpoint that receives a value less than 2 MUST close the connection
+  with an error of type TRANSPORT_PARAMETER_ERROR.
+  If this transport parameter is absent, a default of 2 is assumed.  If an
+  endpoint uses a zero-length connection ID, the active_connection_id_limit

"uses" here seems confusing

If an endpoint issues a zero-length connection-id, the active_connection_id_limit value it says is ignored, as...



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3426#pullrequestreview-408513951
----==_mimepart_5eb5c450217da_55d43fd8c56cd9681145b7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ekr</b> requested changes on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3426#discussion_r422363732">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4697,11 +4697,14 @@ active_connection_id_limit (0x000e):
   to store. This value includes the connection ID received during the handshake,
   that received in the preferred_address transport parameter, and those received
   in NEW_CONNECTION_ID frames.
-  Unless a zero-length connection ID is being used, the value of the
-  active_connection_id_limit parameter MUST be no less than 2. If this
-  transport parameter is absent, a default of 2 is assumed.
-  When a zero-length connection ID is being used, the active_connection_id_limit
-  parameter MUST NOT be sent.
+  The value of the active_connection_id_limit parameter MUST be at least 2.
+  An endpoint that receives a value less than 2 MUST close the connection
+  with an error of type TRANSPORT_PARAMETER_ERROR.
+  If this transport parameter is absent, a default of 2 is assumed.  If an
+  endpoint uses a zero-length connection ID, the active_connection_id_limit
</pre>
<p>"uses" here seems confusing</p>
<p>If an endpoint issues a zero-length connection-id, the active_connection_id_limit value it says is ignored, as...</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3426#pullrequestreview-408513951">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3M65RODJSAQMCFLF3RQRVFBANCNFSM4KQNOYIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3IHBO4526FFDK3AXDRQRVFBA5CNFSM4KQNOYIKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBMW3HY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3426#pullrequestreview-408513951",
"url": "https://github.com/quicwg/base-drafts/pull/3426#pullrequestreview-408513951",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb5c450217da_55d43fd8c56cd9681145b7--


From nobody Fri May  8 13:47:23 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 4BE083A0F29 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 13:47:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.098
X-Spam-Level: 
X-Spam-Status: No, score=-3.098 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 CpglqhwVdqAk for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 13:46:56 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9C0DD3A0EE5 for <quic-issues@ietf.org>; Fri,  8 May 2020 13:46:55 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id BFBDEE1108 for <quic-issues@ietf.org>; Fri,  8 May 2020 13:46:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588970814; bh=ORqbb5SgFcE3qdEMQiZwMm9YD6THZA1EfNRA2Jj1WG4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WZtcZG8opy0eh66n6L/IF8nPhLSjBRfhA5DdQpVhiDQQTFJWTqy81wCV65PZ/16z6 SvpIj8nDM2Jfz/4NYBV+97f1proHdcvTP77jcz7oOUxcnO7/RyAm7CPnfcnmF2a/jo 3SiWAbc1qAbTmd03YAc1xVn/CDmgHM2Uq587SN1Q=
Date: Fri, 08 May 2020 13:46:54 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4XYKPLD4ERIGR5JUF4YGTD5EVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/408514847@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5c53eb0191_2ee73f9fd74cd96451851"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/X_7FuYwPnyXKPD4bcBKMtz_ZaXU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 20:47:09 -0000

----==_mimepart_5eb5c53eb0191_2ee73f9fd74cd96451851
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr requested changes on this pull request.



> @@ -1084,10 +1084,10 @@ Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
 be used again and requests that the peer replace it with a new connection ID
 using a NEW_CONNECTION_ID frame.
 
-As discussed in {{migration-linkability}}, endpoints limit the use of a
-connection ID to a single network path where possible. Endpoints SHOULD retire
-connection IDs when no longer actively using the network path on which the
-connection ID was used.
+As discussed in {{migration-linkability}}, endpoints MUST limit the use of a
+connection ID to packets sent from a single local address.  Endpoints SHOULD
+retire connection IDs when they are no longer actively using the network path on
+which the connection ID was used.

This text is now contradictory, because I can send from A -> B and A->C but the subsequent text now refers to "the network path"

> @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.

This text is really confusing. We have a direct prohibition followed by an unexplained exception. Can we provide some reasoning here?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-408514847
----==_mimepart_5eb5c53eb0191_2ee73f9fd74cd96451851
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ekr</b> requested changes on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r422364458">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1084,10 +1084,10 @@ Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
 be used again and requests that the peer replace it with a new connection ID
 using a NEW_CONNECTION_ID frame.
 
-As discussed in {{migration-linkability}}, endpoints limit the use of a
-connection ID to a single network path where possible. Endpoints SHOULD retire
-connection IDs when no longer actively using the network path on which the
-connection ID was used.
+As discussed in {{migration-linkability}}, endpoints MUST limit the use of a
+connection ID to packets sent from a single local address.  Endpoints SHOULD
+retire connection IDs when they are no longer actively using the network path on
+which the connection ID was used.
</pre>
<p>This text is now contradictory, because I can send from A -&gt; B and A-&gt;C but the subsequent text now refers to "the network path"</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r422365523">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.
</pre>
<p>This text is really confusing. We have a direct prohibition followed by an unexplained exception. Can we provide some reasoning here?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-408514847">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZAHGP3MERKDXZNADRQRVT5ANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2I2BJX66R5OU2OANTRQRVT5A5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBMXCHY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-408514847",
"url": "https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-408514847",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb5c53eb0191_2ee73f9fd74cd96451851--


From nobody Fri May  8 13:53:56 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 D3CBC3A0EE2 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 13:53:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Et7NOAjyljUA for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 13:53:52 -0700 (PDT)
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 3E2B13A0EDE for <quic-issues@ietf.org>; Fri,  8 May 2020 13:53:52 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 7390728009C for <quic-issues@ietf.org>; Fri,  8 May 2020 13:53:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588971231; bh=wiTzr07wJNVCnXg1aPaq0/AbX1axxvz02R1dJlMlk4M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cqAx30037D4UWxFCDJoZrd84+PPZdk7ZapNjpak9Ff+8Gtdyh37ktLr00gXrAqf6s KTYREDqwYNaRAOOJbR+aaoRVWrn7Q9p+KCAgC3Bb9LppOX2GjZ9grj4YVQrBLrfzB6 R1HX5tJiQGQV01vsIFNKMBYeAioWG4HHBPmdlbpk=
Date: Fri, 08 May 2020 13:53:51 -0700
From: Nick Harper <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5TIOGJ4NOKM6P64IV4YGT57EVBNHHCCZ7YJA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3426/review/408520140@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3426@github.com>
References: <quicwg/base-drafts/pull/3426@github.com>
Subject: Re: [quicwg/base-drafts] Clarify zero-length CIDs and active_connection_id_limit TP (#3426)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5c6df64655_383e3f90534cd95c123971"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: nharper
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fb8UrS1vBgmqzLEluQc292O9fmg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 20:53:54 -0000

----==_mimepart_5eb5c6df64655_383e3f90534cd95c123971
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@nharper commented on this pull request.



> @@ -4697,11 +4697,14 @@ active_connection_id_limit (0x000e):
   to store. This value includes the connection ID received during the handshake,
   that received in the preferred_address transport parameter, and those received
   in NEW_CONNECTION_ID frames.
-  Unless a zero-length connection ID is being used, the value of the
-  active_connection_id_limit parameter MUST be no less than 2. If this
-  transport parameter is absent, a default of 2 is assumed.
-  When a zero-length connection ID is being used, the active_connection_id_limit
-  parameter MUST NOT be sent.
+  The value of the active_connection_id_limit parameter MUST be at least 2.
+  An endpoint that receives a value less than 2 MUST close the connection
+  with an error of type TRANSPORT_PARAMETER_ERROR.
+  If this transport parameter is absent, a default of 2 is assumed.  If an
+  endpoint uses a zero-length connection ID, the active_connection_id_limit

Here's the situation I'm trying to explain:

Suppose the client (C) uses 0-length CIDs. Since C uses 0-length CIDs, it will never send a NEW_CONNECTION_ID frame. The server (S) can still send an active_connection_id_limit transport param, but C will ignore it because it is irrelevant.

> If an endpoint issues a zero-length connection-id, the active_connection_id_limit value it says is ignored, as...

My interpretation of this is that it says if a client (for example) C uses the 0-length CID, the active_connection_id_limit sent by C should be ignored. I believe this is incorrect, as C's active_connection_id_limit is regarding how many NEW_CONNECTION_IDs S can send to C.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3426#discussion_r422368749
----==_mimepart_5eb5c6df64655_383e3f90534cd95c123971
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@nharper</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3426#discussion_r422368749">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4697,11 +4697,14 @@ active_connection_id_limit (0x000e):
   to store. This value includes the connection ID received during the handshake,
   that received in the preferred_address transport parameter, and those received
   in NEW_CONNECTION_ID frames.
-  Unless a zero-length connection ID is being used, the value of the
-  active_connection_id_limit parameter MUST be no less than 2. If this
-  transport parameter is absent, a default of 2 is assumed.
-  When a zero-length connection ID is being used, the active_connection_id_limit
-  parameter MUST NOT be sent.
+  The value of the active_connection_id_limit parameter MUST be at least 2.
+  An endpoint that receives a value less than 2 MUST close the connection
+  with an error of type TRANSPORT_PARAMETER_ERROR.
+  If this transport parameter is absent, a default of 2 is assumed.  If an
+  endpoint uses a zero-length connection ID, the active_connection_id_limit
</pre>
<p>Here's the situation I'm trying to explain:</p>
<p>Suppose the client (C) uses 0-length CIDs. Since C uses 0-length CIDs, it will never send a NEW_CONNECTION_ID frame. The server (S) can still send an active_connection_id_limit transport param, but C will ignore it because it is irrelevant.</p>
<blockquote>
<p>If an endpoint issues a zero-length connection-id, the active_connection_id_limit value it says is ignored, as...</p>
</blockquote>
<p>My interpretation of this is that it says if a client (for example) C uses the 0-length CID, the active_connection_id_limit sent by C should be ignored. I believe this is incorrect, as C's active_connection_id_limit is regarding how many NEW_CONNECTION_IDs S can send to C.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3426#discussion_r422368749">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4G27YPJWBQ62LZANLRQRWN7ANCNFSM4KQNOYIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYRFZL4FHJQRSHRNV3RQRWN7A5CNFSM4KQNOYIKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBMYLTA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3426#discussion_r422368749",
"url": "https://github.com/quicwg/base-drafts/pull/3426#discussion_r422368749",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb5c6df64655_383e3f90534cd95c123971--


From nobody Fri May  8 14:22:02 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 E8AC13A0F34 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 14:21:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.697
X-Spam-Level: 
X-Spam-Status: No, score=-6.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 rzPx82qDOoEd for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 14:21:54 -0700 (PDT)
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 C95113A0F31 for <quic-issues@ietf.org>; Fri,  8 May 2020 14:21:53 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 9CBE8282DAE for <quic-issues@ietf.org>; Fri,  8 May 2020 14:21:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588972912; bh=rcg+Mz8LLbskZkpFaJ83FZAX12uPgGqL1cc2PhH+91k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WhyFYXAMoR6G0XS3PmEGyXUg53adk1SOdFO9yGQansogTcLJJsHs+m4Sls2thNtlk FhSzIjTv5BZCY8E6QO4iwycl7LD3i0xTieJtRZNA9KQhshPZ4/afCbqfeACvKh8mSj 1qV1eQ6OGqzLg3mQqTPQRmH17lph//8FfnsDxHm4=
Date: Fri, 08 May 2020 14:21:52 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYHHUQD32IDQ32GBBV4YGXHBEVBNHHCCZ7YJA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3426/review/408535235@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3426@github.com>
References: <quicwg/base-drafts/pull/3426@github.com>
Subject: Re: [quicwg/base-drafts] Clarify zero-length CIDs and active_connection_id_limit TP (#3426)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5cd708d306_29013f96c4ecd96c1929f5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7-OjIdiW8_fjQZpveVnYYQR9Uk0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 21:21:59 -0000

----==_mimepart_5eb5cd708d306_29013f96c4ecd96c1929f5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr commented on this pull request.



> @@ -4697,11 +4697,14 @@ active_connection_id_limit (0x000e):
   to store. This value includes the connection ID received during the handshake,
   that received in the preferred_address transport parameter, and those received
   in NEW_CONNECTION_ID frames.
-  Unless a zero-length connection ID is being used, the value of the
-  active_connection_id_limit parameter MUST be no less than 2. If this
-  transport parameter is absent, a default of 2 is assumed.
-  When a zero-length connection ID is being used, the active_connection_id_limit
-  parameter MUST NOT be sent.
+  The value of the active_connection_id_limit parameter MUST be at least 2.
+  An endpoint that receives a value less than 2 MUST close the connection
+  with an error of type TRANSPORT_PARAMETER_ERROR.
+  If this transport parameter is absent, a default of 2 is assumed.  If an
+  endpoint uses a zero-length connection ID, the active_connection_id_limit

My problem here is the text "uses", which is non-specific. A issues a CID and B sends packets with it. So they both use it.

You're right that my text above is backwards, which seems like an argument in favor of "this is confusing text".  How about:

"If an endpoint issues a zero-length connection ID, it will never send NEW_CONNECTION_ID and therefore ignores any active_connection_id limits values it receives"



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3426#discussion_r422381485
----==_mimepart_5eb5cd708d306_29013f96c4ecd96c1929f5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ekr</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3426#discussion_r422381485">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4697,11 +4697,14 @@ active_connection_id_limit (0x000e):
   to store. This value includes the connection ID received during the handshake,
   that received in the preferred_address transport parameter, and those received
   in NEW_CONNECTION_ID frames.
-  Unless a zero-length connection ID is being used, the value of the
-  active_connection_id_limit parameter MUST be no less than 2. If this
-  transport parameter is absent, a default of 2 is assumed.
-  When a zero-length connection ID is being used, the active_connection_id_limit
-  parameter MUST NOT be sent.
+  The value of the active_connection_id_limit parameter MUST be at least 2.
+  An endpoint that receives a value less than 2 MUST close the connection
+  with an error of type TRANSPORT_PARAMETER_ERROR.
+  If this transport parameter is absent, a default of 2 is assumed.  If an
+  endpoint uses a zero-length connection ID, the active_connection_id_limit
</pre>
<p>My problem here is the text "uses", which is non-specific. A issues a CID and B sends packets with it. So they both use it.</p>
<p>You're right that my text above is backwards, which seems like an argument in favor of "this is confusing text".  How about:</p>
<p>"If an endpoint issues a zero-length connection ID, it will never send NEW_CONNECTION_ID and therefore ignores any active_connection_id limits values it receives"</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3426#discussion_r422381485">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3VP7IJKG466WPQCYDRQRZXBANCNFSM4KQNOYIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6KN63AI4VZFMKK6W3RQRZXBA5CNFSM4KQNOYIKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBM4BQY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3426#discussion_r422381485",
"url": "https://github.com/quicwg/base-drafts/pull/3426#discussion_r422381485",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb5cd708d306_29013f96c4ecd96c1929f5--


From nobody Fri May  8 14:30:38 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 EF3623A0F3E for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 14:30:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 6-C6CE1MfL-P for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 14:30:35 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B94993A0F41 for <quic-issues@ietf.org>; Fri,  8 May 2020 14:30:24 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id C5E9152084B for <quic-issues@ietf.org>; Fri,  8 May 2020 14:30:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588973423; bh=QNHrrDATy01yyxHFDFn+DzOav1E8EtqvXWd4PPwHcog=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rBDVo025ftl1Y6fvRQ2TcSYqdnNA2W0TvC259B9HKRnOSQZ6AcJ14fsTOUDIXP+3Z mx6BewBEfUc/f+HpXNV7yYSEoXql+IazYHCmk4PVDANue9g+dcUxEovrXATdKg3RRD LSwg1LVqL9Cb61JQFf1Lvya/Gmdk/az8Of2TsJ0Y=
Date: Fri, 08 May 2020 14:30:23 -0700
From: Nick Harper <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3426/push/5043946432@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3426@github.com>
References: <quicwg/base-drafts/pull/3426@github.com>
Subject: Re: [quicwg/base-drafts] Clarify zero-length CIDs and active_connection_id_limit TP (#3426)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5cf6fb709e_5a6e3fa8d20cd964219860"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: nharper
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jflkyxkw6KABvSuOpQrINuXAp4M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 21:30:37 -0000

----==_mimepart_5eb5cf6fb709e_5a6e3fa8d20cd964219860
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@nharper pushed 1 commit.

149475babfed6f9f739460dee7ff953bd43c0ad9  Clarify issues instead of uses 0-length CID


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3426/files/0b3ff6b60864e9b29657e784c4a85bec36a05694..149475babfed6f9f739460dee7ff953bd43c0ad9

----==_mimepart_5eb5cf6fb709e_5a6e3fa8d20cd964219860
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/nharper" class="user-mention">@nharper</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/149475babfed6f9f739460dee7ff953bd43c0ad9">149475b</a>  Clarify issues instead of uses 0-length CID</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3426/files/0b3ff6b60864e9b29657e784c4a85bec36a05694..149475babfed6f9f739460dee7ff953bd43c0ad9">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5KBUA4433Q6GJTEJTRQR2W7ANCNFSM4KQNOYIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2V74RDICYZIH47I2TRQR2W7A5CNFSM4KQNOYIKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM3TCNBUG44DAM2QOVZWQIZVGA2DGOJUGY2DGMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3426/files/0b3ff6b60864e9b29657e784c4a85bec36a05694..149475babfed6f9f739460dee7ff953bd43c0ad9",
"url": "https://github.com/quicwg/base-drafts/pull/3426/files/0b3ff6b60864e9b29657e784c4a85bec36a05694..149475babfed6f9f739460dee7ff953bd43c0ad9",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb5cf6fb709e_5a6e3fa8d20cd964219860--


From nobody Fri May  8 14:30:51 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 7BAE53A0F41 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 14:30:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 B6EBKP_hEcrD for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 14:30:35 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8D1FB3A0F40 for <quic-issues@ietf.org>; Fri,  8 May 2020 14:30:34 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id BD911521E62 for <quic-issues@ietf.org>; Fri,  8 May 2020 14:30:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588973433; bh=TE9Ionbo+dr7xnA4pbMmrraqMkrSrpeQMOkSTeGmOoE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wrnv0jWsXJmHHK7XWuBP61ElddeJyQEQpSbc4ue5WmCToQFUzWMH81BKJ4aGqmn8L Madw8NHjqHN9HiWe6N0CkjMWAicWeUQ3HOzjQ6jBO+VmtDvYmUkhS3y9NGDuCpy+TD QoXy1QGsFnitwRtMEnwHGr62LAx0R2SxFEcM2dd4=
Date: Fri, 08 May 2020 14:30:33 -0700
From: Nick Harper <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4JKF2ZWPZKQYFVSNV4YGYHTEVBNHHCCZ7YJA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3426/review/408539384@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3426@github.com>
References: <quicwg/base-drafts/pull/3426@github.com>
Subject: Re: [quicwg/base-drafts] Clarify zero-length CIDs and active_connection_id_limit TP (#3426)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5cf79ae030_3a913fe9136cd964175946"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: nharper
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/826Ivc1OPeqy8ClGfFPp_yrv2oE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 21:30:38 -0000

----==_mimepart_5eb5cf79ae030_3a913fe9136cd964175946
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@nharper commented on this pull request.



> @@ -4697,11 +4697,14 @@ active_connection_id_limit (0x000e):
   to store. This value includes the connection ID received during the handshake,
   that received in the preferred_address transport parameter, and those received
   in NEW_CONNECTION_ID frames.
-  Unless a zero-length connection ID is being used, the value of the
-  active_connection_id_limit parameter MUST be no less than 2. If this
-  transport parameter is absent, a default of 2 is assumed.
-  When a zero-length connection ID is being used, the active_connection_id_limit
-  parameter MUST NOT be sent.
+  The value of the active_connection_id_limit parameter MUST be at least 2.
+  An endpoint that receives a value less than 2 MUST close the connection
+  with an error of type TRANSPORT_PARAMETER_ERROR.
+  If this transport parameter is absent, a default of 2 is assumed.  If an
+  endpoint uses a zero-length connection ID, the active_connection_id_limit

I've changed "uses" to "issues" and tightened up the language.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3426#discussion_r422384928
----==_mimepart_5eb5cf79ae030_3a913fe9136cd964175946
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@nharper</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3426#discussion_r422384928">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4697,11 +4697,14 @@ active_connection_id_limit (0x000e):
   to store. This value includes the connection ID received during the handshake,
   that received in the preferred_address transport parameter, and those received
   in NEW_CONNECTION_ID frames.
-  Unless a zero-length connection ID is being used, the value of the
-  active_connection_id_limit parameter MUST be no less than 2. If this
-  transport parameter is absent, a default of 2 is assumed.
-  When a zero-length connection ID is being used, the active_connection_id_limit
-  parameter MUST NOT be sent.
+  The value of the active_connection_id_limit parameter MUST be at least 2.
+  An endpoint that receives a value less than 2 MUST close the connection
+  with an error of type TRANSPORT_PARAMETER_ERROR.
+  If this transport parameter is absent, a default of 2 is assumed.  If an
+  endpoint uses a zero-length connection ID, the active_connection_id_limit
</pre>
<p>I've changed "uses" to "issues" and tightened up the language.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3426#discussion_r422384928">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7Z5LJIITYXMUQT55LRQR2XTANCNFSM4KQNOYIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK64NBKHNVOQJN5C34LRQR2XTA5CNFSM4KQNOYIKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBM5B6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3426#discussion_r422384928",
"url": "https://github.com/quicwg/base-drafts/pull/3426#discussion_r422384928",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb5cf79ae030_3a913fe9136cd964175946--


From nobody Fri May  8 15:32:23 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 7BD5C3A0FFD for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 15:32:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 2kLLc0riHp5x for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 15:32:20 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 372533A0FFC for <quic-issues@ietf.org>; Fri,  8 May 2020 15:32:19 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id EB447960612 for <quic-issues@ietf.org>; Fri,  8 May 2020 15:32:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588977138; bh=hg6kbJvntj8zWkGFb1N1Xquwl2N34q4EEW+/8SeOoww=; h=Date:From:To:Subject:From; b=gHQL66b7yv1MfZDEnNEy1zl2HdwMAhMU5Alm3TeQWeXeiqm1jhucSq1mKdXteZDEh hJyR9gdJ1/UzO86Fl2vUv0vRa2iRl0Rx23Fq8HxI9WgQbDhHkjVV+0y1jEg4SPLS87 Ie1Gl4Pk7s4jCPhTNVI4tve0ckwoNTQBOvpC1QwU=
Date: Fri, 08 May 2020 15:32:18 -0700
From: David Schinazi <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/datagram/push/refs/heads/master/40181b-5fe5d4@github.com>
Subject: [quicwg/datagram] 28715b: Make the TP Unidirectional
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/oIeWpbBP0nsFyaWuoZRbdYhWdfg>
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, 08 May 2020 22:32:22 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/datagram
  Commit: 28715b5cdb3827ff5c516339183ee75321606e54
      https://github.com/quicwg/datagram/commit/28715b5cdb3827ff5c516339183ee75321606e54
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-datagram.md

  Log Message:
  -----------
  Make the TP Unidirectional


  Commit: f03a1e359cc83352c1e9f98148fb960a83e16778
      https://github.com/quicwg/datagram/commit/f03a1e359cc83352c1e9f98148fb960a83e16778
  Author: Nick Banks <nibanks@microsoft.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-datagram.md

  Log Message:
  -----------
  Normative language


  Commit: 5fe5d4edd3efe42b74e0bba1489c0feb9fcef9c6
      https://github.com/quicwg/datagram/commit/5fe5d4edd3efe42b74e0bba1489c0feb9fcef9c6
  Author: David Schinazi <DavidSchinazi@users.noreply.github.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-datagram.md

  Log Message:
  -----------
  Merge pull request #11 from nibanks/pr/unidirectional

Make the TP Unidirectional


Compare: https://github.com/quicwg/datagram/compare/40181bac1488...5fe5d4edd3ef


From nobody Fri May  8 15:33:18 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 6A7573A0FFD for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 15:33:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 aihzXH5of4Sf for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 15:33:11 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 314923A0FFC for <quic-issues@ietf.org>; Fri,  8 May 2020 15:33:11 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 02A466E0774 for <quic-issues@ietf.org>; Fri,  8 May 2020 15:33:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588977190; bh=dYH7gUkY4FeDpoI9j4Mr+CRUzvzVKSaVQ9YKNDLf6/U=; h=Date:From:To:Subject:From; b=0EGPPUa6rWHbRw+fcyMzD25uFZb16VToWnLVD3BLVsQDSexSvcoGZrQu+iFfV87aO LnRuJiYfCrvPT3msNawPQcuLRo8Njos+925V9Ou4xCSm0Jv5V9cT1smYaV6CyDacdo EhKo4bEuvhMPTtS2k0cpoLiqyFiRUl63MnAQJiM4=
Date: Fri, 08 May 2020 15:33:09 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/datagram/push/refs/heads/gh-pages/54e198-4aa8dd@github.com>
Subject: [quicwg/datagram] 56c08e: remove jekyll-related YAML
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HPLoEvd41omhpmodQn-NR1Kywl4>
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, 08 May 2020 22:33:16 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/datagram
  Commit: 56c08e287c9c6ba776815e12d45f1a1a1e8a1c4e
      https://github.com/quicwg/datagram/commit/56c08e287c9c6ba776815e12d45f1a1a1e8a1c4e
  Author: lucas <lucas@cloudflare.com>
  Date:   2020-03-03 (Tue, 03 Mar 2020)

  Changed paths:
    A .gitignore
    A draft-ietf-quic-datagram.html
    A draft-ietf-quic-datagram.txt
    A index.html
    A issues.json
    A pulls.json

  Log Message:
  -----------
  remove jekyll-related YAML


  Commit: 4aa8dd5f936a223e52f79f99de49f4ac8fa81097
      https://github.com/quicwg/datagram/commit/4aa8dd5f936a223e52f79f99de49f4ac8fa81097
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-datagram.html
    M draft-ietf-quic-datagram.txt

  Log Message:
  -----------
  Script updating gh-pages from 5fe5d4e. [ci skip]


Compare: https://github.com/quicwg/datagram/compare/54e1989ed223...4aa8dd5f936a


From nobody Fri May  8 15:33:30 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 266863A100A for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 15:33:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 XwrnLJ-Iy-N6 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 15:33:16 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 83B153A0FFC for <quic-issues@ietf.org>; Fri,  8 May 2020 15:33:16 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id A065D961194 for <quic-issues@ietf.org>; Fri,  8 May 2020 15:33:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588977195; bh=TR85OeiAyH8aq+678bePPdUCW6g9kJvY3ok1bqX6KyY=; h=Date:From:To:Subject:From; b=BEmx725bcJl5LqXALmEZScsiNtSqpcjKq6wFi/bTnNJnjn+Ds7wgB4phZKIN8lPo3 Bf9nxzxLhxp16H7+kP8ZlwQsU6FAw72MLHy4BBFqQKcJrfi9iio35ehiQPO7g3A4lz NqilMKxF0o1EXXydK9yrlMbD84kA2IJING6eNxZY=
Date: Fri, 08 May 2020 15:33:15 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/datagram/push/refs/heads/gh-pages/4aa8dd-13a153@github.com>
Subject: [quicwg/datagram] 13a153: Script updating archive at 2020-05-08T22:32:59Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jotNy3uqmGvHwczuCR1VIPZ41Mg>
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, 08 May 2020 22:33:18 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/datagram
  Commit: 13a153bdc049cfdd3ac14ea7b42d49d03e1735e6
      https://github.com/quicwg/datagram/commit/13a153bdc049cfdd3ac14ea7b42d49d03e1735e6
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    A archive.json
    A issues.html
    A issues.js
    R issues.json
    R pulls.json

  Log Message:
  -----------
  Script updating archive at 2020-05-08T22:32:59Z. [ci skip]



From nobody Fri May  8 15:49:03 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 5A4993A0F45 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 15:49:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Aqle3GL8Dzqd for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 15:48:59 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B231B3A0E93 for <quic-issues@ietf.org>; Fri,  8 May 2020 15:48:58 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id B6D02C60D49 for <quic-issues@ietf.org>; Fri,  8 May 2020 15:48:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588978137; bh=FCw24Xn6rB46KCAwb8cK52sJD1J3TcXzk8/C+03wwws=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=aLGv7f0c3EenA1M7LPoMG2kDy63LXjcdv3YdFJ9fhWcyV3ViJOmBl4DteH3XE/MJp orz3WWvpNnII39goUe9RgRl7ngCoKw8roewr+oPGRqRTvSr9mmpOc9+sobr/Ql4Fc0 t8gEO8ovtG3wcfP3IUttsKPfe+k49f+02Ah0tTP8=
Date: Fri, 08 May 2020 15:48:57 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYZCY5RNCEUL2BDT5V4YHBNTEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/408565073@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5e1d9a8a44_6dd73ff85a0cd9641161b7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JrvZ9jIyqe-JlWP7PKX3JXG-pQQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 22:49:02 -0000

----==_mimepart_5eb5e1d9a8a44_6dd73ff85a0cd9641161b7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi commented on this pull request.

This feels like playing with fire to me. I think I'd almost prefer to remove CCM from the spec entirely, and add it as an extension document once there exists a peer-reviewed analysis that doesn't have the 2^14 record size caveat.

> +AEAD_AES_128_CCM, but the analysis in {{ccm-bounds}} shows that a limit of 2^23
+packets can be used to obtain the same confidentiality protection as the limits
+specified in TLS.
+
+The usage limits defined in TLS 1.3 exist to provide protection against attacks
+on confidentiality and apply to successful applications of AEAD protection. The
+integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated.  If the number of packets that fail authentication exceeds a
+limit that is specific to the AEAD in use, the endpoint MUST immediately close
+the connection.  Endpoints MUST initiate a key update before reaching this

This text feels unclear to me. It could be interpreted as "you MUST close the connection and initiate key rotation" which is silly. I think what's missing is the fact that the counter of invalid packets received is rest on key rotation. But if we have a "MUST initiate rotation", what's the point of the "MUST close the connection"?

> +successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, the limit on
+the number of packets that fail authentication is 2^36.  Note that the analysis
+in {{AEBounds}} supports a higher limit for the AEAD_AES_128_GCM and
+AEAD_AES_256_GCM, but this specification recommends a lower limit.  For
+AEAD_AES_128_CCM, the limit on the number of packets that fail authentication
+is 2^23.5; see {{ccm-bounds}}.
+
+Note:
+
+: These limits were originally calculated using assumptions about the
+  limits on TLS record size. The maximum size of a TLS record is 2^14 bytes.
+  In comparison, QUIC packets can be up to 2^16 bytes.  However, it is
+  expected that QUIC packets will generally be smaller than TLS records.
+  Where packets might be larger than 2^14 bytes in length, smaller limits might

This sounds scary to me. It feels like the spec is saying `Computing the limits for larger packet sizes is left as an exercise to the reader.` As a reader of this specification, I personally do not feel competent to get that right.

> @@ -2029,6 +2079,104 @@ ffff00001b0008f067a5502a4262b574 6f6b656ea523cb5ba524695f6569f293
 a1359d8e
 ~~~
 
+# Analysis of Limits on AEAD_AES_128_CCM Usage {#ccm-bounds}

Would it make sense to move this to an appendix? Ideally I would prefer for this to not be in the draft at all, and instead have a reference to a peer-reviewed paper, but I suspect that doesn't exist today.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-408565073
----==_mimepart_5eb5e1d9a8a44_6dd73ff85a0cd9641161b7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<p>This feels like playing with fire to me. I think I'd almost prefer to remove CCM from the spec entirely, and add it as an extension document once there exists a peer-reviewed analysis that doesn't have the 2^14 record size caveat.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r422407046">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +AEAD_AES_128_CCM, but the analysis in {{ccm-bounds}} shows that a limit of 2^23
+packets can be used to obtain the same confidentiality protection as the limits
+specified in TLS.
+
+The usage limits defined in TLS 1.3 exist to provide protection against attacks
+on confidentiality and apply to successful applications of AEAD protection. The
+integrity protections in authenticated encryption also depend on limiting the
+number of attempts to forge packets. TLS achieves this by closing connections
+after any record fails an authentication check. In comparison, QUIC ignores any
+packet that cannot be authenticated, allowing multiple attempts at defeating
+integrity protection.
+
+Endpoints MUST count the number of packets that are received but cannot be
+authenticated.  If the number of packets that fail authentication exceeds a
+limit that is specific to the AEAD in use, the endpoint MUST immediately close
+the connection.  Endpoints MUST initiate a key update before reaching this
</pre>
<p>This text feels unclear to me. It could be interpreted as "you MUST close the connection and initiate key rotation" which is silly. I think what's missing is the fact that the counter of invalid packets received is rest on key rotation. But if we have a "MUST initiate rotation", what's the point of the "MUST close the connection"?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r422407766">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, the limit on
+the number of packets that fail authentication is 2^36.  Note that the analysis
+in {{AEBounds}} supports a higher limit for the AEAD_AES_128_GCM and
+AEAD_AES_256_GCM, but this specification recommends a lower limit.  For
+AEAD_AES_128_CCM, the limit on the number of packets that fail authentication
+is 2^23.5; see {{ccm-bounds}}.
+
+Note:
+
+: These limits were originally calculated using assumptions about the
+  limits on TLS record size. The maximum size of a TLS record is 2^14 bytes.
+  In comparison, QUIC packets can be up to 2^16 bytes.  However, it is
+  expected that QUIC packets will generally be smaller than TLS records.
+  Where packets might be larger than 2^14 bytes in length, smaller limits might
</pre>
<p>This sounds scary to me. It feels like the spec is saying <code>Computing the limits for larger packet sizes is left as an exercise to the reader.</code> As a reader of this specification, I personally do not feel competent to get that right.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r422408213">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2029,6 +2079,104 @@ ffff00001b0008f067a5502a4262b574 6f6b656ea523cb5ba524695f6569f293
 a1359d8e
 ~~~
 
+# Analysis of Limits on AEAD_AES_128_CCM Usage {#ccm-bounds}
</pre>
<p>Would it make sense to move this to an appendix? Ideally I would prefer for this to not be in the draft at all, and instead have a reference to a peer-reviewed paper, but I suspect that doesn't exist today.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-408565073">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY4KXLN3L4CHBE5S5LRQSD5TANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK254YEJRSM6I4YV5ODRQSD5TA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBNDKUI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-408565073",
"url": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-408565073",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb5e1d9a8a44_6dd73ff85a0cd9641161b7--


From nobody Fri May  8 16:34:54 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 1DEBA3A1013 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 16:34:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.098
X-Spam-Level: 
X-Spam-Status: No, score=-3.098 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 eLADYu_Aoqtp for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 16:34:37 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 759943A0E8D for <quic-issues@ietf.org>; Fri,  8 May 2020 16:34:37 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 7C7656E00DB for <quic-issues@ietf.org>; Fri,  8 May 2020 16:34:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588980876; bh=VGJRN0thQqSuO7LilJ6hEpns51HhezUO5R46ZxP/4VQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LNZuQx0GznIPgn9TtMS6uNpvhVlTRcPT3JjHD+NwV+KQBsOfkbf1fDForCA88NjN1 FQk4mJxgaAWUQcFdKxqoKp8B95V5YTWR+/3lMdKjnna9Hip9EDXGwoSfJwciwdN4Ew vn9w+VLKRSUM+b7eHVWRzXevcE/wcrpvrVebOf9M=
Date: Fri, 08 May 2020 16:34:36 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5JJC7BKCPYM4257J54YHGYZEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/408576300@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5ec8c6ca0d_49b53fa3b28cd9681713ea"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sWMKt7prDlOJbdLp3h8rIlT5Uw4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 08 May 2020 23:34:41 -0000

----==_mimepart_5eb5ec8c6ca0d_49b53fa3b28cd9681713ea
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi commented on this pull request.

@ekr's review prompted me to look at this closer, and I think we should resolve these discrepancies before merging.

> @@ -4609,10 +4662,9 @@ The following transport parameters are defined:
 original_connection_id (0x00):
 
 : The value of the Destination Connection ID field from the first Initial packet
-  sent by the client.  This transport parameter is only sent by a server.  This
-  is the same value sent in the "Original Destination Connection ID" field of a
-  Retry packet (see {{packet-retry}}).  A server MUST include the
-  original_connection_id transport parameter if it sent a Retry packet.
+  sent by the client; see {{cid-auth}}.  This transport parameter is only sent
+  by a server.  The value of this parameter depends on whether the server

I don't understand the sentence "The value of this parameter depends on whether the server sent a Retry packet". From reading the rest of this PR it sounds like this TP has the same value no matter what happened with RETRY. Am I missing something?

> @@ -4786,17 +4838,28 @@ active_connection_id_limit (0x0e):
   When a zero-length connection ID is being used, the active_connection_id_limit
   parameter MUST NOT be sent.
 
+initial_connection_id (0x0f):
+
+: The value that the endpoint included in the Source Connection ID field of the
+  first Initial packet it sends during the handshake; see {{cid-auth}}.

nit: I would s/packet it sends during the handshake/packet it sent on this connection/

> @@ -1475,6 +1475,49 @@ lifetime of a connection, especially in response to connection migration
 ({{migration}}); see {{issue-cid}} for details.
 
 
+## Authenticating Connection IDs {#cid-auth}
+
+The choice each endpoint makes about connection IDs during the handshake is
+authenticated by including all values in transport parameters; see
+{{transport-parameters}}. This ensures that all connection IDs used for the
+handshake are also authenticated by the cryptographic handshake.
+
+Each endpoint includes the value of the Source Connection ID field from the most

Should this be the "first packet it sent" as opposed to "most recent" for consistency?

> @@ -1475,6 +1475,49 @@ lifetime of a connection, especially in response to connection migration
 ({{migration}}); see {{issue-cid}} for details.
 
 
+## Authenticating Connection IDs {#cid-auth}
+
+The choice each endpoint makes about connection IDs during the handshake is
+authenticated by including all values in transport parameters; see
+{{transport-parameters}}. This ensures that all connection IDs used for the
+handshake are also authenticated by the cryptographic handshake.
+
+Each endpoint includes the value of the Source Connection ID field from the most
+recent Initial packet it sent in the initial_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field it receives in original Initial packets from the

I would rephrase this to "A server includes the Destination Connection ID field from the first Initial packet it received from the client in the original_connection_id transport parameter; note that if the server sent a Retry packet this refers to the first Initial packet received before sending the Retry packet."

> @@ -1475,6 +1475,49 @@ lifetime of a connection, especially in response to connection migration
 ({{migration}}); see {{issue-cid}} for details.
 
 
+## Authenticating Connection IDs {#cid-auth}
+
+The choice each endpoint makes about connection IDs during the handshake is
+authenticated by including all values in transport parameters; see
+{{transport-parameters}}. This ensures that all connection IDs used for the
+handshake are also authenticated by the cryptographic handshake.
+
+Each endpoint includes the value of the Source Connection ID field from the most
+recent Initial packet it sent in the initial_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field it receives in original Initial packets from the
+client - Initial packets received by the server prior to sending a Retry packet
+- in the original_connection_id transport parameter. After sending a Retry

I would s/After sending a/If it sent a/

> +The choice each endpoint makes about connection IDs during the handshake is
+authenticated by including all values in transport parameters; see
+{{transport-parameters}}. This ensures that all connection IDs used for the
+handshake are also authenticated by the cryptographic handshake.
+
+Each endpoint includes the value of the Source Connection ID field from the most
+recent Initial packet it sent in the initial_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field it receives in original Initial packets from the
+client - Initial packets received by the server prior to sending a Retry packet
+- in the original_connection_id transport parameter. After sending a Retry
+packet, a server also includes the Source Connection ID field from the Retry
+packet in the retry_connection_id transport parameter.
+
+The values provided by a peer for these transport parameters MUST match the
+values that an endpoint used in the Destination Connection ID field of Initial

This sentence appears to apply to all 3 transport parameters, but it mentions Destination CID. I would s/Destination/Source and Destination/

> @@ -4395,13 +4439,22 @@ A client MUST NOT reset the packet number for any packet number space after
 processing a Retry packet; {{packet-0rtt}} contains more information on this.
 
 A server acknowledges the use of a Retry packet for a connection using the
-original_connection_id transport parameter (see
-{{transport-parameter-definitions}}).  If the server sends a Retry packet, it
-MUST include the Destination Connection ID field from the client's first
-Initial packet in the transport parameter.
+retry_connection_id transport parameter; see
+{{transport-parameter-definitions}}.  If it sends a Retry packet, the server
+also subsequently includes the value of the Source Connection ID field from
+the Retry packet in its retry_connection_id transport parameter.
+
+A server always includes an original_connection_id transport parameter. If it

I think we can remove this entire paragraph as it appears to be redundant with other parts of this PR, and it seems to have discrepancies.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-408576300
----==_mimepart_5eb5ec8c6ca0d_49b53fa3b28cd9681713ea
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ekr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ekr">@ekr</a>'s review prompted me to look at this closer, and I think we should resolve these discrepancies before merging.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422416770">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4609,10 +4662,9 @@ The following transport parameters are defined:
 original_connection_id (0x00):
 
 : The value of the Destination Connection ID field from the first Initial packet
-  sent by the client.  This transport parameter is only sent by a server.  This
-  is the same value sent in the &quot;Original Destination Connection ID&quot; field of a
-  Retry packet (see {{packet-retry}}).  A server MUST include the
-  original_connection_id transport parameter if it sent a Retry packet.
+  sent by the client; see {{cid-auth}}.  This transport parameter is only sent
+  by a server.  The value of this parameter depends on whether the server
</pre>
<p>I don't understand the sentence "The value of this parameter depends on whether the server sent a Retry packet". From reading the rest of this PR it sounds like this TP has the same value no matter what happened with RETRY. Am I missing something?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422416932">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4786,17 +4838,28 @@ active_connection_id_limit (0x0e):
   When a zero-length connection ID is being used, the active_connection_id_limit
   parameter MUST NOT be sent.
 
+initial_connection_id (0x0f):
+
+: The value that the endpoint included in the Source Connection ID field of the
+  first Initial packet it sends during the handshake; see {{cid-auth}}.
</pre>
<p>nit: I would s/packet it sends during the handshake/packet it sent on this connection/</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422418026">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1475,6 +1475,49 @@ lifetime of a connection, especially in response to connection migration
 ({{migration}}); see {{issue-cid}} for details.
 
 
+## Authenticating Connection IDs {#cid-auth}
+
+The choice each endpoint makes about connection IDs during the handshake is
+authenticated by including all values in transport parameters; see
+{{transport-parameters}}. This ensures that all connection IDs used for the
+handshake are also authenticated by the cryptographic handshake.
+
+Each endpoint includes the value of the Source Connection ID field from the most
</pre>
<p>Should this be the "first packet it sent" as opposed to "most recent" for consistency?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422418569">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1475,6 +1475,49 @@ lifetime of a connection, especially in response to connection migration
 ({{migration}}); see {{issue-cid}} for details.
 
 
+## Authenticating Connection IDs {#cid-auth}
+
+The choice each endpoint makes about connection IDs during the handshake is
+authenticated by including all values in transport parameters; see
+{{transport-parameters}}. This ensures that all connection IDs used for the
+handshake are also authenticated by the cryptographic handshake.
+
+Each endpoint includes the value of the Source Connection ID field from the most
+recent Initial packet it sent in the initial_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field it receives in original Initial packets from the
</pre>
<p>I would rephrase this to "A server includes the Destination Connection ID field from the first Initial packet it received from the client in the original_connection_id transport parameter; note that if the server sent a Retry packet this refers to the first Initial packet received before sending the Retry packet."</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422418691">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1475,6 +1475,49 @@ lifetime of a connection, especially in response to connection migration
 ({{migration}}); see {{issue-cid}} for details.
 
 
+## Authenticating Connection IDs {#cid-auth}
+
+The choice each endpoint makes about connection IDs during the handshake is
+authenticated by including all values in transport parameters; see
+{{transport-parameters}}. This ensures that all connection IDs used for the
+handshake are also authenticated by the cryptographic handshake.
+
+Each endpoint includes the value of the Source Connection ID field from the most
+recent Initial packet it sent in the initial_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field it receives in original Initial packets from the
+client - Initial packets received by the server prior to sending a Retry packet
+- in the original_connection_id transport parameter. After sending a Retry
</pre>
<p>I would s/After sending a/If it sent a/</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422418938">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +The choice each endpoint makes about connection IDs during the handshake is
+authenticated by including all values in transport parameters; see
+{{transport-parameters}}. This ensures that all connection IDs used for the
+handshake are also authenticated by the cryptographic handshake.
+
+Each endpoint includes the value of the Source Connection ID field from the most
+recent Initial packet it sent in the initial_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field it receives in original Initial packets from the
+client - Initial packets received by the server prior to sending a Retry packet
+- in the original_connection_id transport parameter. After sending a Retry
+packet, a server also includes the Source Connection ID field from the Retry
+packet in the retry_connection_id transport parameter.
+
+The values provided by a peer for these transport parameters MUST match the
+values that an endpoint used in the Destination Connection ID field of Initial
</pre>
<p>This sentence appears to apply to all 3 transport parameters, but it mentions Destination CID. I would s/Destination/Source and Destination/</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422419176">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4395,13 +4439,22 @@ A client MUST NOT reset the packet number for any packet number space after
 processing a Retry packet; {{packet-0rtt}} contains more information on this.
 
 A server acknowledges the use of a Retry packet for a connection using the
-original_connection_id transport parameter (see
-{{transport-parameter-definitions}}).  If the server sends a Retry packet, it
-MUST include the Destination Connection ID field from the client&#39;s first
-Initial packet in the transport parameter.
+retry_connection_id transport parameter; see
+{{transport-parameter-definitions}}.  If it sends a Retry packet, the server
+also subsequently includes the value of the Source Connection ID field from
+the Retry packet in its retry_connection_id transport parameter.
+
+A server always includes an original_connection_id transport parameter. If it
</pre>
<p>I think we can remove this entire paragraph as it appears to be redundant with other parts of this PR, and it seems to have discrepancies.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-408576300">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2QE2467DK2ECNBLPDRQSJIZANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZFBUQV7TSGDVED3QTRQSJIZA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBNGCLA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-408576300",
"url": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-408576300",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb5ec8c6ca0d_49b53fa3b28cd9681713ea--


From nobody Fri May  8 17:08:11 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 46A753A02BB for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 17:08:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 sX9INwBErhzX for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 17:08:07 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 852373A011F for <quic-issues@ietf.org>; Fri,  8 May 2020 17:08:07 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 5E3A25205E3 for <quic-issues@ietf.org>; Fri,  8 May 2020 17:08:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588982886; bh=6F0TFQSsBxWExR4xvXh/JJysN/3PY3Ro4EDnSk1ldqE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Mi/GHUFS2ed9kGjDxxKnH4RacuYjo05MQf5mb3lECf4MlvQlWRCclKLlldbr3ApE4 3cNB7WYBdmkmfC0r6ociPfUXKpUko1bumvX6k5jpagfVO1+wzm6jf7/hup8j3hMg3t Cfi7MqZTYsuKEdam0KQ0Qtqd4t5j9cWTIyn6do9g=
Date: Fri, 08 May 2020 17:08:06 -0700
From: Christian Huitema <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK47QLHNGV3QU7ZVUAF4YHKWNEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/408586110@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5f4664f5b2_7e263f8d694cd96c1326b0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: huitema
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Ct1gn0T3qCSpiXHCNM5FYwQUBoY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 09 May 2020 00:08:09 -0000

----==_mimepart_5eb5f4664f5b2_7e263f8d694cd96c1326b0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@huitema commented on this pull request.



> @@ -4786,17 +4838,28 @@ active_connection_id_limit (0x0e):
   When a zero-length connection ID is being used, the active_connection_id_limit
   parameter MUST NOT be sent.
 
+initial_connection_id (0x0f):
+
+: The value that the endpoint included in the Source Connection ID field of the
+  first Initial packet it sends during the handshake; see {{cid-auth}}.

Everywhere else, "initial_connection_id" is defined as _The value that the endpoint included in the  **Destination** Connection ID field of the first Initial packet it sends during the handshake._
I think that the simplest solution is to s/Source/Destination/

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#discussion_r422425820
----==_mimepart_5eb5f4664f5b2_7e263f8d694cd96c1326b0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@huitema</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422425820">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4786,17 +4838,28 @@ active_connection_id_limit (0x0e):
   When a zero-length connection ID is being used, the active_connection_id_limit
   parameter MUST NOT be sent.
 
+initial_connection_id (0x0f):
+
+: The value that the endpoint included in the Source Connection ID field of the
+  first Initial packet it sends during the handshake; see {{cid-auth}}.
</pre>
<p>Everywhere else, "initial_connection_id" is defined as <em>The value that the endpoint included in the  <strong>Destination</strong> Connection ID field of the first Initial packet it sends during the handshake.</em><br>
I think that the simplest solution is to s/Source/Destination/</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422425820">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4L4353ACHF555FW7DRQSNGNANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2272KAR5Y7IEDD4NLRQSNGNA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBNIO7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r422425820",
"url": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r422425820",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb5f4664f5b2_7e263f8d694cd96c1326b0--


From nobody Fri May  8 17:47:21 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 B45693A0406 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 17:47:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 WKWPgTKF2TDa for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 17:47:13 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7D6853A0405 for <quic-issues@ietf.org>; Fri,  8 May 2020 17:47:12 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id C57B99603CD for <quic-issues@ietf.org>; Fri,  8 May 2020 17:47:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588985230; bh=7QTviLXFBtzZbl1JbYJqg1Z69MpaJDrXU2f1V60ROkc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Fpfi9zCuI0Y49wG3uTvb7mj5o8Smz/3lwvyFMcQIkO91laj8NmdyhYKYQYJGNPxwN vIXbeGuG/XOe0BMhWXfEdxZYxBzroFwFYSAID0IXk/wXo75PI+KnOdl9zx2E5m+72g oAyzPtKtJGYjJexRv4FZpkfwxto6YorzlB4LfFDY=
Date: Fri, 08 May 2020 17:47:10 -0700
From: Christian Huitema <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYO2HPFF26G4GZDUKN4YHPI5EVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/408593742@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5fd8eb7a12_72a13fe1326cd95c116772"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: huitema
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/41C50bbvx-no5kRV0aFrfeA5sgM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 09 May 2020 00:47:18 -0000

----==_mimepart_5eb5fd8eb7a12_72a13fe1326cd95c116772
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@huitema commented on this pull request.



> @@ -1475,6 +1475,49 @@ lifetime of a connection, especially in response to connection migration
 ({{migration}}); see {{issue-cid}} for details.
 
 
+## Authenticating Connection IDs {#cid-auth}
+
+The choice each endpoint makes about connection IDs during the handshake is
+authenticated by including all values in transport parameters; see
+{{transport-parameters}}. This ensures that all connection IDs used for the
+handshake are also authenticated by the cryptographic handshake.
+
+Each endpoint includes the value of the Source Connection ID field from the most
+recent Initial packet it sent in the initial_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field it receives in original Initial packets from the

We already have a definition for an original_connection_id transport parameter (see section  17.2.5.3. of the transport spec, Continuing a Handshake After Retry). From the point of view of the client, we have the following:

1) Without retry:
* Initial DCID: DCID of the first Initial packet sent by the client.
* Server SCID: CID chosen by the server to identify the connection during the handshake. Also used by the client for further Initial or Handshake packets once the client receives a first handshake message from the server.

2) With Retry:
* Original DCID: the DCID in the first Initial packet sent by the client, when that packet triggered a Retry.
* Server suggested DCID: the SCID of the Retry packet sent by the server. 
* Initial DCID: the DCID in the first Initial packet sent by the client in response to the Retry. MUST be set to the Server suggested DCID.
* Server SCID: the SCID chosen by the server to identify the connection. May or may not be the same as Server suggested DCID.

Maybe we should tighten these definitions.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#discussion_r422432965
----==_mimepart_5eb5fd8eb7a12_72a13fe1326cd95c116772
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@huitema</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422432965">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1475,6 +1475,49 @@ lifetime of a connection, especially in response to connection migration
 ({{migration}}); see {{issue-cid}} for details.
 
 
+## Authenticating Connection IDs {#cid-auth}
+
+The choice each endpoint makes about connection IDs during the handshake is
+authenticated by including all values in transport parameters; see
+{{transport-parameters}}. This ensures that all connection IDs used for the
+handshake are also authenticated by the cryptographic handshake.
+
+Each endpoint includes the value of the Source Connection ID field from the most
+recent Initial packet it sent in the initial_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field it receives in original Initial packets from the
</pre>
<p>We already have a definition for an original_connection_id transport parameter (see section  17.2.5.3. of the transport spec, Continuing a Handshake After Retry). From the point of view of the client, we have the following:</p>
<ol>
<li>Without retry:</li>
</ol>
<ul>
<li>Initial DCID: DCID of the first Initial packet sent by the client.</li>
<li>Server SCID: CID chosen by the server to identify the connection during the handshake. Also used by the client for further Initial or Handshake packets once the client receives a first handshake message from the server.</li>
</ul>
<ol start="2">
<li>With Retry:</li>
</ol>
<ul>
<li>Original DCID: the DCID in the first Initial packet sent by the client, when that packet triggered a Retry.</li>
<li>Server suggested DCID: the SCID of the Retry packet sent by the server.</li>
<li>Initial DCID: the DCID in the first Initial packet sent by the client in response to the Retry. MUST be set to the Server suggested DCID.</li>
<li>Server SCID: the SCID chosen by the server to identify the connection. May or may not be the same as Server suggested DCID.</li>
</ul>
<p>Maybe we should tighten these definitions.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422432965">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZJ4KEIXUXVRHFFFS3RQSRY5ANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK224YMDVPTRDNFKS7TRQSRY5A5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBNKKTQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r422432965",
"url": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r422432965",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb5fd8eb7a12_72a13fe1326cd95c116772--


From nobody Fri May  8 17:50:24 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 5C0C03A0418 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 17:50:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 D_ZkjplHoaoe for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 17:50:20 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EB17E3A0415 for <quic-issues@ietf.org>; Fri,  8 May 2020 17:50:19 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 1C34C960552 for <quic-issues@ietf.org>; Fri,  8 May 2020 17:50:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588985419; bh=NJR5V9RVXZBQem904x5oW8Kqx2gyUGFCV8EFCcbG4pI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kHQwwrq+EiB+Uzsf+1kf3GowDW1jtG7tn9/ZX9JC22NY1CFuvyPkDK/KagwzJPNgU 5RYlt47oX6wXgxA6ODjwo9Yh5IuwBU/BJQ1aEup3vecoU776HpBv3a70KuIC3MnnWy Ny39I4VMOc9/6Gc3yI66icz6+9nYFMwz4lmoaWyo=
Date: Fri, 08 May 2020 17:50:19 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK65367IDZBJQ2QSFPF4YHPUXEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/408594123@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5fe4bdbbb_98d3faf132cd95c173584"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8NVm8uYjPbIG1kQpnQl5Mi7N6JQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 09 May 2020 00:50:23 -0000

----==_mimepart_5eb5fe4bdbbb_98d3faf132cd95c173584
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi commented on this pull request.



> @@ -4786,17 +4838,28 @@ active_connection_id_limit (0x0e):
   When a zero-length connection ID is being used, the active_connection_id_limit
   parameter MUST NOT be sent.
 
+initial_connection_id (0x0f):
+
+: The value that the endpoint included in the Source Connection ID field of the
+  first Initial packet it sends during the handshake; see {{cid-auth}}.

I don't think that's right @huitema. `initial_connection_id` refers to the Source Connection ID because that's the one that needs protection. The Destination Connection ID is covered by `original_connection_id `.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#discussion_r422433344
----==_mimepart_5eb5fe4bdbbb_98d3faf132cd95c173584
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422433344">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4786,17 +4838,28 @@ active_connection_id_limit (0x0e):
   When a zero-length connection ID is being used, the active_connection_id_limit
   parameter MUST NOT be sent.
 
+initial_connection_id (0x0f):
+
+: The value that the endpoint included in the Source Connection ID field of the
+  first Initial packet it sends during the handshake; see {{cid-auth}}.
</pre>
<p>I don't think that's right <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/huitema/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/huitema">@huitema</a>. <code>initial_connection_id</code> refers to the Source Connection ID because that's the one that needs protection. The Destination Connection ID is covered by <code>original_connection_id </code>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422433344">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZYAOVFDUA53OCB2ZLRQSSEXANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK643VSFSO7RM4UO5RDRQSSEXA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBNKNSY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r422433344",
"url": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r422433344",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb5fe4bdbbb_98d3faf132cd95c173584--


From nobody Fri May  8 17:52:47 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 AB6103A041E for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 17:52:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 qbjAqsjLG6Bd for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 17:52:44 -0700 (PDT)
Received: from out-13.smtp.github.com (out-13.smtp.github.com [192.30.254.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4ED5E3A041C for <quic-issues@ietf.org>; Fri,  8 May 2020 17:52:44 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id E6121261679 for <quic-issues@ietf.org>; Fri,  8 May 2020 17:52:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588985563; bh=GDo+sxqWlDqVvQtxFF5Hut7bHzh2+s//Pd+upowlqCs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RXc60AQneeD+B6PN0lhmNxqrmKAl8DJxeWhZNvpSYmwEOE2wOstrUsUMqGLKtJV0w 3js57Yn/3oOo8vxl8aq+/Qhgkgy1p5XnBSxSeEwWbDrQCquKPRdi+LVA08WJgLKzaQ uogKHtvAeh15zJNL+ghE3R7LmEHg+8A637uYP5ps=
Date: Fri, 08 May 2020 17:52:42 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7TB24MGYQBA3V4M654YHP5VEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/408594414@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb5feda9feb2_40e33fdd172cd95c1609f4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/M8V8c49s8_aV7MLWOZPcLZyx1gc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 09 May 2020 00:52:46 -0000

----==_mimepart_5eb5feda9feb2_40e33fdd172cd95c1609f4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi commented on this pull request.



> @@ -1475,6 +1475,49 @@ lifetime of a connection, especially in response to connection migration
 ({{migration}}); see {{issue-cid}} for details.
 
 
+## Authenticating Connection IDs {#cid-auth}
+
+The choice each endpoint makes about connection IDs during the handshake is
+authenticated by including all values in transport parameters; see
+{{transport-parameters}}. This ensures that all connection IDs used for the
+handshake are also authenticated by the cryptographic handshake.
+
+Each endpoint includes the value of the Source Connection ID field from the most
+recent Initial packet it sent in the initial_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field it receives in original Initial packets from the

`original_connection_id` used to only apply when a Retry was involved. This PR changes that: servers now always send `original_connection_id` no matter what.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#discussion_r422433616
----==_mimepart_5eb5feda9feb2_40e33fdd172cd95c1609f4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422433616">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1475,6 +1475,49 @@ lifetime of a connection, especially in response to connection migration
 ({{migration}}); see {{issue-cid}} for details.
 
 
+## Authenticating Connection IDs {#cid-auth}
+
+The choice each endpoint makes about connection IDs during the handshake is
+authenticated by including all values in transport parameters; see
+{{transport-parameters}}. This ensures that all connection IDs used for the
+handshake are also authenticated by the cryptographic handshake.
+
+Each endpoint includes the value of the Source Connection ID field from the most
+recent Initial packet it sent in the initial_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field it receives in original Initial packets from the
</pre>
<p><code>original_connection_id</code> used to only apply when a Retry was involved. This PR changes that: servers now always send <code>original_connection_id</code> no matter what.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422433616">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYCPTCLKQOIJD7MNFLRQSSNVANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK557OMQ6WKGLRQFRMDRQSSNVA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBNKP3Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r422433616",
"url": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r422433616",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb5feda9feb2_40e33fdd172cd95c1609f4--


From nobody Fri May  8 18:09:12 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 0715A3A058F for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 18:09:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 EV_sLBDzzDbr for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 18:09:06 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9494A3A0418 for <quic-issues@ietf.org>; Fri,  8 May 2020 18:09:06 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id BB30A960552 for <quic-issues@ietf.org>; Fri,  8 May 2020 18:09:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588986545; bh=aKDaLrZbE//Ga0F5FnxViyjgmnHGZQsuQSiClhcUSKk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mT1q2tD605IYm4u9zUdhkRtIkhl2QQnCTDS07Py0+iKUBey+gyR+PMIMxTaIau+lR chRa5ZXgxN+wnFACwBgz6OBj6NszEJFDMyT2sN7jolLeDBxvhfL2YG8qEpRMYza2kH xy28b1XrsMl7MOvaOwy9ujEpzjMshLfUU4LqD4eI=
Date: Fri, 08 May 2020 18:09:05 -0700
From: Christian Huitema <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6MDMMA5ZEINPBQGLV4YHR3DEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/408596258@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb602b1ad453_7e223f8d694cd96c196718"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: huitema
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SpFutgYUARPcBSPcDnAdEEgCD-8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 09 May 2020 01:09:10 -0000

----==_mimepart_5eb602b1ad453_7e223f8d694cd96c196718
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@huitema commented on this pull request.



> @@ -4786,17 +4838,28 @@ active_connection_id_limit (0x0e):
   When a zero-length connection ID is being used, the active_connection_id_limit
   parameter MUST NOT be sent.
 
+initial_connection_id (0x0f):
+
+: The value that the endpoint included in the Source Connection ID field of the
+  first Initial packet it sends during the handshake; see {{cid-auth}}.

@DavidSchinazi If you want to refer to the source CID set by the client in its first Initial packet, you should really use a different name than `initial_connection_id`, because this is widely used to refer to the initial destination CID. Maybe you should call that `initial_source_connection_id`. But using the same name for 2 concepts seems bad. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#discussion_r422435538
----==_mimepart_5eb602b1ad453_7e223f8d694cd96c196718
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@huitema</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422435538">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4786,17 +4838,28 @@ active_connection_id_limit (0x0e):
   When a zero-length connection ID is being used, the active_connection_id_limit
   parameter MUST NOT be sent.
 
+initial_connection_id (0x0f):
+
+: The value that the endpoint included in the Source Connection ID field of the
+  first Initial packet it sends during the handshake; see {{cid-auth}}.
</pre>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/DavidSchinazi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DavidSchinazi">@DavidSchinazi</a> If you want to refer to the source CID set by the client in its first Initial packet, you should really use a different name than <code>initial_connection_id</code>, because this is widely used to refer to the initial destination CID. Maybe you should call that <code>initial_source_connection_id</code>. But using the same name for 2 concepts seems bad.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422435538">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2JK7OFQ37GF2XJEYTRQSULDANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3NYQ7SFS7F77UQQ2LRQSULDA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBNK6IQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r422435538",
"url": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r422435538",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb602b1ad453_7e223f8d694cd96c196718--


From nobody Fri May  8 18:14:30 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 1943D3A0418 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 18:14:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 vo9bshgwGVcA for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 18:14:27 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 84A613A0400 for <quic-issues@ietf.org>; Fri,  8 May 2020 18:14:27 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 10A57E0F5C for <quic-issues@ietf.org>; Fri,  8 May 2020 18:14:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588986865; bh=LJd+0Ghlo549YnrbRUsTImCVl6MwqK/xechy0FMTjX8=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=CW8OLowigDZ5wE6pILlMEDWH4dp+fN+8TLYt4yFT1bMK3SONzddGqMvxdDgr94y4b lnnqNAykDJMbETMWAgJ5aTkscqZQbR35/U7jC7YCV0Vv51XKAu0RiodlaDCj6+6+j5 GyJf39FGmoIMyS47X23mWcOlco+Oh/IlKu3KPwcc=
Date: Fri, 08 May 2020 18:14:25 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK733JELKRNAJYRMGG54YHSPBEVBNHHCJKIRDE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3638@github.com>
Subject: [quicwg/base-drafts] max_udp_payload_size during the handshake (#3638)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb603f1a5e_653a3f8a8eacd96c856ef"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ELTxzcXy6C2oIVW_tqLjA7u9T9c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 09 May 2020 01:14:29 -0000

----==_mimepart_5eb603f1a5e_653a3f8a8eacd96c856ef
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The `max_udp_payload_size` transport parameter (formerly known as `max_packet_size`) instructs the receiving endpoint that it should try to avoid sending packets bigger than that number. However, some packets are sent before the transport parameters are received. Should the draft contain some guidance about what value to use during the handshake? Our implementation currently uses a default value of 1350 until the transport parameters have been received, and I wonder if that may lead to interop issues if some Web servers implement QUIC but drop packets larger than 1300 for example. One could consider using the minimum possible value (1200) during the handshake but I fear that this would negatively impact performance.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3638
----==_mimepart_5eb603f1a5e_653a3f8a8eacd96c856ef
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The <code>max_udp_payload_size</code> transport parameter (formerly known as <code>max_packet_size</code>) instructs the receiving endpoint that it should try to avoid sending packets bigger than that number. However, some packets are sent before the transport parameters are received. Should the draft contain some guidance about what value to use during the handshake? Our implementation currently uses a default value of 1350 until the transport parameters have been received, and I wonder if that may lead to interop issues if some Web servers implement QUIC but drop packets larger than 1300 for example. One could consider using the minimum possible value (1200) during the handshake but I fear that this would negatively impact performance.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3638">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5NW7IBL3LNPP4V76TRQSU7DANCNFSM4M4SN3PA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK26K7J3CETPYCKEWLDRQSU7DA5CNFSM4M4SN3PKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JFJCEMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3638",
"url": "https://github.com/quicwg/base-drafts/issues/3638",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb603f1a5e_653a3f8a8eacd96c856ef--


From nobody Fri May  8 18:37:53 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 9AE413A0640 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 18:37:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 49Xpl3KoNMoe for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 18:37:49 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 390E63A05AC for <quic-issues@ietf.org>; Fri,  8 May 2020 18:37:48 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 3593A520E30 for <quic-issues@ietf.org>; Fri,  8 May 2020 18:37:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588988268; bh=6GwqMX844nyv66gt7ZOM7xcwNrc2qk7/NKbWDC3fVys=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DsmSOtRBeE7rKXgyq44NES/ipceRGcAx1ZteT80b0jRpEvHz3lbwqBImb/vaLNeW2 uNiw0oTiI8I8XhpFmy0lcMQZOWmEMchMwCh+obA5CIOoQjhdRV4/vKkzxeePZ/z2E6 OzEcXVrtRd9H1Sk4phCNdQ4a6NmZOI338XPvuNFQ=
Date: Fri, 08 May 2020 18:37:48 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK445XEUGYBXN5G3Z754YHVGZEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/408599185@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb6096c23be5_15d23fb7840cd96c374fb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6vOlOB1WqZkKHfDf08L3DN7UgoQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 09 May 2020 01:37:51 -0000

----==_mimepart_5eb6096c23be5_15d23fb7840cd96c374fb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi commented on this pull request.



> @@ -4786,17 +4838,28 @@ active_connection_id_limit (0x0e):
   When a zero-length connection ID is being used, the active_connection_id_limit
   parameter MUST NOT be sent.
 
+initial_connection_id (0x0f):
+
+: The value that the endpoint included in the Source Connection ID field of the
+  first Initial packet it sends during the handshake; see {{cid-auth}}.

I didn't pick the name, but I agree that `initial_source_connection_id` might be clearer than `initial_connection_id`.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#discussion_r422438394
----==_mimepart_5eb6096c23be5_15d23fb7840cd96c374fb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422438394">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4786,17 +4838,28 @@ active_connection_id_limit (0x0e):
   When a zero-length connection ID is being used, the active_connection_id_limit
   parameter MUST NOT be sent.
 
+initial_connection_id (0x0f):
+
+: The value that the endpoint included in the Source Connection ID field of the
+  first Initial packet it sends during the handshake; see {{cid-auth}}.
</pre>
<p>I didn't pick the name, but I agree that <code>initial_source_connection_id</code> might be clearer than <code>initial_connection_id</code>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422438394">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2LT7A3WD6OP5SANTLRQSXWZANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3HUENNBSHMASY6WDLRQSXWZA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBNLVEI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r422438394",
"url": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r422438394",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb6096c23be5_15d23fb7840cd96c374fb--


From nobody Fri May  8 18:45:21 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 A62ED3A0745 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 18:45:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 yRD61W9_Y3pk for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 18:45:15 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2D5203A060D for <quic-issues@ietf.org>; Fri,  8 May 2020 18:45:15 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 3B6922C0EC5 for <quic-issues@ietf.org>; Fri,  8 May 2020 18:45:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588988714; bh=hJCv0eAdZWLaHrzRtAcwu/3TLNNsOM06TaBMtTI6pmo=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ZpWpGq3DfU1oNwp+YzeTDsAEw8vVDiRZ5I3fKS/lnSGtP0RVReXGXEeEWRGcQA27m Rru8A1wJKIZ1aEnyXxjzsNs2hGFB5+uWIhCYHv+Hqe51vHY8+tRXuO7ZK3SqiKLDeU yKcAXELO4jJtZ+EqiKo2Lt5m++h4SQms8B8AzG+8=
Date: Fri, 08 May 2020 18:45:14 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ACGJQ6DKVCPULIMN4YHWCVEVBNHHCJKJEKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3639@github.com>
Subject: [quicwg/base-drafts] Server's first flight should be capped by INITCWND (#3639)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb60b2a2e4c2_6aed3fb30b8cd9647798a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/y9_UeXmoUQJrsyrVYyeI9DuOeJw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 09 May 2020 01:45:19 -0000

----==_mimepart_5eb60b2a2e4c2_6aed3fb30b8cd9647798a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

When the client has a large first flight (post-quantum, or 0-RTT), it can send 10 packets at once.

But that does not mean that the server can immediately send as much as 3x it receives in response, because that is above the INITCWND - the initial assumption about the network capacity.

Things to be considered here are:
* Server cannot rely on CC until the client's address is validated, because an attacker might spoof Initial ACKs
* At the very least, server needs to send one Initial in response to every client Initial packet _not_ containing ACKs, otherwise the handshake might fail when there is hevy loss.

Based on this observation, to me it seems that the easiest way of going forward would be to state that the amplification limit changes from 3x to 1x once the amount of data being sent by the server reaches INITCWND.

Disclaimer: this issue popped up while trying to find out a response to @rmarx's claim that quicly sends 3x that is above INITCWND, when the client sends a large amount of 0-RTT data.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3639
----==_mimepart_5eb60b2a2e4c2_6aed3fb30b8cd9647798a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>When the client has a large first flight (post-quantum, or 0-RTT), it can send 10 packets at once.</p>
<p>But that does not mean that the server can immediately send as much as 3x it receives in response, because that is above the INITCWND - the initial assumption about the network capacity.</p>
<p>Things to be considered here are:</p>
<ul>
<li>Server cannot rely on CC until the client's address is validated, because an attacker might spoof Initial ACKs</li>
<li>At the very least, server needs to send one Initial in response to every client Initial packet <em>not</em> containing ACKs, otherwise the handshake might fail when there is hevy loss.</li>
</ul>
<p>Based on this observation, to me it seems that the easiest way of going forward would be to state that the amplification limit changes from 3x to 1x once the amount of data being sent by the server reaches INITCWND.</p>
<p>Disclaimer: this issue popped up while trying to find out a response to <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/rmarx/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rmarx">@rmarx</a>'s claim that quicly sends 3x that is above INITCWND, when the client sends a large amount of 0-RTT data.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3639">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ6TLKMZUWG3CIGOVDRQSYSVANCNFSM4M4SWIFQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZVHIPIAZOTXIYGWD3RQSYSVA5CNFSM4M4SWIF2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JFJERLA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3639",
"url": "https://github.com/quicwg/base-drafts/issues/3639",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb60b2a2e4c2_6aed3fb30b8cd9647798a--


From nobody Fri May  8 19:28:38 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 984733A07F0 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 19:28:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.006
X-Spam-Level: 
X-Spam-Status: No, score=-2.006 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 fg7aDs_JkN-Q for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 19:28:36 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 898AD3A07E7 for <quic-issues@ietf.org>; Fri,  8 May 2020 19:28:36 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 8C2A2A1166 for <quic-issues@ietf.org>; Fri,  8 May 2020 19:28:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588991315; bh=0dabZ6s/01cxIur04lTYHU9iAJMTWLBWmJDQSLNbsys=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pPDeaZWma6CPkUm/g7o+/5NT9mL6v1PwbBNh/6nGqKsY2+5k6cA+q5+0pmPUW+pVh uZ+fzQCYufENpxtN4ZnEBPl0cHglKM0o1PO55fXLpDQADIfB9wLKFbz6T/brZXKDmU 2AxmwOywztMJEvHE8swQgI7OnkkBFs1cpTmvpbjk=
Date: Fri, 08 May 2020 19:28:35 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7NTG5MPE5NUZ7TO2N4YH3FHEVBNHHCJKJEKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3639/626091105@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3639@github.com>
References: <quicwg/base-drafts/issues/3639@github.com>
Subject: Re: [quicwg/base-drafts] Server's first flight should be capped by INITCWND (#3639)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb615537d44b_2b873f91ce4cd96c49931"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-BfDBL0_9x4NDb1lhewK544tuzY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 09 May 2020 02:28:38 -0000

----==_mimepart_5eb615537d44b_2b873f91ce4cd96c49931
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> Server cannot rely on CC until the client's address is validated, because an attacker might spoof Initial ACKs.

Just to clarify, only an on-path attacker can do this, right?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626091105
----==_mimepart_5eb615537d44b_2b873f91ce4cd96c49931
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>Server cannot rely on CC until the client's address is validated, because an attacker might spoof Initial ACKs.</p>
</blockquote>
<p>Just to clarify, only an on-path attacker can do this, right?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626091105">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYPIZMEZQM37VOPCFLRQS5VHANCNFSM4M4SWIFQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2R24HRDTPI3XQ2BG3RQS5VHA5CNFSM4M4SWIF2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVIWIYI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626091105",
"url": "https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626091105",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb615537d44b_2b873f91ce4cd96c49931--


From nobody Fri May  8 19:32:34 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 D850B3A0809 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 19:32:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 1lTmyFNxzTQp for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 19:32:29 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D96EC3A07F5 for <quic-issues@ietf.org>; Fri,  8 May 2020 19:32:28 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id E0E6D6A1020 for <quic-issues@ietf.org>; Fri,  8 May 2020 19:32:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588991547; bh=xDo3lGmuQPkR6iEtPTlKWLDReko77vMjTMK62Uy7GVY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2OMa7kGevKhIq3nIFNSjSPbQvR7N5fpwWer2+D0Vamycsqi1/H2FM9D7t90JOwMZ8 1rc04KdWqoE3YC6kJlXQTj77+lYDJCx/smvrIC/df3KZane4/I7FflfqAtsO++VehU pSJfjw7uTgiXOSqKl6s+7RhV9awmAXgVT5c1ph1I=
Date: Fri, 08 May 2020 19:32:27 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2SXIX3XEYRS6HQDTN4YH3TXEVBNHHCJKJEKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3639/626091587@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3639@github.com>
References: <quicwg/base-drafts/issues/3639@github.com>
Subject: Re: [quicwg/base-drafts] Server's first flight should be capped by INITCWND (#3639)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb6163bcfab8_1e943f97f1ccd968103567"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hy_GgOFmpKk_fX2wL8LBNyOWAIA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 09 May 2020 02:32:31 -0000

----==_mimepart_5eb6163bcfab8_1e943f97f1ccd968103567
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree it should be limited to INITCWND.

Here's how I read(and intended to write) the text:
 1) Congestion control always applies, because I don't know of anywhere we say otherwise.
 2) In addition, prior to address validation, the amplification limit of 3x also applies on the server side.

Init CWND section: https://github.com/quicwg/base-drafts/blob/master/draft-ietf-quic-recovery.md#initial-and-minimum-congestion-window-initial-cwnd

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626091587
----==_mimepart_5eb6163bcfab8_1e943f97f1ccd968103567
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I agree it should be limited to INITCWND.</p>
<p>Here's how I read(and intended to write) the text:</p>
<ol>
<li>Congestion control always applies, because I don't know of anywhere we say otherwise.</li>
<li>In addition, prior to address validation, the amplification limit of 3x also applies on the server side.</li>
</ol>
<p>Init CWND section: <a href="https://github.com/quicwg/base-drafts/blob/master/draft-ietf-quic-recovery.md#initial-and-minimum-congestion-window-initial-cwnd">https://github.com/quicwg/base-drafts/blob/master/draft-ietf-quic-recovery.md#initial-and-minimum-congestion-window-initial-cwnd</a></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626091587">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5GIC7LIUDEKTEQQYDRQS6DXANCNFSM4M4SWIFQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK55CT3AHSEEMTQELE3RQS6DXA5CNFSM4M4SWIF2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVIWMQY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626091587",
"url": "https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626091587",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb6163bcfab8_1e943f97f1ccd968103567--


From nobody Fri May  8 21:07:11 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 1689B3A00C1 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 21:07:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 cQploes4c97o for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 21:07:08 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7B2583A00C0 for <quic-issues@ietf.org>; Fri,  8 May 2020 21:07:08 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 3605D2823A9 for <quic-issues@ietf.org>; Fri,  8 May 2020 21:07:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588997227; bh=+MPjnNxxTHCO81uBRoQJkkw0K1ovI3hCARa1Sc430oo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=z7Q2Z3yixl4U08AUVSfsr8Ica8kO8KS/MX2M/hhIqPvgq7zLv8Bdr/25MsqHUkx16 y1hdI4aSZu5hI0kn9h7HOcxhQm5wWBcA9ngjKc3lcdiRYcN+2ULbR7Tcw5qs/RphK7 JuODkrocCCOl137is3twhESBvo7iiTobYtl4z9p8=
Date: Fri, 08 May 2020 21:07:07 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6YOHQWG6LFQUGHB4N4YIGWXEVBNHHCJKJEKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3639/626101974@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3639@github.com>
References: <quicwg/base-drafts/issues/3639@github.com>
Subject: Re: [quicwg/base-drafts] Server's first flight should be capped by INITCWND (#3639)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb62c6b24d21_77fc3fe8b2ccd9601687ca"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Sg96bvnqqcLd1dFF0Vm_i3Ex3Wo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 09 May 2020 04:07:11 -0000

----==_mimepart_5eb62c6b24d21_77fc3fe8b2ccd9601687ca
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr 
>> Server cannot rely on CC until the client's address is validated, because an attacker might spoof Initial ACKs.
> 
> Just to clarify, only an on-path attacker can do this, right?
 
An off-path attacker can do that. An attacker can easily guess the packet number that the server uses, and spoof an ACK without actually receiving a packet from the server. Note also that there is no guarantee that there would be enough entropy in server-generated CID, even though a server can generate CIDs in such a manner. That's why we postpone the validation of the path until the server receives a Handshake packet.

@ianswett I think I agree with you that the limit can be defined as `min(3x, CC)`.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626101974
----==_mimepart_5eb62c6b24d21_77fc3fe8b2ccd9601687ca
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ekr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ekr">@ekr</a></p>
<blockquote>
<blockquote>
<p>Server cannot rely on CC until the client's address is validated, because an attacker might spoof Initial ACKs.</p>
</blockquote>
<p>Just to clarify, only an on-path attacker can do this, right?</p>
</blockquote>
<p>An off-path attacker can do that. An attacker can easily guess the packet number that the server uses, and spoof an ACK without actually receiving a packet from the server. Note also that there is no guarantee that there would be enough entropy in server-generated CID, even though a server can generate CIDs in such a manner. That's why we postpone the validation of the path until the server receives a Handshake packet.</p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ianswett/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</a> I think I agree with you that the limit can be defined as <code>min(3x, CC)</code>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626101974">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7TLXDLMCJ7SM6CTTLRQTJGXANCNFSM4M4SWIFQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7YR2YO7EEIE2A3QKDRQTJGXA5CNFSM4M4SWIF2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVIY5VQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626101974",
"url": "https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626101974",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb62c6b24d21_77fc3fe8b2ccd9601687ca--


From nobody Fri May  8 21:10:37 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 9A2493A00D3 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 21:10:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 oAY04DvcDQc6 for <quic-issues@ietfa.amsl.com>; Fri,  8 May 2020 21:10:34 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AFB7A3A00D2 for <quic-issues@ietf.org>; Fri,  8 May 2020 21:10:33 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 3D7E6C60D01 for <quic-issues@ietf.org>; Fri,  8 May 2020 21:10:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1588997432; bh=6n681VXX+dH9g/5TFxJ3+n0W9dltqnI8fEqNa2XxKhE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nv17GP0MrP23Bpi9XTquCkU9oXspR4/6eosjyefU37U+qpy48lfOT+xbi8IwWbC15 nnFPXXs3ks/firh1tFuB3T+vAjeh7QcCILp5cc7d8XS97mfGNp/FOT1ZIJAbxZuXvP zSpUMPnbQ31LpiLH5Selr+9qVbvEUXhYp6mutg2s=
Date: Fri, 08 May 2020 21:10:32 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4OJMKOEHH2CY23OUV4YIHDREVBNHHCJKIRDE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3638/626102272@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3638@github.com>
References: <quicwg/base-drafts/issues/3638@github.com>
Subject: Re: [quicwg/base-drafts] max_udp_payload_size during the handshake (#3638)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb62d382e3ba_606b3fbbfc4cd9643718b3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/36NjyaRDRUWq7gyfmzO019YKvug>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 09 May 2020 04:10:36 -0000

----==_mimepart_5eb62d382e3ba_606b3fbbfc4cd9643718b3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This is a good issue.

If we are to provide guidance, my preference goes to stating that an endpoint should not send datagrams that are larger than its first flight, unless that endpoint implements PMTUD.

The rationale is that we should avoid packets starting to get dropped mid-connection.

First flights getting dropped is fine, because clients can do happy-eyeballing. Even if they only use QUIC, not starting a transaction is much better than a transaction inflight getting lost.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3638#issuecomment-626102272
----==_mimepart_5eb62d382e3ba_606b3fbbfc4cd9643718b3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>This is a good issue.</p>
<p>If we are to provide guidance, my preference goes to stating that an endpoint should not send datagrams that are larger than its first flight, unless that endpoint implements PMTUD.</p>
<p>The rationale is that we should avoid packets starting to get dropped mid-connection.</p>
<p>First flights getting dropped is fine, because clients can do happy-eyeballing. Even if they only use QUIC, not starting a transaction is much better than a transaction inflight getting lost.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3638#issuecomment-626102272">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6XBU4KREXGM5PG6VDRQTJTRANCNFSM4M4SN3PA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZEBFYB6KWYZ4GOW63RQTJTRA5CNFSM4M4SN3PKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVIZAAA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3638#issuecomment-626102272",
"url": "https://github.com/quicwg/base-drafts/issues/3638#issuecomment-626102272",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb62d382e3ba_606b3fbbfc4cd9643718b3--


From nobody Sun May 10 13:06:46 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 E1A413A0B75 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 13:06:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 Be3TQmUBuJe2 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 13:06:06 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EB79B3A0B87 for <quic-issues@ietf.org>; Sun, 10 May 2020 13:06:05 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 011272C0ED0 for <quic-issues@ietf.org>; Sun, 10 May 2020 13:06:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589141164; bh=KKhSZ6bNnz5DHtNOPc1epbItPhssGaxhHGQd3gHh8wY=; h=Date:From:To:Subject:From; b=Ib+mfemlp5dAcEe9kJYtS+maIa6EhNigKB/s5nxicruQUfqMWixf1GF0O+3k0vBTD 5kgumviLzzZ1sG2ysJLeeAWiO5Z8tzGSxFpKqXeMW83jMjV7/eEvCfKHFq+/HDlIdt hgZK9niR1lEsf93TnG3Sx2GACyRz1NIOXWOztyng=
Date: Sun, 10 May 2020 13:06:03 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-anti-amplification/000000-010574@github.com>
Subject: [quicwg/base-drafts] 010574: Limit sending by the anti-amplification factor
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iogsGy9Y7iqf8mBmrnMvSjmaPOc>
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: Sun, 10 May 2020 20:06:11 -0000

  Branch: refs/heads/ianswett-anti-amplification
  Home:   https://github.com/quicwg/base-drafts
  Commit: 010574ee63c0cc9af3ed84758e91e13beffe55bf
      https://github.com/quicwg/base-drafts/commit/010574ee63c0cc9af3ed84758e91e13beffe55bf
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Limit sending by the anti-amplification factor

Fixes #3639



From nobody Sun May 10 13:06:59 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 2B1B03A0B77 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 13:06:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KyGvfCIL9utd for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 13:06:55 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 380EA3A0B7C for <quic-issues@ietf.org>; Sun, 10 May 2020 13:06:55 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 5B3696E06CA for <quic-issues@ietf.org>; Sun, 10 May 2020 13:06:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589141214; bh=RoKa9i6r5oQ2i6yp+4FCXlKrlIJE0EXovej6GP62uL0=; h=Date:From:To:Subject:From; b=JILYgxkoDX9HUyHCpP0wi3nygUAUmIpoAkD90byL6a6YE4dVdQC4tWtQlxmp9skQK /k5sPTBYDylrjlkJTz77eVCGQr5joUWMsMFaXMRX7ZaXu85YLaGSA4ZqeRgYaO1uGc 3hRmqZmNQXJ8IzZz9qkhtuEttddu67go3SCjLRLM=
Date: Sun, 10 May 2020 13:06:54 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a6b779-f2f2b9@github.com>
Subject: [quicwg/base-drafts] f2f2b9: Script updating gh-pages from 010574ee. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cFwUsuMxZRvWSmEwVbJLhSO8ufA>
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: Sun, 10 May 2020 20:06:58 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f2f2b9ebbc1171bd8d6d8bd0867eb1f15d7b2407
      https://github.com/quicwg/base-drafts/commit/f2f2b9ebbc1171bd8d6d8bd0867eb1f15d7b2407
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    A ianswett-anti-amplification/draft-ietf-quic-http.html
    A ianswett-anti-amplification/draft-ietf-quic-http.txt
    A ianswett-anti-amplification/draft-ietf-quic-invariants.html
    A ianswett-anti-amplification/draft-ietf-quic-invariants.txt
    A ianswett-anti-amplification/draft-ietf-quic-qpack.html
    A ianswett-anti-amplification/draft-ietf-quic-qpack.txt
    A ianswett-anti-amplification/draft-ietf-quic-recovery.html
    A ianswett-anti-amplification/draft-ietf-quic-recovery.txt
    A ianswett-anti-amplification/draft-ietf-quic-tls.html
    A ianswett-anti-amplification/draft-ietf-quic-tls.txt
    A ianswett-anti-amplification/draft-ietf-quic-transport.html
    A ianswett-anti-amplification/draft-ietf-quic-transport.txt
    A ianswett-anti-amplification/index.html
    M index.html
    R jri/ack-ranges/draft-ietf-quic-http.html
    R jri/ack-ranges/draft-ietf-quic-http.txt
    R jri/ack-ranges/draft-ietf-quic-invariants.html
    R jri/ack-ranges/draft-ietf-quic-invariants.txt
    R jri/ack-ranges/draft-ietf-quic-qpack.html
    R jri/ack-ranges/draft-ietf-quic-qpack.txt
    R jri/ack-ranges/draft-ietf-quic-recovery.html
    R jri/ack-ranges/draft-ietf-quic-recovery.txt
    R jri/ack-ranges/draft-ietf-quic-tls.html
    R jri/ack-ranges/draft-ietf-quic-tls.txt
    R jri/ack-ranges/draft-ietf-quic-transport.html
    R jri/ack-ranges/draft-ietf-quic-transport.txt
    R jri/ack-ranges/index.html
    R jri/cids/draft-ietf-quic-http.html
    R jri/cids/draft-ietf-quic-http.txt
    R jri/cids/draft-ietf-quic-invariants.html
    R jri/cids/draft-ietf-quic-invariants.txt
    R jri/cids/draft-ietf-quic-qpack.html
    R jri/cids/draft-ietf-quic-qpack.txt
    R jri/cids/draft-ietf-quic-recovery.html
    R jri/cids/draft-ietf-quic-recovery.txt
    R jri/cids/draft-ietf-quic-tls.html
    R jri/cids/draft-ietf-quic-tls.txt
    R jri/cids/draft-ietf-quic-transport.html
    R jri/cids/draft-ietf-quic-transport.txt
    R jri/cids/index.html
    R jri/fix-normative/draft-ietf-quic-http.html
    R jri/fix-normative/draft-ietf-quic-http.txt
    R jri/fix-normative/draft-ietf-quic-invariants.html
    R jri/fix-normative/draft-ietf-quic-invariants.txt
    R jri/fix-normative/draft-ietf-quic-qpack.html
    R jri/fix-normative/draft-ietf-quic-qpack.txt
    R jri/fix-normative/draft-ietf-quic-recovery.html
    R jri/fix-normative/draft-ietf-quic-recovery.txt
    R jri/fix-normative/draft-ietf-quic-tls.html
    R jri/fix-normative/draft-ietf-quic-tls.txt
    R jri/fix-normative/draft-ietf-quic-transport.html
    R jri/fix-normative/draft-ietf-quic-transport.txt
    R jri/fix-normative/index.html
    R kramdown-updates/draft-ietf-quic-http.html
    R kramdown-updates/draft-ietf-quic-http.txt
    R kramdown-updates/draft-ietf-quic-invariants.html
    R kramdown-updates/draft-ietf-quic-invariants.txt
    R kramdown-updates/draft-ietf-quic-qpack.html
    R kramdown-updates/draft-ietf-quic-qpack.txt
    R kramdown-updates/draft-ietf-quic-recovery.html
    R kramdown-updates/draft-ietf-quic-recovery.txt
    R kramdown-updates/draft-ietf-quic-tls.html
    R kramdown-updates/draft-ietf-quic-tls.txt
    R kramdown-updates/draft-ietf-quic-transport.html
    R kramdown-updates/draft-ietf-quic-transport.txt
    R kramdown-updates/index.html

  Log Message:
  -----------
  Script updating gh-pages from 010574ee. [ci skip]



From nobody Sun May 10 13:07:08 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 0E12B3A0B77 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 13:07:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 77Ws0S_o6bmM for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 13:07:04 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CFBDD3A0B76 for <quic-issues@ietf.org>; Sun, 10 May 2020 13:07:04 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 11A69C60C2A for <quic-issues@ietf.org>; Sun, 10 May 2020 13:07:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589141224; bh=GnckCh960FaUHhiPF990ALT5kX2DiUKyA0aZesOSXGk=; h=Date:From:To:Subject:From; b=iQOQDjckcfmobZ3APAnWxXjZNJozroV33RQLVxtFhBQ4i8v1O3kQdnpp4EDwu1cka Qo5c5d1UZoDGR73l5q8pnoiUQ+XekXWpXfEs5JmD9qVxRc9yrl3SvipdJ/RdV4yfVe NBbwtcJS4DwLGHRKS4RV/F1HeLc4FO1u7ckvNkHQ=
Date: Sun, 10 May 2020 13:07:03 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f2f2b9-aa2cc6@github.com>
Subject: [quicwg/base-drafts] aa2cc6: Script updating archive at 2020-05-10T20:06:46Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Vj5ZY8Xo1lIMeZ1xXyLf0seW_BA>
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: Sun, 10 May 2020 20:07:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: aa2cc67140f26bac14e0251850217a0fdaa2736c
      https://github.com/quicwg/base-drafts/commit/aa2cc67140f26bac14e0251850217a0fdaa2736c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-10T20:06:46Z. [ci skip]



From nobody Sun May 10 13:07:38 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 9F1473A0B78 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 13:07:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.696
X-Spam-Level: 
X-Spam-Status: No, score=-1.696 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 tmbXmlgf2mJD for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 13:07:34 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B89733A0B76 for <quic-issues@ietf.org>; Sun, 10 May 2020 13:07:34 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id ED249A07DF for <quic-issues@ietf.org>; Sun, 10 May 2020 13:07:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589141253; bh=DIeh4xTuYRam95++CXjYqiTmP815fNrF9wPcG5mfT/g=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=f9IQNlxqodhG3oaH1gscVDQL6MLlch+GpOUOE2A3yw2vA5mBhNuuvrfBbnn/1hrac 3BIoga/PKsolfTFMJXyus0Mv6xbzKs+fV2crz6UO1X33Sr55qbf2BMQzofOvX4rWTq FpB90jT3cpmq1RGnsctG9UzUtRiV7mVrGopEZcNg=
Date: Sun, 10 May 2020 13:07:33 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2OKPJBD25G6LCOAHF4YRAALEVBNHHCJL2E7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3640@github.com>
Subject: [quicwg/base-drafts] Limit sending by the anti-amplification factor (#3640)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb85f05dcca9_3e3c3f7fba4cd960139467d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_gtb1EDLo1JcWNbGGiGiMzQP8HM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 10 May 2020 20:07:37 -0000

----==_mimepart_5eb85f05dcca9_3e3c3f7fba4cd960139467d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Clarifies the impact of the anti-amplification factor on congestion control.

Fixes #3639
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3640

-- Commit Summary --

  * Limit sending by the anti-amplification factor

-- File Changes --

    M draft-ietf-quic-recovery.md (6)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3640.patch
https://github.com/quicwg/base-drafts/pull/3640.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3640

----==_mimepart_5eb85f05dcca9_3e3c3f7fba4cd960139467d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Clarifies the impact of the anti-amplification factor on congestion control.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3639.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="615064662" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3639" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3639/hovercard" href="https://github.com/quicwg/base-drafts/issues/3639">#3639</a></p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3640'>https://github.com/quicwg/base-drafts/pull/3640</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Limit sending by the anti-amplification factor</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3640/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (6)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3640.patch'>https://github.com/quicwg/base-drafts/pull/3640.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3640.diff'>https://github.com/quicwg/base-drafts/pull/3640.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3640">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6LAHGLARHV3CTUEPLRQ4CQLANCNFSM4M5MJEGA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK34WCD5DEALQUBEFCDRQ4CQLA5CNFSM4M5MJEGKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JFPIT5A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3640",
"url": "https://github.com/quicwg/base-drafts/pull/3640",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb85f05dcca9_3e3c3f7fba4cd960139467d--


From nobody Sun May 10 13:08:45 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 922013A0B78 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 13:08:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 oqJGj2KkBpjs for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 13:08:42 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 563DF3A0B77 for <quic-issues@ietf.org>; Sun, 10 May 2020 13:08:42 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 8AF1A2C19C6 for <quic-issues@ietf.org>; Sun, 10 May 2020 13:08:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589141321; bh=jVvMdhd9y+ipmlVwVUdHRZusWj9w5kcmiTIECm7ROiQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TngntcoUYCF6k/4iDAycExYXVAd0nRRo1B8BSpHRRkYBGz+bcBtrVXi+YMxd8dfEZ 3PcZHH0eyEDGp8CKHIEn1KkLRjf+bbds44p6Tq6e0TE/QLg/lJXEPICCgwXJy/oQxZ CG5kwGQGVglttNnNWLHNBkPfqg8Ke4Z+IshcKHSs=
Date: Sun, 10 May 2020 13:08:41 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK526AMZOVLEUBOPO6F4YRAETEVBNHHCJKJEKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3639/626382259@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3639@github.com>
References: <quicwg/base-drafts/issues/3639@github.com>
Subject: Re: [quicwg/base-drafts] Server's first flight should be capped by INITCWND (#3639)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb85f497be73_2da63fd13f4cd95c208736b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/V9O4snPbUYgSiXCOurQpMDB7ioY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 10 May 2020 20:08:44 -0000

----==_mimepart_5eb85f497be73_2da63fd13f4cd95c208736b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks @kazuho PTAL at PR #3640 and see if that clarifies this issue or if something else is necessary.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626382259
----==_mimepart_5eb85f497be73_2da63fd13f4cd95c208736b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Thanks <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/kazuho/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a> PTAL at PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="615466234" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3640" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3640/hovercard" href="https://github.com/quicwg/base-drafts/pull/3640">#3640</a> and see if that clarifies this issue or if something else is necessary.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626382259">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2DQ6BP6TW2M2NGTQDRQ4CUTANCNFSM4M4SWIFQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7JTT37JLUULCRL5CDRQ4CUTA5CNFSM4M4SWIF2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVK5LMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626382259",
"url": "https://github.com/quicwg/base-drafts/issues/3639#issuecomment-626382259",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb85f497be73_2da63fd13f4cd95c208736b--


From nobody Sun May 10 13:33:35 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 01C913A0BBE for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 13:33:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.48
X-Spam-Level: 
X-Spam-Status: No, score=-1.48 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 oCq1J0--zl3Q for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 13:33:23 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9EEAE3A0BA9 for <quic-issues@ietf.org>; Sun, 10 May 2020 13:33:23 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id CC4AF6E0768 for <quic-issues@ietf.org>; Sun, 10 May 2020 13:33:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589142802; bh=+Q4Wo+W0H0BhecuZ5xROTNtIOg49iko8V9Z7Hvbf2hQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0J2cnB/+RUsSXWgvo3UH2rtuiSSuhxkP9NiF242zQ6YLCn+xW589SN/S6/LDSj3IM R4O6lwWznP1QTHU+DltfQ9xVwK4PSLUvnhu2PzX0bg9hrVkqIscppZzhIcnXLCZG4h UR1YOZNPHMPwQQ7yCCoxrgTEUOo++0+UURvctbcw=
Date: Sun, 10 May 2020 13:33:22 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYEA4R4AMMNPPFIMMF4YRDBFEVBNHHCJL2E7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3640/review/408779129@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3640@github.com>
References: <quicwg/base-drafts/pull/3640@github.com>
Subject: Re: [quicwg/base-drafts] Limit sending by the anti-amplification factor (#3640)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb86512bc52e_57fc3f845becd9601159729"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AdY2O24c0T1vLwwvV-rWYCsG144>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 10 May 2020 20:33:33 -0000

----==_mimepart_5eb86512bc52e_57fc3f845becd9601159729
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho approved this pull request.

Thank you for the quick PR.

I've stated my slight preference, but the text looks already :+1: to me.

> @@ -752,6 +752,12 @@ twice the maximum datagram size. This follows the analysis and recommendations
 in {{?RFC6928}}, increasing the byte limit to account for the smaller 8 byte
 overhead of UDP compared to the 20 byte overhead for TCP.
 
+Prior to validating the client's address, the server can also be limited by

How about saying "can be limited further"? I think that might better clarify that it is a `min` of the two.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3640#pullrequestreview-408779129
----==_mimepart_5eb86512bc52e_57fc3f845becd9601159729
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@kazuho</b> approved this pull request.</p>=0D
=0D
<p>Thank you for the quick PR.</p>=0D
<p>I've stated my slight preference, but the text looks already <g-emoji =
class=3D"g-emoji" alias=3D"+1" fallback-src=3D"https://github.githubasset=
s.com/images/icons/emoji/unicode/1f44d.png">=F0=9F=91=8D</g-emoji> to me.=
</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3640#discussi=
on_r422696433">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -752,6 +752,12 @@ twice the maximum dat=
agram size. This follows the analysis and recommendations=0D
 in {{?RFC6928}}, increasing the byte limit to account for the smaller 8 =
byte=0D
 overhead of UDP compared to the 20 byte overhead for TCP.=0D
 =0D
+Prior to validating the client&#39;s address, the server can also be lim=
ited by=0D
</pre>=0D
<p>How about saying "can be limited further"? I think that might better c=
larify that it is a <code>min</code> of the two.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3640#pullrequestreview-408779129">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K25ESUIKJH6ULYZ2PLRQ4FRFANCNFSM4M5MJEGA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKYPLANTAGUST6EW6T3RQ4FRFA5CNFSM4=
M5MJEGKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODBOXS6I.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3640#pullrequestrev=
iew-408779129",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3640#pullrequestreview=
-408779129",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb86512bc52e_57fc3f845becd9601159729--


From nobody Sun May 10 14:26:15 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 C57A53A0BE8 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 14:26:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.551
X-Spam-Level: 
X-Spam-Status: No, score=-1.551 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Z1gXW1yhyOZH for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 14:26:10 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5F7203A0BDA for <quic-issues@ietf.org>; Sun, 10 May 2020 14:26:10 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 027B08C00B0 for <quic-issues@ietf.org>; Sun, 10 May 2020 14:26:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589145969; bh=rUcfPA05PlOaLY7OBUdJxA29LKpdNiRogqxtysv6hcQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YNpT8H/LLnmgHip5BiWvDk5YrJ3i8lPQJiJhdNsLb/mi8nJ7frzyxEHzL2ZDl0qbG 8jiVo1H2x+F6uKT56WUQMEcQCWh2efOgFGt1S8oJvc+XJ4pqWupjlhJjgYUQytI4U8 vhItFQUg3eZv6H1gy7wSN7OpCVqn/u77rCGnajeU=
Date: Sun, 10 May 2020 14:26:08 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3MCTFKOASQ54QARX54YRJHBEVBNHHCJL2E7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3640/review/408783244@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3640@github.com>
References: <quicwg/base-drafts/pull/3640@github.com>
Subject: Re: [quicwg/base-drafts] Limit sending by the anti-amplification factor (#3640)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb87170e6fa6_70883f7fba4cd96017701de"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/I33SosSPDqAzwU8XqUNqn5HcYiY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 10 May 2020 21:26:13 -0000

----==_mimepart_5eb87170e6fa6_70883f7fba4cd96017701de
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> @@ -752,6 +752,12 @@ twice the maximum datagram size. This follows the analysis and recommendations
 in {{?RFC6928}}, increasing the byte limit to account for the smaller 8 byte
 overhead of UDP compared to the 20 byte overhead for TCP.
 
+Prior to validating the client's address, the server can also be limited by

SGTM

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3640#discussion_r422702596
----==_mimepart_5eb87170e6fa6_70883f7fba4cd96017701de
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3640#discussion_r422702596">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -752,6 +752,12 @@ twice the maximum datagram size. This follows the analysis and recommendations
 in {{?RFC6928}}, increasing the byte limit to account for the smaller 8 byte
 overhead of UDP compared to the 20 byte overhead for TCP.
 
+Prior to validating the client&#39;s address, the server can also be limited by
</pre>
<p>SGTM</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3640#discussion_r422702596">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6NNMAVQKSRJV6VEZTRQ4LXBANCNFSM4M5MJEGA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5HDNWUN66EDKW3DELRQ4LXBA5CNFSM4M5MJEGKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBOYTDA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3640#discussion_r422702596",
"url": "https://github.com/quicwg/base-drafts/pull/3640#discussion_r422702596",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb87170e6fa6_70883f7fba4cd96017701de--


From nobody Sun May 10 14:26:34 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 E53663A0BEA for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 14:26:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.097
X-Spam-Level: 
X-Spam-Status: No, score=-2.097 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 kLNxa9PMvuNk for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 14:26:30 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9AF983A0BDA for <quic-issues@ietf.org>; Sun, 10 May 2020 14:26:30 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id E038C6A03B2 for <quic-issues@ietf.org>; Sun, 10 May 2020 14:26:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589145989; bh=CmJ1MnrxSOhTNSI9q31TM3DCFTWvGiYm32qBteaqgsg=; h=Date:From:To:Subject:From; b=TED5n7pC5PjQCuCwhEX8EdwXeQ5UPDtnIRiBROv577QoVaILSL45DQJkrwe9HLYjB vLkp9Aq17J7Dhip54dS5uSUqXYVlMCrk+c2yX7+yBaa+wCysAEMaolcN8vKNtNcne+ D4B4MUIiw53vK8pT5e2ghQwtWG3nSIw2+Mvbp7rg=
Date: Sun, 10 May 2020 14:26:29 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-anti-amplification/010574-c8fa3f@github.com>
Subject: [quicwg/base-drafts] c8fa3f: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LXcRbK6jPwGQuE1j7d8S9f9ICVQ>
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: Sun, 10 May 2020 21:26:32 -0000

  Branch: refs/heads/ianswett-anti-amplification
  Home:   https://github.com/quicwg/base-drafts
  Commit: c8fa3f8b1a97d520b177470fe2f57451c875c91c
      https://github.com/quicwg/base-drafts/commit/c8fa3f8b1a97d520b177470fe2f57451c875c91c
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Sun May 10 14:26:44 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 5CCA93A0BE2 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 14:26:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.55
X-Spam-Level: 
X-Spam-Status: No, score=-1.55 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 pRmVW65BpAss for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 14:26:40 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4ED093A0BDA for <quic-issues@ietf.org>; Sun, 10 May 2020 14:26:40 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 06E4F6E08AA for <quic-issues@ietf.org>; Sun, 10 May 2020 14:26:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589145998; bh=98DkilLIC/Lkzlkw3X72ax3fiTRjwSGPsguGo2cagHo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cxjqRFV3yicZuSWK3sWguiIC5IGM/8/tGVpNe3W0TUxrONBH+BrvxL/7+HOHkklTm rQy+S7n36WEm9t1TvUr1tHiIrUbz0gfqwgwyM8wkJ1vqDk6vM3O082W97PtMIBgVI2 iykmyvHpSnF7innL8hAOECfqVE3LgeMTQgDp4o88=
Date: Sun, 10 May 2020 14:26:37 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3640/push/5050097785@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3640@github.com>
References: <quicwg/base-drafts/pull/3640@github.com>
Subject: Re: [quicwg/base-drafts] Limit sending by the anti-amplification factor (#3640)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb8718dec385_583a3fe86b4cd964393927"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EIC7oRKqkDtEJ5Uot7RvCRpfOTk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 10 May 2020 21:26:44 -0000

----==_mimepart_5eb8718dec385_583a3fe86b4cd964393927
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

c8fa3f8b1a97d520b177470fe2f57451c875c91c  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3640/files/010574ee63c0cc9af3ed84758e91e13beffe55bf..c8fa3f8b1a97d520b177470fe2f57451c875c91c

----==_mimepart_5eb8718dec385_583a3fe86b4cd964393927
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/c8fa3f8b1a97d520b177470fe2f57451c875c91c">c8fa3f8</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3640/files/010574ee63c0cc9af3ed84758e91e13beffe55bf..c8fa3f8b1a97d520b177470fe2f57451c875c91c">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZPRXHXRX5FLGBLCZLRQ4LY3ANCNFSM4M5MJEGA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZNX4SXRNYJMUWW5LLRQ4LY3A5CNFSM4M5MJEGKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTKNZXGM3TAMCQOVZWQIZVGA2TAMBZG43TQNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3640/files/010574ee63c0cc9af3ed84758e91e13beffe55bf..c8fa3f8b1a97d520b177470fe2f57451c875c91c",
"url": "https://github.com/quicwg/base-drafts/pull/3640/files/010574ee63c0cc9af3ed84758e91e13beffe55bf..c8fa3f8b1a97d520b177470fe2f57451c875c91c",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb8718dec385_583a3fe86b4cd964393927--


From nobody Sun May 10 14:27:32 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 189863A0BDA for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 14:27:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 hlSru5e4kDzu for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 14:27:28 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D03263A0BE2 for <quic-issues@ietf.org>; Sun, 10 May 2020 14:27:28 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 2A5C61C04A1 for <quic-issues@ietf.org>; Sun, 10 May 2020 14:27:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589146047; bh=y7tQCyUh6FqMnzKxNaP16tlqJhdmOLBuj/B9WObeqV8=; h=Date:From:To:Subject:From; b=djzltPz1rNBbuBl5/kzCYdKZK+goli71RCFunOJ5X5ypov8Cvlq9mRdyObBvebg/l MwQlgTW1xoLy5ZLWVfaC1Bp70PqDe46VSmlsZiCRX5/VbFoaWEHDuR7ESIvxtzvUgZ aKvAaMgW3SCELl71JN47DRcw2lXeLx+AKh5k1QVA=
Date: Sun, 10 May 2020 14:27:27 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/aa2cc6-ebffbc@github.com>
Subject: [quicwg/base-drafts] ebffbc: Script updating gh-pages from c8fa3f8b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eg3-oiFbxgsecXtdod3fm9U7kFc>
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: Sun, 10 May 2020 21:27:30 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ebffbc330330854579b9f4c8edfe057f76c15844
      https://github.com/quicwg/base-drafts/commit/ebffbc330330854579b9f4c8edfe057f76c15844
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M ianswett-anti-amplification/draft-ietf-quic-recovery.html
    M ianswett-anti-amplification/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c8fa3f8b. [ci skip]



From nobody Sun May 10 16:18:39 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 4D9143A0C1F for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:18:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 nqhOKrSttEd0 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:18:35 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 428CB3A0C2A for <quic-issues@ietf.org>; Sun, 10 May 2020 16:18:35 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 1F1438C00EE for <quic-issues@ietf.org>; Sun, 10 May 2020 16:18:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589152713; bh=R9Ss5wFArEfv2JIaFc1mGPEXpc8uj5GdpRDa8HcB7tE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gCucx6ktcRXcZvtqyIuwI98Un0aSYqnpHuGxBzpWClptVRn1q1JwpG+TBk0Q4RqCo YvvL3vcpkp3mXDLnywNMyAAh9ERl9Bk5meYixXiCG9zYHGKggjbpmY72JiOh1IyqvE FcClpTVinTlK/3zwOUNEFWBlLZcsW+FYMYGXsvog=
Date: Sun, 10 May 2020 16:18:33 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYXHZ3H2OHWX7MUEZV4YRWMTEVBNHHCJL2E7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3640/review/408791630@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3640@github.com>
References: <quicwg/base-drafts/pull/3640@github.com>
Subject: Re: [quicwg/base-drafts] Limit sending by the anti-amplification factor (#3640)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb88bc9f73b_1d653fea4facd96483706c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_moCl5XbFIgbg7H_YTlcrkfXPoI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 10 May 2020 23:18:37 -0000

----==_mimepart_5eb88bc9f73b_1d653fea4facd96483706c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3640#pullrequestreview-408791630
----==_mimepart_5eb88bc9f73b_1d653fea4facd96483706c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3640#pullrequestreview-408791630">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK24PHDRNGI2EE7S543RQ4Y4TANCNFSM4M5MJEGA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6DBFWQ5N2QFGUXXPDRQ4Y4TA5CNFSM4M5MJEGKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBO2UTQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3640#pullrequestreview-408791630",
"url": "https://github.com/quicwg/base-drafts/pull/3640#pullrequestreview-408791630",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb88bc9f73b_1d653fea4facd96483706c--


From nobody Sun May 10 16:23:07 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 4EC6E3A0BFC for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:23:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.552
X-Spam-Level: 
X-Spam-Status: No, score=-6.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Q1YXlTxZYdLt for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:23:04 -0700 (PDT)
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D39673A0C79 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:23:03 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 4C6A1260196 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:23:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589152983; bh=xFgUBVt5skkp9/P7seHKlq42c+Es6IhdlJl/9ooishE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iUvyeK+zL5IIE9ARSIoiB+hPc1whi5YXT9Z0kl5Im3jXPNQQt2BrkHvXTJ0gzDMsF dEPznHTnt00q/LUFD4xFDglafTUom21x4u//4CUB2G4Bw2Yp/LuL3yYDmFpMmoEFDV ESfJ7gdBdO+7XvMTXh173PPONJBDL5UOBCu/cVZc=
Date: Sun, 10 May 2020 16:23:03 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2UDZ7SFTC45XOD3254YRW5PEVBNHHCJKIRDE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3638/626405550@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3638@github.com>
References: <quicwg/base-drafts/issues/3638@github.com>
Subject: Re: [quicwg/base-drafts] max_udp_payload_size during the handshake (#3638)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb88cd77338_6f7e3fe5b24cd95c89812f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EFoTy_bjh7TMvHqCQkc0n1MIYjI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 10 May 2020 23:23:05 -0000

----==_mimepart_5eb88cd77338_6f7e3fe5b24cd95c89812f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm with @kazuho here.  As a client, if you send at 1350 and those are all dropped, that reduces to "the path doesn't support UDP".  The real risk is if you send at 1200 and then increase that later without first probing.

I'm happy to take this as editorial, but would prefer to confirm that no one wants a substantive change.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3638#issuecomment-626405550
----==_mimepart_5eb88cd77338_6f7e3fe5b24cd95c89812f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I'm with <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/kazuho/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a> here.  As a client, if you send at 1350 and those are all dropped, that reduces to "the path doesn't support UDP".  The real risk is if you send at 1200 and then increase that later without first probing.</p>
<p>I'm happy to take this as editorial, but would prefer to confirm that no one wants a substantive change.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3638#issuecomment-626405550">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5XZEG7WH47NGBJJ5TRQ4ZNPANCNFSM4M4SN3PA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6ALFT2NYLNIMXL4GDRQ4ZNPA5CNFSM4M4SN3PKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVLDBLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3638#issuecomment-626405550",
"url": "https://github.com/quicwg/base-drafts/issues/3638#issuecomment-626405550",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb88cd77338_6f7e3fe5b24cd95c89812f--


From nobody Sun May 10 16:24:46 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 77F283A0C0A for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:24:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 vaMUquvORrQR for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:24:43 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 243E53A0C08 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:24:42 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id CBF896E0022 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:24:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589153081; bh=aEteNAL/2T4D4Py2pdo93APSBXKchdP+Wv3y2Lu1vGQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=q/xg9D0ZfJOz04oOq9R37io3duPrCtOgPJjLVEfWR9tFFrvpEyzjL7OHL2B9I/2m1 c9MXzgBiJ1oj7uMm16n8d5YJ4058PYuEqClpQO4XeYLvCYPnWeVENEFoKM9+7w4Ldb XxrS5arsF9sEijRR4AiCjB0NVhzAeIuEnT61rMIg=
Date: Sun, 10 May 2020 16:24:41 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZS3WYO2VBHQD7C3AN4YRXDTEVBNHHCIEMPUI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3595/review/408792238@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3595@github.com>
References: <quicwg/base-drafts/pull/3595@github.com>
Subject: Re: [quicwg/base-drafts] Prohibit TLS 1.3 middlebox compatibility mode (#3595)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb88d39bbeed_278d3fd7ff4cd968159204d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xfA_XeQAZakpaVS7zbRHETvvoqE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 10 May 2020 23:24:45 -0000

----==_mimepart_5eb88d39bbeed_278d3fd7ff4cd968159204d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -213,6 +209,11 @@ own key update mechanism {{key-update}}.
 ~~~
 {: #tls-full title="TLS Handshake with 0-RTT"}
 
+{{tls-full}} omits the EndOfEarlyData message, which is not used in QUIC; see
+{{remove-eoed}}. Likewise, neither ChangeCipherSpec nor KeyUpdate messages are
+used by QUIC. ChangeCipherSpec is redundant in TLS 1.3; see {{compat-mode}}.
+QUIC has its own key update mechanism; see {{key-update}}.

Not here, but I'll do that below.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3595#discussion_r422715739
----==_mimepart_5eb88d39bbeed_278d3fd7ff4cd968159204d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3595#discussion_r422715739">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -213,6 +209,11 @@ own key update mechanism {{key-update}}.
 ~~~
 {: #tls-full title=&quot;TLS Handshake with 0-RTT&quot;}
 
+{{tls-full}} omits the EndOfEarlyData message, which is not used in QUIC; see
+{{remove-eoed}}. Likewise, neither ChangeCipherSpec nor KeyUpdate messages are
+used by QUIC. ChangeCipherSpec is redundant in TLS 1.3; see {{compat-mode}}.
+QUIC has its own key update mechanism; see {{key-update}}.
</pre>
<p>Not here, but I'll do that below.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3595#discussion_r422715739">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5F3444QAAJEMMKOFDRQ4ZTTANCNFSM4MOSTQXQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3A37HJMTLRFOSDC7TRQ4ZTTA5CNFSM4MOSTQX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBO2ZLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3595#discussion_r422715739",
"url": "https://github.com/quicwg/base-drafts/pull/3595#discussion_r422715739",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb88d39bbeed_278d3fd7ff4cd968159204d--


From nobody Sun May 10 16:25:47 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 B44163A0BFE for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:25:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 E1Y4ZXRohq-O for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:25:44 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 47F413A0BF1 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:25:44 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 976351204E4 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:25:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589153143; bh=QiDoaGpnve5IfSYWCY/C5lLwfn7fynIbcfpzz8AOgR0=; h=Date:From:To:Subject:From; b=xLsYUkRdy7+1Sm6Il+ku4flCoPqRf2o9Ve6jwrtPya15Lov/LNQjhRbfQ7wNdFhNf mxDGf6YyVec7GNl4zLpfZI7H3wL0pkscbZF7378CG/gJcpIM/aqpCzwcppX211KBko vLiAT2/1Y5wYKvqHS1zPLrAScat7R4j9739V7e+4=
Date: Sun, 10 May 2020 16:25:43 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/tls-compat-mode/cf939c-3a633d@github.com>
Subject: [quicwg/base-drafts] 3a633d: reference legacy_session_id directly
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nBp3uX81o3TB_VksIEBzH0vR-f4>
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: Sun, 10 May 2020 23:25:46 -0000

  Branch: refs/heads/tls-compat-mode
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3a633d8b22eb2a850b4fed0d7a1e339186885830
      https://github.com/quicwg/base-drafts/commit/3a633d8b22eb2a850b4fed0d7a1e339186885830
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  reference legacy_session_id directly

Co-authored-by: ekr <ekr@rtfm.com>



From nobody Sun May 10 16:25: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 CD2D03A0BFE for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:25:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 6NblL5AJNwHM for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:25:52 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7AB373A0BF1 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:25:52 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 8015B6608A6 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:25:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589153151; bh=RQiJPQwgyhMnrPbO0nYTlA9Rg2QoSLbb50fc1LipmCg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gVwvyojQxoyZpmSMDWhmsBECBkqYgcpx0Kd2e4VW3hXOXsTW1x7br2l1CoSyzqpnk Tv91E7X7kG+lfyatqVAHYdXDpeoLGZXzaPRE9plyo03I4HWFYOxS7Uo5584WXZy1ql 9kYBznhz1r0RQHjzXmOHX+cU+2W9zNz2oqGL1E9g=
Date: Sun, 10 May 2020 16:25:51 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3595/push/5050340429@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3595@github.com>
References: <quicwg/base-drafts/pull/3595@github.com>
Subject: Re: [quicwg/base-drafts] Prohibit TLS 1.3 middlebox compatibility mode (#3595)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb88d7f70104_765d3fa4beacd96810351a1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/x8bIAtXSItJzIzLV4Omfhx95RPQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 10 May 2020 23:25:54 -0000

----==_mimepart_5eb88d7f70104_765d3fa4beacd96810351a1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

3a633d8b22eb2a850b4fed0d7a1e339186885830  reference legacy_session_id directly


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3595/files/cf939cc1e1dd4c40e46856fb335c8208c4a23b5e..3a633d8b22eb2a850b4fed0d7a1e339186885830

----==_mimepart_5eb88d7f70104_765d3fa4beacd96810351a1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/3a633d8b22eb2a850b4fed0d7a1e339186885830">3a633d8</a>  reference legacy_session_id directly</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3595/files/cf939cc1e1dd4c40e46856fb335c8208c4a23b5e..3a633d8b22eb2a850b4fed0d7a1e339186885830">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK576IUVRIJB4E5GNJTRQ4ZX7ANCNFSM4MOSTQXQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK32L5OBZTPLPTTVTQ3RQ4ZX7A5CNFSM4MOSTQX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDONJZGM2TONKQOVZWQIZVGA2TAMZUGA2DEOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3595/files/cf939cc1e1dd4c40e46856fb335c8208c4a23b5e..3a633d8b22eb2a850b4fed0d7a1e339186885830",
"url": "https://github.com/quicwg/base-drafts/pull/3595/files/cf939cc1e1dd4c40e46856fb335c8208c4a23b5e..3a633d8b22eb2a850b4fed0d7a1e339186885830",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb88d7f70104_765d3fa4beacd96810351a1--


From nobody Sun May 10 16:27:13 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 84FA83A0BFE for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:27:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 BcSDTxPNru7G for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:27:10 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 74F3A3A0BF1 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:27:10 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 9599AA00B2 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:27:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589153228; bh=yQkEMrgWw1qVn3c9oWnuA8zqt/I5umnlc+fHn+8mQds=; h=Date:From:To:Subject:From; b=MyxdKd3lYoYH+BXvd+kYjaRVSDynwu9fVflAmtUNeiGPGkfLu6Ie/8xwf98u7OoAQ Ld1zoz6KpxjluIQaM22GrlN2ylXXFJnChkvgplkMB0Q7MQFaUBDpi9SngBUkaer/JD 6QxRuLkdi5o2hs8EzHeamnD/HmvQbcC20PBEp/Ow=
Date: Sun, 10 May 2020 16:27:08 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/tls-compat-mode/3a633d-6a4c95@github.com>
Subject: [quicwg/base-drafts] 6a4c95: You can't carry CCS anyway
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rCePj26ZcoPYCL1Z25AP36zJ6iY>
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: Sun, 10 May 2020 23:27:12 -0000

  Branch: refs/heads/tls-compat-mode
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6a4c95ef0487b3dcfa012330590c6fb1e168c670
      https://github.com/quicwg/base-drafts/commit/6a4c95ef0487b3dcfa012330590c6fb1e168c670
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  You can't carry CCS anyway



From nobody Sun May 10 16:27:26 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 698673A0C0A for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:27:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 BhOi9tTLTBWx for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:27:12 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2DE3C3A0BF1 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:27:12 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id D7159260198 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:27:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589153231; bh=Lo7FnopcB2TaKS1frT+ltlp+De8yWsl8EbMzFMlZDpU=; h=Date:From:To:Subject:From; b=sD5RW6fU4YmlI87TZOBGRdrkUyh+cSdGcN6hY20KF6Nc9yX+G/01E2ToCUFzYRS1g SNYbOlNmNKbD6M0M8HO9NXW1n8OOsdOvxv0xVtA0s6/W/aEkRpETdFH6AIcdbosH/5 xaxzO405ndwdEjw0QgBn4A9cDrsRntjsaqm6Vwuw=
Date: Sun, 10 May 2020 16:27:11 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ebffbc-87b382@github.com>
Subject: [quicwg/base-drafts] 87b382: Script updating gh-pages from 3a633d8b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AzkbRm_Hk78_PGA-2GQs4EKNLHA>
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: Sun, 10 May 2020 23:27:14 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 87b382ac32d808612108a23f150cb63be6760183
      https://github.com/quicwg/base-drafts/commit/87b382ac32d808612108a23f150cb63be6760183
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M index.html
    M tls-compat-mode/draft-ietf-quic-http.html
    M tls-compat-mode/draft-ietf-quic-http.txt
    M tls-compat-mode/draft-ietf-quic-invariants.html
    M tls-compat-mode/draft-ietf-quic-invariants.txt
    M tls-compat-mode/draft-ietf-quic-qpack.html
    M tls-compat-mode/draft-ietf-quic-qpack.txt
    M tls-compat-mode/draft-ietf-quic-recovery.html
    M tls-compat-mode/draft-ietf-quic-recovery.txt
    M tls-compat-mode/draft-ietf-quic-tls.html
    M tls-compat-mode/draft-ietf-quic-tls.txt
    M tls-compat-mode/draft-ietf-quic-transport.html
    M tls-compat-mode/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 3a633d8b. [ci skip]



From nobody Sun May 10 16:27:29 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 9D0D53A0BF1 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:27:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 34c1tGHqXgvM for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:27:18 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6F5AD3A0BFE for <quic-issues@ietf.org>; Sun, 10 May 2020 16:27:18 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id AF8D88C04F3 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:27:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589153237; bh=F7s1ch234BhbeHQmjgdWcIeOP4oT93bc3N5IB6tXkJc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mBgcNgL9qgdzR5z1ZjUy4szzxfvtKPFwkMYdGkKROA1aHLKktfmn14wRwGqeVtBFH UcozOOTm/J5T+jfQqDWInoQoDFwVjkswaHjID5rTxja1N1b5F8RwfcsheK1K2OAs0P an8hcYGUoZlfRwIQH9Y2Hd7+fdn7mrUCbQmlcWbM=
Date: Sun, 10 May 2020 16:27:17 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3595/push/5050343050@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3595@github.com>
References: <quicwg/base-drafts/pull/3595@github.com>
Subject: Re: [quicwg/base-drafts] Prohibit TLS 1.3 middlebox compatibility mode (#3595)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb88dd59ed60_224d3fccca0cd95c250588c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TUdCuWV5zJTWoErdyuoEHg54gO8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 10 May 2020 23:27:21 -0000

----==_mimepart_5eb88dd59ed60_224d3fccca0cd95c250588c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

6a4c95ef0487b3dcfa012330590c6fb1e168c670  You can't carry CCS anyway


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3595/files/3a633d8b22eb2a850b4fed0d7a1e339186885830..6a4c95ef0487b3dcfa012330590c6fb1e168c670

----==_mimepart_5eb88dd59ed60_224d3fccca0cd95c250588c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/6a4c95ef0487b3dcfa012330590c6fb1e168c670">6a4c95e</a>  You can&#39;t carry CCS anyway</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3595/files/3a633d8b22eb2a850b4fed0d7a1e339186885830..6a4c95ef0487b3dcfa012330590c6fb1e168c670">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4EAEAP6YQBSPSPBJ3RQ4Z5LANCNFSM4MOSTQXQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5F2RYLPVTJOH3K643RQ4Z5LA5CNFSM4MOSTQX2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDONJZGM2TONKQOVZWQIZVGA2TAMZUGMYDKMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3595/files/3a633d8b22eb2a850b4fed0d7a1e339186885830..6a4c95ef0487b3dcfa012330590c6fb1e168c670",
"url": "https://github.com/quicwg/base-drafts/pull/3595/files/3a633d8b22eb2a850b4fed0d7a1e339186885830..6a4c95ef0487b3dcfa012330590c6fb1e168c670",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb88dd59ed60_224d3fccca0cd95c250588c--


From nobody Sun May 10 16:27:52 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 3B7F43A0BFE for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:27:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 jhJ20q9xe7mg for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:27:45 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E90613A0BF1 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:27:44 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 3FA6F1C0098 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:27:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589153263; bh=q3ZcOxvjVgpzqWYyBYpSZsqQQOfDBQWXSFN4oas0j+M=; h=Date:From:To:Subject:From; b=cCUKt8RG34/yfbVhGRciAJK5beGsoI/8o8nYwOXBE9u8pIQ/n5zoR1vhP0lbieMCx F7lA209G+JEmVGmX4ZtHye+hCYwQzJw0TThEcw/f2HtmHGUUKYbNs1YHwwmV21PDDX XacVwX/7K+YgEklPmYg45oKoxngvMPl20Kf70q+c=
Date: Sun, 10 May 2020 16:27:43 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/link-preferred-address/7d5089-d29840@github.com>
Subject: [quicwg/base-drafts] d29840: CIDs are requested in this context
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sFpauKVRNZEkPD-x9jc47RH6Nhs>
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: Sun, 10 May 2020 23:27:48 -0000

  Branch: refs/heads/link-preferred-address
  Home:   https://github.com/quicwg/base-drafts
  Commit: d29840a2953c9f87abbe8c4838b58934ee46de9a
      https://github.com/quicwg/base-drafts/commit/d29840a2953c9f87abbe8c4838b58934ee46de9a
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  CIDs are requested in this context

Co-authored-by: ekr <ekr@rtfm.com>



From nobody Sun May 10 16:27:57 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 023823A0C4A for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:27:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 rT2r5uEFODgp for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:27:53 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E7DC23A0BF1 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:27:52 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id EDA438C002A for <quic-issues@ietf.org>; Sun, 10 May 2020 16:27:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589153271; bh=8x/V5xKBoL3wmuQuUrNYdSXPYA/tBBplSL4YKhkJYG8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eJzvGmfpmWDZeqgQPalUh2MomE7MnsuzMp1fCyFDvwLQgNZMVAJhiTZMs4VoKfLfs NPq05EJUBuctZnyvpQdxhGCtzXdj+EBKbcTKxKiWN6HAhS0ypSuaVB6YeFQaNY56eJ Lqc2ZurXyf3mWuuftCPXzHBYrHz4oqQ/kz0l/OBI=
Date: Sun, 10 May 2020 16:27:51 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3563/push/5050344094@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3563@github.com>
References: <quicwg/base-drafts/pull/3563@github.com>
Subject: Re: [quicwg/base-drafts] Migration with zero-length CID is inadvisable (#3563)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb88df7ddb9c_4173fe2174cd9641372558"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FO_rIgFTFxUlBCJ9tdGNMoTR8o4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 10 May 2020 23:27:55 -0000

----==_mimepart_5eb88df7ddb9c_4173fe2174cd9641372558
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

d29840a2953c9f87abbe8c4838b58934ee46de9a  CIDs are requested in this context


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3563/files/7d5089a754a6cecce519d6c20325ec0adaf65f2e..d29840a2953c9f87abbe8c4838b58934ee46de9a

----==_mimepart_5eb88df7ddb9c_4173fe2174cd9641372558
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/d29840a2953c9f87abbe8c4838b58934ee46de9a">d29840a</a>  CIDs are requested in this context</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3563/files/7d5089a754a6cecce519d6c20325ec0adaf65f2e..d29840a2953c9f87abbe8c4838b58934ee46de9a">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2JX3ABM5U2XZRVGVDRQ4Z7PANCNFSM4LYEVEVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZTGACABNPFBJCAHDLRQ4Z7PA5CNFSM4LYEVEV2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4TMNRWG4YTIN2QOVZWQIZVGA2TAMZUGQYDSNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3563/files/7d5089a754a6cecce519d6c20325ec0adaf65f2e..d29840a2953c9f87abbe8c4838b58934ee46de9a",
"url": "https://github.com/quicwg/base-drafts/pull/3563/files/7d5089a754a6cecce519d6c20325ec0adaf65f2e..d29840a2953c9f87abbe8c4838b58934ee46de9a",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb88df7ddb9c_4173fe2174cd9641372558--


From nobody Sun May 10 16:28:07 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 D60583A0B5C for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:28:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 efR1PcbGlqmG for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:28:04 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 663A83A0BE6 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:28:04 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id AC8486E003F for <quic-issues@ietf.org>; Sun, 10 May 2020 16:28:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589153283; bh=Aqc2kUaHKb8m+eLlRXy1Cce6oKYbgxNd4qPsTaK+nZA=; h=Date:From:To:Subject:From; b=z9R+EeMPT433Fn+s8sfobkH1CLXoIl9luG3MkmWcjr2C0ucdXmMMJtjZWrYjtcofP SIrPx4cuaRbsfIJpAd8Z8W844QV+kxICMMAL+/kOyAgFRrqSJsm4+WB3+DEzOfdAPK 7/m+Em2J+SA8rHdgrZAxoinXJ1p8iqewHUbNZ5vA=
Date: Sun, 10 May 2020 16:28:03 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/87b382-1ad212@github.com>
Subject: [quicwg/base-drafts] 1ad212: Script updating gh-pages from 6a4c95ef. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fl8Ly7kTt6px_FBEmhhUWjYqFYg>
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: Sun, 10 May 2020 23:28:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1ad2122c77365d648dbf0fb4ea884053ac34949f
      https://github.com/quicwg/base-drafts/commit/1ad2122c77365d648dbf0fb4ea884053ac34949f
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M index.html
    M tls-compat-mode/draft-ietf-quic-tls.html
    M tls-compat-mode/draft-ietf-quic-tls.txt

  Log Message:
  -----------
  Script updating gh-pages from 6a4c95ef. [ci skip]



From nobody Sun May 10 16:29:00 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 436883A0C46 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:28:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 2vWQg2QVIETl for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:28:51 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ECCA33A0C38 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:28:50 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 75C872C0E8F for <quic-issues@ietf.org>; Sun, 10 May 2020 16:28:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589153329; bh=qozWZRBgov0o8SWkPnIItYqNpPb7wjoOZ8GRZP+6DCI=; h=Date:From:To:Subject:From; b=Pk+XJt2u4PuUAIt0A36PJ471N0SLjR/gHpbbCvQ/9b1HmA1fvk/Zj9LazzDzSVJKy QpQkfcrh2wyZxD1mzOVg4WjaneF2brnoooKotMFNmktLKEYmZah0unZq81XkKBv0Z6 wbvGD1fbd+P+SJXCz1F8W/vQnly6Gzi6YK6RftSA=
Date: Sun, 10 May 2020 16:28:49 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/link-preferred-address/d29840-b400f0@github.com>
Subject: [quicwg/base-drafts] b400f0: reflow
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/k97SLvh9KFF_xOWmNT1_8nDs81I>
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: Sun, 10 May 2020 23:28:59 -0000

  Branch: refs/heads/link-preferred-address
  Home:   https://github.com/quicwg/base-drafts
  Commit: b400f0946ee8770b9432ae6f38ca80b479bd17a7
      https://github.com/quicwg/base-drafts/commit/b400f0946ee8770b9432ae6f38ca80b479bd17a7
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  reflow



From nobody Sun May 10 16:29:07 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 006D43A0C25 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:29:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 sXrotiwMleRB for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:28:58 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9BDAE3A0C3F for <quic-issues@ietf.org>; Sun, 10 May 2020 16:28:58 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id E1F1A2C0E00 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:28:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589153337; bh=A0K4uYcY0e58j5344Nq9FG+GiNmbgQlpnkO4xkajLIQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uAoDoESCaU3qVHQ0I/NrD5rxeP417p9jxujRUX3qn8Jp+N3DdfAa7Bbv89K8J8Uy4 1QfwK6IpUmbayavwhn20/ilxv+SxsFkTuDGNrWmhE3/Z41qUb5xJaaoVl/c6XbHwDo TOs0vJNln+0cPGyn1SnUeayZq+w6RuboQKXa4DSk=
Date: Sun, 10 May 2020 16:28:57 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3563/push/5050346040@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3563@github.com>
References: <quicwg/base-drafts/pull/3563@github.com>
Subject: Re: [quicwg/base-drafts] Migration with zero-length CID is inadvisable (#3563)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb88e39d27bb_39be3fc1adccd96412002bb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HUbu9PmJygaVzpPLj7-5zSiRkGc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 10 May 2020 23:29:06 -0000

----==_mimepart_5eb88e39d27bb_39be3fc1adccd96412002bb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

b400f0946ee8770b9432ae6f38ca80b479bd17a7  reflow


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3563/files/d29840a2953c9f87abbe8c4838b58934ee46de9a..b400f0946ee8770b9432ae6f38ca80b479bd17a7

----==_mimepart_5eb88e39d27bb_39be3fc1adccd96412002bb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/b400f0946ee8770b9432ae6f38ca80b479bd17a7">b400f09</a>  reflow</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3563/files/d29840a2953c9f87abbe8c4838b58934ee46de9a..b400f0946ee8770b9432ae6f38ca80b479bd17a7">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZESGELKUSM32Y3B3DRQ42DTANCNFSM4LYEVEVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4V6D4PESY3WWDTAX3RQ42DTA5CNFSM4LYEVEV2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4TMNRWG4YTIN2QOVZWQIZVGA2TAMZUGYYDIMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3563/files/d29840a2953c9f87abbe8c4838b58934ee46de9a..b400f0946ee8770b9432ae6f38ca80b479bd17a7",
"url": "https://github.com/quicwg/base-drafts/pull/3563/files/d29840a2953c9f87abbe8c4838b58934ee46de9a..b400f0946ee8770b9432ae6f38ca80b479bd17a7",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb88e39d27bb_39be3fc1adccd96412002bb--


From nobody Sun May 10 16:29:37 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 BCFCB3A0B28 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:29:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 YjY8757B5Msi for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:29:35 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BAA4F3A0BB8 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:29:35 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 6A49F2615A0 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:29:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589153375; bh=MIPyDM1uexgjNNnq3B6sG7mHduovUC4rr2icHaWihDY=; h=Date:From:To:Subject:From; b=VH3y/9qqa8niDDigCoZPMg/+v88/TPXbWW3dKq3TIoMNZSCCv3WEeyAKFbzB/28N/ tF2vNrq7lhTX9eQSq+21SEIexDbz2ap6WhOa1TkjdMk56HDOc/Tymk21eIPMD04TbW wlfwKlHnimhEU7EN0a3g7+0PuFBHAt+gL2eWCt7Q=
Date: Sun, 10 May 2020 16:29:35 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1ad212-36b207@github.com>
Subject: [quicwg/base-drafts] 36b207: Script updating gh-pages from b400f094. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0TGAXLxpqTZjuCkJCmsCL8b-Ijs>
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: Sun, 10 May 2020 23:29:37 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 36b207fa604d75a306de21b8f292fb065f92aed4
      https://github.com/quicwg/base-drafts/commit/36b207fa604d75a306de21b8f292fb065f92aed4
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M index.html
    M link-preferred-address/draft-ietf-quic-http.html
    M link-preferred-address/draft-ietf-quic-http.txt
    M link-preferred-address/draft-ietf-quic-invariants.html
    M link-preferred-address/draft-ietf-quic-invariants.txt
    M link-preferred-address/draft-ietf-quic-qpack.html
    M link-preferred-address/draft-ietf-quic-qpack.txt
    M link-preferred-address/draft-ietf-quic-recovery.html
    M link-preferred-address/draft-ietf-quic-recovery.txt
    M link-preferred-address/draft-ietf-quic-tls.html
    M link-preferred-address/draft-ietf-quic-tls.txt
    M link-preferred-address/draft-ietf-quic-transport.html
    M link-preferred-address/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from b400f094. [ci skip]



From nobody Sun May 10 16:40:03 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 C0FFE3A0B9B for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:40:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 McYXnAujONoy for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:39:59 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 329623A0B4C for <quic-issues@ietf.org>; Sun, 10 May 2020 16:39:58 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 2986D520062 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:39:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589153998; bh=sKKIp0lZXTVMfGUBbVgeai+/djHpqNYP7nBYMh8K9oU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NA8RvPFjDu86MOavYLv3Ph/ptbeputTnlrrX4NavvhAHSKKNZrg3CKIU+DkrjyVQg eok3irYkch2+sbOBWeSEoBRMArdb5PN6DkwNp2qrgbHN+mdJDZog3lZYcpBkRbC6KQ hw6BJYVKDQn1tsVbufMLeY0FVw7bPOAofwGPqjyE=
Date: Sun, 10 May 2020 16:39:58 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7YVB7PZ6LZWYPFCG54YRY45EVBNHHCGFYIAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/review/408793624@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb890ce197ee_56da3fea4facd96444046b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Lu2y6j-9xd_c1gBk1p70YMzOh-E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 10 May 2020 23:40:02 -0000

----==_mimepart_5eb890ce197ee_56da3fea4facd96444046b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST

Yes, I think that this is a clearer formulation.  I've taken this and rewritten to:

> An endpoint SHOULD limit the state it commits to retiring connection IDs.  An endpoint SHOULD allow for sending and tracking a number of RETIRE_CONNECTION_ID frames of at least twice the active_connection_id_limit.

These are both recommendations only.  There are reasons why you might not care for these limits.

The 2x is to allow for a combination of you deciding to retire all active connection IDs and the peer asking you to retire all active connection IDs.  If you allow for that much, you will never encounter a situation where the combination of both peers asking for retirement will cause RETIRE_CONNECTION_ID to be dropped or delayed.

That said, this works if you only track 1 RETIRE_CONNECTION_ID at a time, it just might be slow.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547#discussion_r422717607
----==_mimepart_5eb890ce197ee_56da3fea4facd96444046b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3547#discussion_r422717607">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST
</pre>
<p>Yes, I think that this is a clearer formulation.  I've taken this and rewritten to:</p>
<blockquote>
<p>An endpoint SHOULD limit the state it commits to retiring connection IDs.  An endpoint SHOULD allow for sending and tracking a number of RETIRE_CONNECTION_ID frames of at least twice the active_connection_id_limit.</p>
</blockquote>
<p>These are both recommendations only.  There are reasons why you might not care for these limits.</p>
<p>The 2x is to allow for a combination of you deciding to retire all active connection IDs and the peer asking you to retire all active connection IDs.  If you allow for that much, you will never encounter a situation where the combination of both peers asking for retirement will cause RETIRE_CONNECTION_ID to be dropped or delayed.</p>
<p>That said, this works if you only track 1 RETIRE_CONNECTION_ID at a time, it just might be slow.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3547#discussion_r422717607">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4E5JHLJVSB4YVAIUTRQ43M5ANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK42UBROXO5PVRHK7S3RQ43M5A5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBO3EGA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547#discussion_r422717607",
"url": "https://github.com/quicwg/base-drafts/pull/3547#discussion_r422717607",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb890ce197ee_56da3fea4facd96444046b--


From nobody Sun May 10 16:42:27 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 B46CB3A0B4C for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:42:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 O8PEgb7KhJ_S for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:42:23 -0700 (PDT)
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 43BD53A0C01 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:42:23 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id C6474280938 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:42:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589154140; bh=cIZGyzivFbCQUCetYlDJOItU/+mq+qxacx+c7ppHw6Y=; h=Date:From:To:Subject:From; b=HoD+qN6dTB2tUxThmCyzjM3fGTxaU6PUyWKO4fCeST9JZEL5jfk4h29r9fWa3SX4T +0vm7t8tY4826VVa36Zs4JrI86C0FSoXtU0e32P/sGkDA3MRWp5FkquvJqy9uSQWiO zw89wrHMOpsyWIrcUxMCb+s2Zj2T2sw9BMxJPInM=
Date: Sun, 10 May 2020 16:42:20 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/bounded-rcid/000000-67b209@github.com>
Subject: [quicwg/base-drafts] 937472: Limit RCID state
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UcqSt-cn6oYXzhLIucVMYuTcTrs>
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: Sun, 10 May 2020 23:42:26 -0000

  Branch: refs/heads/bounded-rcid
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9374722d4f723e5cd1889ade44e10ab603bb710b
      https://github.com/quicwg/base-drafts/commit/9374722d4f723e5cd1889ade44e10ab603bb710b
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-03-26 (Thu, 26 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Limit RCID state


  Commit: efd55324649513ffc2cd7299ab3a19e094f81f17
      https://github.com/quicwg/base-drafts/commit/efd55324649513ffc2cd7299ab3a19e094f81f17
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-27 (Fri, 27 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: 9e1d5db348262fab522e0c794698031157aa67d7
      https://github.com/quicwg/base-drafts/commit/9e1d5db348262fab522e0c794698031157aa67d7
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-27 (Fri, 27 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: b98bb9ea461c2099c2c0672e0356fc06b002c826
      https://github.com/quicwg/base-drafts/commit/b98bb9ea461c2099c2c0672e0356fc06b002c826
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-03-27 (Fri, 27 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Ian's comments plus some additional text


  Commit: a62abddacec3745841f89e9b40a76c64811edac6
      https://github.com/quicwg/base-drafts/commit/a62abddacec3745841f89e9b40a76c64811edac6
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-03-27 (Fri, 27 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Whoops, missed one


  Commit: 66c76207669906a0937130fb5dda426e928e3462
      https://github.com/quicwg/base-drafts/commit/66c76207669906a0937130fb5dda426e928e3462
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: c4d24944d60ecfb5fbc4873ff3d7c9438ab1f536
      https://github.com/quicwg/base-drafts/commit/c4d24944d60ecfb5fbc4873ff3d7c9438ab1f536
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: f0b64a1301e329349ef1ba5fe4507d2288170782
      https://github.com/quicwg/base-drafts/commit/f0b64a1301e329349ef1ba5fe4507d2288170782
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: 9ec4b0c1d4086cc17f849563ca55bf2932ca13f9
      https://github.com/quicwg/base-drafts/commit/9ec4b0c1d4086cc17f849563ca55bf2932ca13f9
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Resolved all reviews I know how to address


  Commit: e10134ef4d335a0640286d1437afa16418655df3
      https://github.com/quicwg/base-drafts/commit/e10134ef4d335a0640286d1437afa16418655df3
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 4e3c1263433231a9e98365ec5fb75b541ef9de5e
      https://github.com/quicwg/base-drafts/commit/4e3c1263433231a9e98365ec5fb75b541ef9de5e
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 46f1894b7ec811fd56f54d49a98d6cd32a3aec0e
      https://github.com/quicwg/base-drafts/commit/46f1894b7ec811fd56f54d49a98d6cd32a3aec0e
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  text alignment


  Commit: 33548fd46adf3885542bbbe87ee2498bd2b92d75
      https://github.com/quicwg/base-drafts/commit/33548fd46adf3885542bbbe87ee2498bd2b92d75
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  MT's suggestions


  Commit: 6332cedcf7026fdcc1e0c36bca395d718344bae1
      https://github.com/quicwg/base-drafts/commit/6332cedcf7026fdcc1e0c36bca395d718344bae1
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-04-01 (Wed, 01 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  s/outstanding/in flight


  Commit: beca69c7c49847bc0d473c681139bfaa9e882f57
      https://github.com/quicwg/base-drafts/commit/beca69c7c49847bc0d473c681139bfaa9e882f57
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-04-01 (Wed, 01 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  update the rest of the text


  Commit: 495a97423b8b0bb6411f14a533408a6cfbc7fb29
      https://github.com/quicwg/base-drafts/commit/495a97423b8b0bb6411f14a533408a6cfbc7fb29
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-04-07 (Tue, 07 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 54e2a1207f926fc32ce23769368a06bbabfd0de1
      https://github.com/quicwg/base-drafts/commit/54e2a1207f926fc32ce23769368a06bbabfd0de1
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-04-08 (Wed, 08 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: 2dea527f716acf2f8a424dd300bd395839b6991d
      https://github.com/quicwg/base-drafts/commit/2dea527f716acf2f8a424dd300bd395839b6991d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-08 (Wed, 08 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md


  Commit: 4393b6dfc35064cc79493021ac6b80d460ad175f
      https://github.com/quicwg/base-drafts/commit/4393b6dfc35064cc79493021ac6b80d460ad175f
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-08 (Wed, 08 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md


  Commit: f436727acd7dcd49d613cac8ec032a9934c3f6ef
      https://github.com/quicwg/base-drafts/commit/f436727acd7dcd49d613cac8ec032a9934c3f6ef
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-04-08 (Wed, 08 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  fixed line endings


  Commit: 21c4cfebf46937fa6f7e38960ba57f156ae011b3
      https://github.com/quicwg/base-drafts/commit/21c4cfebf46937fa6f7e38960ba57f156ae011b3
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-qpack.md
    M draft-ietf-quic-recovery.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md
    R workflow.xml

  Log Message:
  -----------
  Merge branch 'master' into bounded-rcid


  Commit: 67b209c655fcdc9b49a7c7c9cd3efe6b5de7b0d6
      https://github.com/quicwg/base-drafts/commit/67b209c655fcdc9b49a7c7c9cd3efe6b5de7b0d6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Ekr's editorial comments


Compare: https://github.com/quicwg/base-drafts/compare/9374722d4f72%5E...67b209c655fc


From nobody Sun May 10 16:43: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 E84BA3A0BD5 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:43:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Hd-UnabSS-j4 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:43:52 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DA5253A0BD4 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:43:51 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 3B3C01C0DD5 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:43:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589154231; bh=5biO03SYtiq2iv71CBhf8IiUUSGum2dHUTNqH2C0udc=; h=Date:From:To:Subject:From; b=AFVm49n7y4DZKGpIapB7qr6fL/94E217VO0BDsUA/jTb9vY54dXeGXirbLbJ9bApZ PkbvaGjo8JEm5IQxvn1+idiN8fw7leyIBUWbcshqOhZzf13KBt8cB+wnZGrGwJ1NV7 Gf9bKIJikU7EJSwstmSmEShK2dVlUVMAWJlyN0zQ=
Date: Sun, 10 May 2020 16:43:51 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/36b207-fc0a82@github.com>
Subject: [quicwg/base-drafts] fc0a82: Script updating gh-pages from 67b209c6. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Hu6qhkT9hUAMVN8OYaUuSiq25Gs>
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: Sun, 10 May 2020 23:43:53 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: fc0a8261b3ef6b8dc25eb4fa7a85d4691851f68a
      https://github.com/quicwg/base-drafts/commit/fc0a8261b3ef6b8dc25eb4fa7a85d4691851f68a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    A bounded-rcid/draft-ietf-quic-http.html
    A bounded-rcid/draft-ietf-quic-http.txt
    A bounded-rcid/draft-ietf-quic-invariants.html
    A bounded-rcid/draft-ietf-quic-invariants.txt
    A bounded-rcid/draft-ietf-quic-qpack.html
    A bounded-rcid/draft-ietf-quic-qpack.txt
    A bounded-rcid/draft-ietf-quic-recovery.html
    A bounded-rcid/draft-ietf-quic-recovery.txt
    A bounded-rcid/draft-ietf-quic-tls.html
    A bounded-rcid/draft-ietf-quic-tls.txt
    A bounded-rcid/draft-ietf-quic-transport.html
    A bounded-rcid/draft-ietf-quic-transport.txt
    A bounded-rcid/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 67b209c6. [ci skip]



From nobody Sun May 10 16:45:48 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 2391D3A0BE9 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:45:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.098
X-Spam-Level: 
X-Spam-Status: No, score=-2.098 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, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 guQjgpqXTvYo for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:45:42 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1A6133A0C0D for <quic-issues@ietf.org>; Sun, 10 May 2020 16:45:39 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 8C8A9120FC7 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:45:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589154339; bh=yp7qNlShPScToiDQeS/tmc7V6Cjl7t+VukMvev8hVTU=; h=Date:From:To:Subject:From; b=q1ChWhAyG6sIe7GUybaFYYSlwh1MtszGLIpek24hCSLoq9IWGiKmFNJZvgAJ+fvtQ AAp0oMicHhDSJWwpUULD3K6/68DrScbjj9U9CtY50vxqrvstaR1B/AHNWnTg92l2os GS9UXndAEqF/J6sDtjib8tW22/1O01pQVJ2D6o3w=
Date: Sun, 10 May 2020 16:45:39 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/bounded-rcid/67b209-dde433@github.com>
Subject: [quicwg/base-drafts] dde433: More detail for the retirement thing
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cfU-lZRciR-CiHG44_z3AmZyS2o>
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: Sun, 10 May 2020 23:45:47 -0000

  Branch: refs/heads/bounded-rcid
  Home:   https://github.com/quicwg/base-drafts
  Commit: dde433fa331e4402bf6d00a798aa61f99d7c6b9d
      https://github.com/quicwg/base-drafts/commit/dde433fa331e4402bf6d00a798aa61f99d7c6b9d
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  More detail for the retirement thing



From nobody Sun May 10 16:46:43 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 306733A0C10 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:46:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 c0H9dzYtMFuP for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 16:46:40 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 78AF83A0C22 for <quic-issues@ietf.org>; Sun, 10 May 2020 16:46:38 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id A2372A0C5B for <quic-issues@ietf.org>; Sun, 10 May 2020 16:46:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589154397; bh=KwZu5gsUsWEbkCKYZm8uNL3LtFmShsH3B1xXJkRj7Ac=; h=Date:From:To:Subject:From; b=X4Xa6OusAgMHyaMJO00a6MCnUnKFAITQe3+sk73idhV47if+BllPbM2jkWhEqJm44 eiOeCFBc4AMYbuF1mLBDuAKGAXbqRpccdXRO0P3lX2Su84njHXR12tCQX/ymK5JlLM 6Gld1m4pl2G7fT0p14btUUCn9gfnHsCQcoNGO/GM=
Date: Sun, 10 May 2020 16:46:37 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/fc0a82-c36deb@github.com>
Subject: [quicwg/base-drafts] c36deb: Script updating gh-pages from dde433fa. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0tkSOLq44eVfVeyrchBR4S_k9DE>
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: Sun, 10 May 2020 23:46:42 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c36debd96daf6f1541644eae25ccafaf061a60c0
      https://github.com/quicwg/base-drafts/commit/c36debd96daf6f1541644eae25ccafaf061a60c0
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M bounded-rcid/draft-ietf-quic-transport.html
    M bounded-rcid/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from dde433fa. [ci skip]



From nobody Sun May 10 17:05:03 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 BA3023A0BDC for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 17:04:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 qIl8YmAWCpYZ for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 17:04:56 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7735D3A0BD5 for <quic-issues@ietf.org>; Sun, 10 May 2020 17:04:56 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 4BAB866008C for <quic-issues@ietf.org>; Sun, 10 May 2020 17:04:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589155495; bh=qy9zogxC3wNd6FfXfrzAueCSTIkMHjXzhLGNenRPI6s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Cz7EACGPDccLRO2AkRVTjQttJJDxIio9KIhsgVWet040J9ly8k7jObx/YiIp2dNT2 rKER0qWIeMvotQdCtmMBanu3TxZ6pg1gtOHBWm2E/jbGU2MJFNZiIetcjlM7vVLs1t yWnd4/B3ufOj4m0iJ88tYs53nOSJbJVFW/fRlVIQ=
Date: Sun, 10 May 2020 17:04:55 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZXYZI74N7XMBFY2RN4YR32PEVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/408794632@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb896a734f14_5ea13fedbe4cd95c451053"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XzmMNGGtWhOl5IXcGq5xxeG3h1A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 00:04:59 -0000

----==_mimepart_5eb896a734f14_5ea13fedbe4cd95c451053
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -1084,10 +1084,10 @@ Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
 be used again and requests that the peer replace it with a new connection ID
 using a NEW_CONNECTION_ID frame.
 
-As discussed in {{migration-linkability}}, endpoints limit the use of a
-connection ID to a single network path where possible. Endpoints SHOULD retire
-connection IDs when no longer actively using the network path on which the
-connection ID was used.
+As discussed in {{migration-linkability}}, endpoints MUST limit the use of a
+connection ID to packets sent from a single local address.  Endpoints SHOULD
+retire connection IDs when they are no longer actively using the network path on
+which the connection ID was used.

Perhaps the answer here is to say "endpoints limit the use of a connection ID to a single network path".  The point about NAT rebinding/inadvertent migration here is not relevant and somewhat distracting.  The reintroduction of the "MUST" is problematic as this implies a canonical requirement, but you can't really make that without adding the necessary context about NAT rebinding.

> @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.

How about:

> However, if a peer experiences NAT rebinding, an endpoint could receive packets from its peer using a new source address with the same destination connection ID.  If a peer is first to use a connection ID on a new network path and that connection ID was originally used on another network path, an endpoint MAY also use a connection ID that it used on the original network path.

That is much more wordy, but it might be clearer.  The point is to say that you don't reuse a connection ID unless your peer reuses first.

There is a wrinkle here in the case that an endpoint has multiple valid addresses (think preferred address).  In that case, we don't want to allow reuse as that implies a bunch of other things.  The fix there might be to add:

> This exception that allows the use of a connection ID on multiple network paths only applies when the remote address changes and the local address remains constant.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#discussion_r422718955
----==_mimepart_5eb896a734f14_5ea13fedbe4cd95c451053
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r422718955">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1084,10 +1084,10 @@ Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
 be used again and requests that the peer replace it with a new connection ID
 using a NEW_CONNECTION_ID frame.
 
-As discussed in {{migration-linkability}}, endpoints limit the use of a
-connection ID to a single network path where possible. Endpoints SHOULD retire
-connection IDs when no longer actively using the network path on which the
-connection ID was used.
+As discussed in {{migration-linkability}}, endpoints MUST limit the use of a
+connection ID to packets sent from a single local address.  Endpoints SHOULD
+retire connection IDs when they are no longer actively using the network path on
+which the connection ID was used.
</pre>
<p>Perhaps the answer here is to say "endpoints limit the use of a connection ID to a single network path".  The point about NAT rebinding/inadvertent migration here is not relevant and somewhat distracting.  The reintroduction of the "MUST" is problematic as this implies a canonical requirement, but you can't really make that without adding the necessary context about NAT rebinding.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r422720639">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.
</pre>
<p>How about:</p>
<blockquote>
<p>However, if a peer experiences NAT rebinding, an endpoint could receive packets from its peer using a new source address with the same destination connection ID.  If a peer is first to use a connection ID on a new network path and that connection ID was originally used on another network path, an endpoint MAY also use a connection ID that it used on the original network path.</p>
</blockquote>
<p>That is much more wordy, but it might be clearer.  The point is to say that you don't reuse a connection ID unless your peer reuses first.</p>
<p>There is a wrinkle here in the case that an endpoint has multiple valid addresses (think preferred address).  In that case, we don't want to allow reuse as that implies a bunch of other things.  The fix there might be to add:</p>
<blockquote>
<p>This exception that allows the use of a connection ID on multiple network paths only applies when the remote address changes and the local address remains constant.</p>
</blockquote>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r422718955">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4D4TJOMYTVBADJBM3RQ46KPANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2TJZXBL2K27NJPVMDRQ46KPA5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBO3MCA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r422718955",
"url": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r422718955",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb896a734f14_5ea13fedbe4cd95c451053--


From nobody Sun May 10 17:53:18 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 C1FE33A0C3A for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 17:53:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 vcugQef-k6Re for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 17:53:15 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 839683A0C39 for <quic-issues@ietf.org>; Sun, 10 May 2020 17:53:15 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id C52BF2615A5 for <quic-issues@ietf.org>; Sun, 10 May 2020 17:53:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589158394; bh=/p8rO3d+jjJSlD/wH0ZbM8c+QIYaeU6XA1tPVDI1160=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rHkAk8dz9MClzbtux3RNdOcYTe5eIleWmhevELLVBrXOCgHJ7GfqyUmGC/R/bGMFA W0cc4OpYltf8e3WCz6bVE7pVzIEBHyxzsezw6IyG/G1aYC+4aYHX3lgYGMJ5pS1rR2 wzsFnI9Q/gvLAR+mY+YY7uzjgs8cFk8rxwIrcYWw=
Date: Sun, 10 May 2020 17:53:14 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4M2YFGKO2NSMTFDO54YSBPVEVBNHHCCZ7YJA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3426/review/408802105@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3426@github.com>
References: <quicwg/base-drafts/pull/3426@github.com>
Subject: Re: [quicwg/base-drafts] Clarify zero-length CIDs and active_connection_id_limit TP (#3426)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb8a1fa7dfe5_656a3fea4facd9641853820"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6hLSXvM0XfQgwEqppLw5NviVcV0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 00:53:17 -0000

----==_mimepart_5eb8a1fa7dfe5_656a3fea4facd9641853820
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3426#pullrequestreview-408802105
----==_mimepart_5eb8a1fa7dfe5_656a3fea4facd9641853820
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3426#pullrequestreview-408802105">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3F7VOWRPOYIHCHZ2TRQ5D7VANCNFSM4KQNOYIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2H7UAADDJGFWCFE73RQ5D7VA5CNFSM4KQNOYIKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBO5GOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3426#pullrequestreview-408802105",
"url": "https://github.com/quicwg/base-drafts/pull/3426#pullrequestreview-408802105",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb8a1fa7dfe5_656a3fea4facd9641853820--


From nobody Sun May 10 17:56:22 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 BDBD93A0C3C for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 17:56:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 hpWB8T2mnLcm for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 17:56:19 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 194B13A0C3A for <quic-issues@ietf.org>; Sun, 10 May 2020 17:56:19 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 6F16A960415 for <quic-issues@ietf.org>; Sun, 10 May 2020 17:56:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589158577; bh=XoGBVaaJfqEv4qLXD2zv200Q4ZLZDiWgsPzKTOTO15o=; h=Date:From:To:Subject:From; b=rjhZDp7clZYR/QC+XHpsUK/i6Fr8LoFVJvwxPvHOU88WVAegi3AzaTDr46MfgVH0P 5QHe1lK2KqVMCeXpurXZO/JNGhoZmEB8KwiwdA9PqH12poy1nCXqDQZf7KXrGYWgtG 26GxvYf7NUdMhilBAF/dlrn6LTA61SZg/6Z68wFU=
Date: Sun, 10 May 2020 17:56:17 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgery-limit/f75650-2eb864@github.com>
Subject: [quicwg/base-drafts] 2eb864: Some code review suggestions
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/t5QtyI3F8WcfzC3CkKCX-YbMwPw>
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: Mon, 11 May 2020 00:56:21 -0000

  Branch: refs/heads/forgery-limit=0D
  Home:   https://github.com/quicwg/base-drafts=0D
  Commit: 2eb8646ec7863d97336e7f8e1391391db6d57e24=0D
      https://github.com/quicwg/base-drafts/commit/2eb8646ec7863d97336e7f=
8e1391391db6d57e24=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-11 (Mon, 11 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Some code review suggestions=0D
=0D
Co-authored-by: Christopher Wood <caw@heapingbits.net>=0D
Co-authored-by: Felix G=C3=BCnther <mail@felixguenther.info>=0D
=0D
=0D


From nobody Sun May 10 17:56:46 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 D1DD23A0C3C for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 17:56:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 qRnQG6tSgv9E for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 17:56:28 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 728E13A0C3A for <quic-issues@ietf.org>; Sun, 10 May 2020 17:56:28 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id DC7F0A0A3E for <quic-issues@ietf.org>; Sun, 10 May 2020 17:56:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589158586; bh=IeeLlxgAS2wQMEbNMhlaEdxzy3YHsWmIcGzB8ramTyo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QtKYFK/yn7vfGOsvSXe9mudsQpdQ+6U6F+SrDi2lfB0hf+tW52FMFENydOUUwOSPZ XNEyAlQDpWUxZSEozKvEc8rbLbMfA2IQ8kxtM25bICslmUunfY7rWEMw449D1aVjZj vcbpfOhIMr1ounFfpknXJo1fNpF4fwnKtlQDLwgU=
Date: Sun, 10 May 2020 17:56:26 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/push/5050519912@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb8a2bacce7d_5bc03fdaefacd9603801bf"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wHkvwjxaWgPVdJWrKV84zm5RVls>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 00:56:30 -0000

----==_mimepart_5eb8a2bacce7d_5bc03fdaefacd9603801bf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

2eb8646ec7863d97336e7f8e1391391db6d57e24  Some code review suggestions


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620/files/f756508d497d4111c40f0f2523b90d1cd5f91abc..2eb8646ec7863d97336e7f8e1391391db6d57e24

----==_mimepart_5eb8a2bacce7d_5bc03fdaefacd9603801bf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/2eb8646ec7863d97336e7f8e1391391db6d57e24">2eb8646</a>  Some code review suggestions</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3620/files/f756508d497d4111c40f0f2523b90d1cd5f91abc..2eb8646ec7863d97336e7f8e1391391db6d57e24">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3FMG4SF4HRVMCTJ4TRQ5ELVANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK22NPHG3LGYVACICJLRQ5ELVA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTCOJZG4YDIM2QOVZWQIZVGA2TANJRHE4TCMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620/files/f756508d497d4111c40f0f2523b90d1cd5f91abc..2eb8646ec7863d97336e7f8e1391391db6d57e24",
"url": "https://github.com/quicwg/base-drafts/pull/3620/files/f756508d497d4111c40f0f2523b90d1cd5f91abc..2eb8646ec7863d97336e7f8e1391391db6d57e24",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb8a2bacce7d_5bc03fdaefacd9603801bf--


From nobody Sun May 10 18:22: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 C8BF13A0C7C for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:22:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 AfGYbp6RB1pq for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:22:51 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 774613A0C78 for <quic-issues@ietf.org>; Sun, 10 May 2020 18:22:51 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id 95EC3960592 for <quic-issues@ietf.org>; Sun, 10 May 2020 18:22:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589160170; bh=4OyCR7uizvVjCz1TJD2tAV9F7ZsOQv3aLYk0dPbfWg8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JKhGt39PSj2wiDBJrhHEj5a8LgiMriOGcps7MGzNEogLzK0MCDdl92wRm5S8sMuut Uutb1gyElXJR4yRrZCZke9h253yr5M4+I/vkRWDxYJGZt1wpSvxywJU1vbFU7F43zc 2oZ4E1y90qTKtXOSMdaFhRT4nbzthm8FHFCKc1Ck=
Date: Sun, 10 May 2020 18:22:50 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3BLWMUFP2VBD4KSFV4YSE6VEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/408802571@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb8a8ea7e41c_5f353fc12d4cd9602239a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ObYY2oyeOBe9o3fK3_nbZ1iLZnc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 01:22:54 -0000

----==_mimepart_5eb8a8ea7e41c_5f353fc12d4cd9602239a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +For a target advantage of 2^-60, which matches that used by {{!TLS13}}, this
+results in the relation:
+
+~~~
+q <= 2^23
+~~~
+
+That is, endpoints cannot protect more than 2^23 packets with the same set of
+keys without causing an attacker to gain an larger advantage than the target of
+2^-60.
+
+
+## Integrity Limits
+
+For integrity, Theorem 1 in {{?CCM-ANALYSIS}} establishes that an attacker
+gains an advantage over an ideal PRP of no more than:

I don't think that this is a distinguishing advantage, but a forgery advantage.  That is, the odds of being able to forge increase, not to determine whether a forgery would be successful without consulting the oracle.

> @@ -2029,6 +2079,104 @@ ffff00001b0008f067a5502a4262b574 6f6b656ea523cb5ba524695f6569f293
 a1359d8e
 ~~~
 
+# Analysis of Limits on AEAD_AES_128_CCM Usage {#ccm-bounds}

This is an appendix :)

And yeah, I'm not all that happy that this is not in a peer-reviewed paper, but TLS didn't have that either.  The mitigating factors are that this is being carefully reviewed (my two screwups so far have been caught), and the math is fairly simple once you get past the layers of obfuscation.

> +successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, the limit on
+the number of packets that fail authentication is 2^36.  Note that the analysis
+in {{AEBounds}} supports a higher limit for the AEAD_AES_128_GCM and
+AEAD_AES_256_GCM, but this specification recommends a lower limit.  For
+AEAD_AES_128_CCM, the limit on the number of packets that fail authentication
+is 2^23.5; see {{ccm-bounds}}.
+
+Note:
+
+: These limits were originally calculated using assumptions about the
+  limits on TLS record size. The maximum size of a TLS record is 2^14 bytes.
+  In comparison, QUIC packets can be up to 2^16 bytes.  However, it is
+  expected that QUIC packets will generally be smaller than TLS records.
+  Where packets might be larger than 2^14 bytes in length, smaller limits might

Yes, that is what it says.  And it should be scary.  That is, if you want 64k packets, be prepared to read the papers.  (However, if someone ignores this, the damage isn't that bad, as the worst effect from this set of AEADs is in reducing the margin by a factor of 16 to 2^-56/2^-53, which is still small.)

It also says that the margins are usually better in practice than the analysis permits.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#discussion_r422727856
----==_mimepart_5eb8a8ea7e41c_5f353fc12d4cd9602239a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r422727856">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +For a target advantage of 2^-60, which matches that used by {{!TLS13}}, this
+results in the relation:
+
+~~~
+q &lt;= 2^23
+~~~
+
+That is, endpoints cannot protect more than 2^23 packets with the same set of
+keys without causing an attacker to gain an larger advantage than the target of
+2^-60.
+
+
+## Integrity Limits
+
+For integrity, Theorem 1 in {{?CCM-ANALYSIS}} establishes that an attacker
+gains an advantage over an ideal PRP of no more than:
</pre>
<p>I don't think that this is a distinguishing advantage, but a forgery advantage.  That is, the odds of being able to forge increase, not to determine whether a forgery would be successful without consulting the oracle.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r422728304">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2029,6 +2079,104 @@ ffff00001b0008f067a5502a4262b574 6f6b656ea523cb5ba524695f6569f293
 a1359d8e
 ~~~
 
+# Analysis of Limits on AEAD_AES_128_CCM Usage {#ccm-bounds}
</pre>
<p>This is an appendix :)</p>
<p>And yeah, I'm not all that happy that this is not in a peer-reviewed paper, but TLS didn't have that either.  The mitigating factors are that this is being carefully reviewed (my two screwups so far have been caught), and the math is fairly simple once you get past the layers of obfuscation.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r422732432">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, the limit on
+the number of packets that fail authentication is 2^36.  Note that the analysis
+in {{AEBounds}} supports a higher limit for the AEAD_AES_128_GCM and
+AEAD_AES_256_GCM, but this specification recommends a lower limit.  For
+AEAD_AES_128_CCM, the limit on the number of packets that fail authentication
+is 2^23.5; see {{ccm-bounds}}.
+
+Note:
+
+: These limits were originally calculated using assumptions about the
+  limits on TLS record size. The maximum size of a TLS record is 2^14 bytes.
+  In comparison, QUIC packets can be up to 2^16 bytes.  However, it is
+  expected that QUIC packets will generally be smaller than TLS records.
+  Where packets might be larger than 2^14 bytes in length, smaller limits might
</pre>
<p>Yes, that is what it says.  And it should be scary.  That is, if you want 64k packets, be prepared to read the papers.  (However, if someone ignores this, the damage isn't that bad, as the worst effect from this set of AEADs is in reducing the margin by a factor of 16 to 2^-56/2^-53, which is still small.)</p>
<p>It also says that the margins are usually better in practice than the analysis permits.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r422727856">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5MA2B6LKXGNRRIKSLRQ5HOVANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3P2J54WXIE4P4JURLRQ5HOVA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBO5KCY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620#discussion_r422727856",
"url": "https://github.com/quicwg/base-drafts/pull/3620#discussion_r422727856",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb8a8ea7e41c_5f353fc12d4cd9602239a--


From nobody Sun May 10 18:24:29 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 CB13E3A0C7F for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:24:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 OtDrUupNPOjw for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:24:25 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A80173A0C7E for <quic-issues@ietf.org>; Sun, 10 May 2020 18:24:25 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id BF3179602AF for <quic-issues@ietf.org>; Sun, 10 May 2020 18:24:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589160264; bh=YhqHUUa6HF/saxmGrRCT4tqD5AFXBIFkoBiOser76bc=; h=Date:From:To:Subject:From; b=r+XkX05tuegm72FxvCA8FJx54bU+Riq1JqKaOiYKPdJYjaChy2IGgtZhMect6/ZDc PLuSolRLehyxH1kLHtHZu8/Hphf0kchdnpf5bcZoQ2mwfE0SAH3Kxr/ENX2kq/u6vn BEeQxs+r5ArGBZviXfcJZeViMuwefrjwECxchK40=
Date: Sun, 10 May 2020 18:24:24 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgery-limit/2eb864-7958c9@github.com>
Subject: [quicwg/base-drafts] 7958c9: Reflow
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mFguLJHiuJMtMDXci89eVFDQLyg>
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: Mon, 11 May 2020 01:24:27 -0000

  Branch: refs/heads/forgery-limit
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7958c9f2ae14aaf59ce3cc39817173cc65422dc5
      https://github.com/quicwg/base-drafts/commit/7958c9f2ae14aaf59ce3cc39817173cc65422dc5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Reflow



From nobody Sun May 10 18:25:02 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 4F89E3A0C7E for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:24:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 y7gAzw8Qpr4G for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:24:36 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2D2F23A0C7F for <quic-issues@ietf.org>; Sun, 10 May 2020 18:24:34 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 02CA81C0A19 for <quic-issues@ietf.org>; Sun, 10 May 2020 18:24:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589160273; bh=0zpBwq8bjtTHdJ2fxXJfcQEwTxphtvMwOV2xgVhkoEk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VqJEODxYLNI0e6ljX5PHwsJ80RuugJBTfCxvO+kDrfprvMBkZexC8zFSaRoyF8JNY J7/FPIHCbCnuOmV5tOl4DjCdK0Va/rpT/0CjSqshen/pf2UARUoZttWx0COXhqYiJK /uMw4cRZxlmHYQj5Ud6O9AM51wXw0HiR7i/DgvnQ=
Date: Sun, 10 May 2020 18:24:32 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/push/5050581445@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb8a950e7a54_609e3fea50ecd96418630"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qwJmCCBICVdgOD_y7C5cGVf2vw8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 01:24:42 -0000

----==_mimepart_5eb8a950e7a54_609e3fea50ecd96418630
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

7958c9f2ae14aaf59ce3cc39817173cc65422dc5  Reflow


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620/files/2eb8646ec7863d97336e7f8e1391391db6d57e24..7958c9f2ae14aaf59ce3cc39817173cc65422dc5

----==_mimepart_5eb8a950e7a54_609e3fea50ecd96418630
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/7958c9f2ae14aaf59ce3cc39817173cc65422dc5">7958c9f</a>  Reflow</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3620/files/2eb8646ec7863d97336e7f8e1391391db6d57e24..7958c9f2ae14aaf59ce3cc39817173cc65422dc5">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3LNBZNSXUEBSEXCPDRQ5HVBANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYZF7HJNU7UYF5ZNEDRQ5HVBA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTCOJZG4YDIM2QOVZWQIZVGA2TANJYGE2DINI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620/files/2eb8646ec7863d97336e7f8e1391391db6d57e24..7958c9f2ae14aaf59ce3cc39817173cc65422dc5",
"url": "https://github.com/quicwg/base-drafts/pull/3620/files/2eb8646ec7863d97336e7f8e1391391db6d57e24..7958c9f2ae14aaf59ce3cc39817173cc65422dc5",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb8a950e7a54_609e3fea50ecd96418630--


From nobody Sun May 10 18:25:27 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 A27F63A0C7F for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:25:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 YnA-XXcpvnV7 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:25:23 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8E5413A0C7C for <quic-issues@ietf.org>; Sun, 10 May 2020 18:25:23 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 1CADE1200E6 for <quic-issues@ietf.org>; Sun, 10 May 2020 18:25:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589160323; bh=Xa2I+TKj0pjgxKrb8TpTDQ1QYK9T30CsMek4ijXvcaI=; h=Date:From:To:Subject:From; b=k6wAtehLMsKdQHYpD9QQrz4yTIsu3TqG7killbh/q2FnifE/EhEhXqeaQmTBiequV yZS1pPlA3C1dCrcz6ZeGH9IN7irQiFVtQpNzBXX54yFF1LmchoiwoT9cFdmqW4hRy8 LWsFn6gd5XhCBYARhgMw9U/ueNjBQVM5Kdmv64DI=
Date: Sun, 10 May 2020 18:25:22 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c36deb-0cd85a@github.com>
Subject: [quicwg/base-drafts] 0cd85a: Script updating gh-pages from 7958c9f2. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qiRDenji5OsF7Wr3FuJ-d5jEaiY>
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: Mon, 11 May 2020 01:25:26 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0cd85a79acda99eeed763585772a1954727c4108
      https://github.com/quicwg/base-drafts/commit/0cd85a79acda99eeed763585772a1954727c4108
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-http.html
    M forgery-limit/draft-ietf-quic-http.txt
    M forgery-limit/draft-ietf-quic-invariants.html
    M forgery-limit/draft-ietf-quic-invariants.txt
    M forgery-limit/draft-ietf-quic-qpack.html
    M forgery-limit/draft-ietf-quic-qpack.txt
    M forgery-limit/draft-ietf-quic-recovery.html
    M forgery-limit/draft-ietf-quic-recovery.txt
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 7958c9f2. [ci skip]



From nobody Sun May 10 18:32:04 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 9DD883A0C7F for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:32:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 axpQGQMjqXli for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:31:58 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 127A83A0C05 for <quic-issues@ietf.org>; Sun, 10 May 2020 18:31:57 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 35D72E05E2 for <quic-issues@ietf.org>; Sun, 10 May 2020 18:31:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589160716; bh=ek/iwgkgxTudE+ME+ssuLwaSQvDNHzktUiwH/Dtege0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FRu+gYUQWICbCUrZuTXWsdC6KfH7ToA2s7leel82PPg07aWTSpN2zTZie90hFpv87 U3H+KPJnHS0K+O+neuXd7CHJVDX0R9T/NSCQo0AKODqan/seRuH3moNS22ybZDruTG ZI0D8rbNNpc4zgLNEKtbl3fjMPta8xven6GN7vlY=
Date: Sun, 10 May 2020 18:31:56 -0700
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6LZNYLCO4OM37X7HN4YSGAZEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/408810724@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb8ab0c250c1_13463f8167ecd95c121041"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chris-wood
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fLU82hznveVjRwd5WsWYMdKC20k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 01:32:02 -0000

----==_mimepart_5eb8ab0c250c1_13463f8167ecd95c121041
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@chris-wood commented on this pull request.



> +For a target advantage of 2^-60, which matches that used by {{!TLS13}}, this
+results in the relation:
+
+~~~
+q <= 2^23
+~~~
+
+That is, endpoints cannot protect more than 2^23 packets with the same set of
+keys without causing an attacker to gain an larger advantage than the target of
+2^-60.
+
+
+## Integrity Limits
+
+For integrity, Theorem 1 in {{?CCM-ANALYSIS}} establishes that an attacker
+gains an advantage over an ideal PRP of no more than:

Yep, sorry, I misinterpreted their definition of Adv^{auth}!

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#discussion_r422734053
----==_mimepart_5eb8ab0c250c1_13463f8167ecd95c121041
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@chris-wood</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r422734053">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +For a target advantage of 2^-60, which matches that used by {{!TLS13}}, this
+results in the relation:
+
+~~~
+q &lt;= 2^23
+~~~
+
+That is, endpoints cannot protect more than 2^23 packets with the same set of
+keys without causing an attacker to gain an larger advantage than the target of
+2^-60.
+
+
+## Integrity Limits
+
+For integrity, Theorem 1 in {{?CCM-ANALYSIS}} establishes that an attacker
+gains an advantage over an ideal PRP of no more than:
</pre>
<p>Yep, sorry, I misinterpreted their definition of Adv^{auth}!</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r422734053">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZEN3SS2MEOEXUBNE3RQ5IQZANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6P3CVBKUTCFO724ZDRQ5IQZA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBO7JZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620#discussion_r422734053",
"url": "https://github.com/quicwg/base-drafts/pull/3620#discussion_r422734053",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb8ab0c250c1_13463f8167ecd95c121041--


From nobody Sun May 10 18:43:44 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 2B9573A0C90 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:43:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 JH_brZ37iL_7 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:43:41 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E46993A0C8F for <quic-issues@ietf.org>; Sun, 10 May 2020 18:43:40 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id D38DF960592 for <quic-issues@ietf.org>; Sun, 10 May 2020 18:43:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589161419; bh=Q/+6mODU8z6raIhDesKDumrcugcwn2H3b+rHtgvIxWw=; h=Date:From:To:Subject:From; b=sWKuXYzyHGO2Ut2aHUblyWd7HAPm5kwvK7ZmLb53OKPKJ2IDvpCFI41FFdVXfk8N0 lCHFgEKCMgpzM0OPCr6TkE0JiCR7EGw8Pprod6H/GSOXyd0y8nBXIjLZ1QrrfqzBQT s+VnEF/i5BJ+puLebtH9Xk4E3yaO2gMvXypTTkkU=
Date: Sun, 10 May 2020 18:43:39 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/authenticate-hs-cid/e2f2b3-e30cf5@github.com>
Subject: [quicwg/base-drafts] e30cf5: Editorial comments thanks to @DavidSchinazi
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eb7mDRFB-TT_e7zZHXzTlWSyS0E>
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: Mon, 11 May 2020 01:43:43 -0000

  Branch: refs/heads/authenticate-hs-cid
  Home:   https://github.com/quicwg/base-drafts
  Commit: e30cf5fc52da2f7958901fbdf5bcbec920a60d71
      https://github.com/quicwg/base-drafts/commit/e30cf5fc52da2f7958901fbdf5bcbec920a60d71
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Editorial comments thanks to @DavidSchinazi

There are a bunch of things here, but mostly this is just a
transcription of the helpful suggestions.

I have also renamed the parameters.



From nobody Sun May 10 18:44:07 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 B85B93A0C91 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:43:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 A6YCUb5AfqhO for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:43:50 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 176723A0C92 for <quic-issues@ietf.org>; Sun, 10 May 2020 18:43:50 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 4A5DFA1D9F for <quic-issues@ietf.org>; Sun, 10 May 2020 18:43:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589161429; bh=zgkaHyHbLC4vcIoowVUFGuqVFkxa+q3Pa+8AqUuqC5s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EDqdxK6BOfzjLTbu6pRk8adpWWWcr4ga2KZXlfngLdpPGB0j8dMkypbLAhJaQJTJD 2C+r3wWELuZu75aC/8GdK821IY8ue3lRf7qQ1jivU3xyGmKMvoY9WdnwqIZsP5A2+I yq0QyVJXoSviVKkzD9zO8At5+qdmj+q8LIEwF4DA=
Date: Sun, 10 May 2020 18:43:49 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/push/5050625696@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb8add53bd04_71ab3fe6ab0cd95c127989"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZcYNT4yH7BXK7Ep0faTLCB4JCSs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 01:43:52 -0000

----==_mimepart_5eb8add53bd04_71ab3fe6ab0cd95c127989
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

e30cf5fc52da2f7958901fbdf5bcbec920a60d71  Editorial comments thanks to @DavidSchinazi


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499/files/e2f2b33800cb09add5e185e09f1512ef71e86099..e30cf5fc52da2f7958901fbdf5bcbec920a60d71

----==_mimepart_5eb8add53bd04_71ab3fe6ab0cd95c127989
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/e30cf5fc52da2f7958901fbdf5bcbec920a60d71">e30cf5f</a>  Editorial comments thanks to @DavidSchinazi</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3499/files/e2f2b33800cb09add5e185e09f1512ef71e86099..e30cf5fc52da2f7958901fbdf5bcbec920a60d71">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3W22QMB5NB6GXAKSTRQ5J5LANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK326WHXK77K6FDXVG3RQ5J5LA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4DGMZXGEZDKNSQOVZWQIZVGA2TANRSGU3DSNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499/files/e2f2b33800cb09add5e185e09f1512ef71e86099..e30cf5fc52da2f7958901fbdf5bcbec920a60d71",
"url": "https://github.com/quicwg/base-drafts/pull/3499/files/e2f2b33800cb09add5e185e09f1512ef71e86099..e30cf5fc52da2f7958901fbdf5bcbec920a60d71",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb8add53bd04_71ab3fe6ab0cd95c127989--


From nobody Sun May 10 18:44:37 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 4C1C13A0C93 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:44:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 FM_xRbVHvkPo for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 18:44:30 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CB2693A0C91 for <quic-issues@ietf.org>; Sun, 10 May 2020 18:44:30 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 28F81A005F for <quic-issues@ietf.org>; Sun, 10 May 2020 18:44:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589161470; bh=0iIegvwAEa1JfRP/RStu33IapSOO7UC51tJg8E3qdro=; h=Date:From:To:Subject:From; b=P+IOx7xwlKRw35Bto81fYoZeA91z89x13OGUG5h9QQ/ihuLYWWLyKLhXOT4J+EEvd ss0GrXIfksllk5lDBTkjVbrYqTsScgKmwfSg5zS84z06rwM46BXlyr3LMEAvoqVcY9 PfoXVAk2EjtPH/At4IrfW9ahegLMOoKrWErSceEQ=
Date: Sun, 10 May 2020 18:44:30 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0cd85a-361274@github.com>
Subject: [quicwg/base-drafts] 361274: Script updating gh-pages from e30cf5fc. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GKgvNQPTh30zeD6-5yf72sqXnOU>
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: Mon, 11 May 2020 01:44:33 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3612747a761ce65246dc40fb410f467120ffb0d1
      https://github.com/quicwg/base-drafts/commit/3612747a761ce65246dc40fb410f467120ffb0d1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M authenticate-hs-cid/draft-ietf-quic-http.html
    M authenticate-hs-cid/draft-ietf-quic-http.txt
    M authenticate-hs-cid/draft-ietf-quic-invariants.html
    M authenticate-hs-cid/draft-ietf-quic-invariants.txt
    M authenticate-hs-cid/draft-ietf-quic-qpack.html
    M authenticate-hs-cid/draft-ietf-quic-qpack.txt
    M authenticate-hs-cid/draft-ietf-quic-recovery.html
    M authenticate-hs-cid/draft-ietf-quic-recovery.txt
    M authenticate-hs-cid/draft-ietf-quic-tls.html
    M authenticate-hs-cid/draft-ietf-quic-tls.txt
    M authenticate-hs-cid/draft-ietf-quic-transport.html
    M authenticate-hs-cid/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from e30cf5fc. [ci skip]



From nobody Sun May 10 22:21:15 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 1ECCF3A07C8 for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 22:21:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.098
X-Spam-Level: 
X-Spam-Status: No, score=-3.098 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 wMwvjnZbU_oU for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 22:21:07 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F129B3A07C6 for <quic-issues@ietf.org>; Sun, 10 May 2020 22:21:06 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 4A27D8C0030 for <quic-issues@ietf.org>; Sun, 10 May 2020 22:21:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589174465; bh=xptBouheCT3igpDbiTjKjKdYXNzjct2YsNsTt28Bzhk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dn54Ag2xvT+XZTgiO2JIiGwrwXadUFIw9qFUqZs/e0scQGkP529Xn1tJdM2VwnCl1 fIWn9DoXVDKXgXTr/flV4R37uuddpeSaWLcC2n2Gg6UtAdtU3pSGxcCbrMHtKXujHZ UQ6IND8zdqH0nty3A8EZIzhW1ygwoaDCzIkaLyLk=
Date: Sun, 10 May 2020 22:21:05 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ6XW6ZH22ZT7XDJBN4YTA4DEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/408853491@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb8e0c13a812_2fcb3fc5784cd95c1161f6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/srYqxdFxDhrBD2rTP1pseWjhPvk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 05:21:13 -0000

----==_mimepart_5eb8e0c13a812_2fcb3fc5784cd95c1161f6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann commented on this pull request.



> +first Initial packet it sent in the initial_source_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field from the first Initial packet it received from
+the client in the original_destination_connection_id transport parameter; if
+the server sent a Retry packet this refers to the first Initial packet received
+before sending the Retry packet. If it sends a Retry packet, a server also
+includes the Source Connection ID field from the Retry packet in the
+retry_source_connection_id transport parameter.
+
+The values provided by a peer for these transport parameters MUST match the
+values that an endpoint used in the Destination and Source Connection ID fields
+of Initial packets that it sent. Including connection ID values in transport
+parameters and verifying them ensures that that an attacker cannot influence
+the choice of connection ID for a successful connection by injecting packets
+carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
+treat any of the following as a connection error of type PROTOCOL_VIOLATION:

The absence / presence checks should result in TRANSPORT_PARAMETER_ERROR.

> @@ -1503,7 +1548,7 @@ An endpoint MUST NOT send a parameter more than once in a given transport
 parameters extension.  An endpoint SHOULD treat receipt of duplicate transport
 parameters as a connection error of type TRANSPORT_PARAMETER_ERROR.
 
-A server MUST include the original_connection_id transport parameter
+A server MUST include the original_destination_connection_id transport parameter

This is inconsistent with the error condition above:

> * absence of the original_destination_connection_id transport parameter from the server"

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-408853491
----==_mimepart_5eb8e0c13a812_2fcb3fc5784cd95c1161f6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422775281">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +first Initial packet it sent in the initial_source_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field from the first Initial packet it received from
+the client in the original_destination_connection_id transport parameter; if
+the server sent a Retry packet this refers to the first Initial packet received
+before sending the Retry packet. If it sends a Retry packet, a server also
+includes the Source Connection ID field from the Retry packet in the
+retry_source_connection_id transport parameter.
+
+The values provided by a peer for these transport parameters MUST match the
+values that an endpoint used in the Destination and Source Connection ID fields
+of Initial packets that it sent. Including connection ID values in transport
+parameters and verifying them ensures that that an attacker cannot influence
+the choice of connection ID for a successful connection by injecting packets
+carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
+treat any of the following as a connection error of type PROTOCOL_VIOLATION:
</pre>
<p>The absence / presence checks should result in TRANSPORT_PARAMETER_ERROR.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422785579">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1503,7 +1548,7 @@ An endpoint MUST NOT send a parameter more than once in a given transport
 parameters extension.  An endpoint SHOULD treat receipt of duplicate transport
 parameters as a connection error of type TRANSPORT_PARAMETER_ERROR.
 
-A server MUST include the original_connection_id transport parameter
+A server MUST include the original_destination_connection_id transport parameter
</pre>
<p>This is inconsistent with the error condition above:</p>
<blockquote>
<ul>
<li>absence of the original_destination_connection_id transport parameter from the server"</li>
</ul>
</blockquote>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-408853491">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZ6JC4WJSTNZLHHEDRQ6DMDANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4JZO2DQC2DTDB33YDRQ6DMDA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBPJX4Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-408853491",
"url": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-408853491",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb8e0c13a812_2fcb3fc5784cd95c1161f6--


From nobody Sun May 10 23:08:51 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 482B43A079D for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 23:08:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.039
X-Spam-Level: 
X-Spam-Status: No, score=-1.039 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 lNjNrGJLKfYA for <quic-issues@ietfa.amsl.com>; Sun, 10 May 2020 23:08:45 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ECEB93A07FD for <quic-issues@ietf.org>; Sun, 10 May 2020 23:08:44 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 99C958C078B for <quic-issues@ietf.org>; Sun, 10 May 2020 23:08:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589177323; bh=3WKPogjWmKL99Ckma1zxSOT1F4kFygYeK0Iz5C0VYSg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KtvXH6f8HFvu7Lt3W8YmwsjDGB+T3jy5ic+nc6kbYWzVvywS2HMf6wPxNwNZwWy/r CpMU3ConBSEormBzbxaRRIL5aBKEMhdKsE2BTSxqa6COq9StgMsUGEUAYo7HiMHvHX PlGbBnz4ZAg8Ew9XQvszTsNfA99Q5cvCTWOndolE=
Date: Sun, 10 May 2020 23:08:43 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5OCWXXQJH2HGTM2DF4YTGOXEVBNHHCJL2E7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3640/review/408882136@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3640@github.com>
References: <quicwg/base-drafts/pull/3640@github.com>
Subject: Re: [quicwg/base-drafts] Limit sending by the anti-amplification factor (#3640)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb8ebeb89b3d_2d6b3ff981ecd96023042d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qVsXV8HbMRL8Aez7f7udPHaSa0U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 06:08:49 -0000

----==_mimepart_5eb8ebeb89b3d_2d6b3ff981ecd96023042d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3640#pullrequestreview-408882136
----==_mimepart_5eb8ebeb89b3d_2d6b3ff981ecd96023042d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3640#pullrequestreview-408882136">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4D6BA57PIVHQRQZADRQ6I6XANCNFSM4M5MJEGA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZEZ7272ZDNLU5BDBLRQ6I6XA5CNFSM4M5MJEGKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBPQXWA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3640#pullrequestreview-408882136",
"url": "https://github.com/quicwg/base-drafts/pull/3640#pullrequestreview-408882136",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb8ebeb89b3d_2d6b3ff981ecd96023042d--


From nobody Mon May 11 04:59:22 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 6AA913A0921 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 04:59:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 Z3KJ5qkesQ5v for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 04:59:10 -0700 (PDT)
Received: from out-15.smtp.github.com (out-15.smtp.github.com [192.30.254.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DA2E83A08E9 for <quic-issues@ietf.org>; Mon, 11 May 2020 04:59:09 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 297F126156E for <quic-issues@ietf.org>; Mon, 11 May 2020 04:59:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589198349; bh=oDiDda2OXHV/3vYT4GY0S8XS7una4RKkvhJiSlTbKWs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=F8sMozGXNJgURW1ndBG/sAAE15kSJ3d792WZc9uuJ+XyRSWuENWA61uvkioLn/wuh L2zMZJYotgRnzzGwSEmxJDNr9e12wovLT0WEOFaJmLrHuCb8RyDfMiryaNshqngEU3 aMGFEGDjxh2yEvxpkFfYrY6TI4GRpCrbqmaw4XgM=
Date: Mon, 11 May 2020 04:59:08 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ2FFPEOE7Z7WNJH754YUPQZEVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/409100521@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb93e0cb83dc_2ead3fd3cf2cd96c1253d5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ISovw6mVIb2dTPt6HS3I-cSko7A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 11:59:18 -0000

----==_mimepart_5eb93e0cb83dc_2ead3fd3cf2cd96c1253d5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr commented on this pull request.



> @@ -1084,10 +1084,10 @@ Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
 be used again and requests that the peer replace it with a new connection ID
 using a NEW_CONNECTION_ID frame.
 
-As discussed in {{migration-linkability}}, endpoints limit the use of a
-connection ID to a single network path where possible. Endpoints SHOULD retire
-connection IDs when no longer actively using the network path on which the
-connection ID was used.
+As discussed in {{migration-linkability}}, endpoints MUST limit the use of a
+connection ID to packets sent from a single local address.  Endpoints SHOULD
+retire connection IDs when they are no longer actively using the network path on
+which the connection ID was used.

Perhaps the problem is the use of "network path". As I understand it, the requirement here is that from your perspective the 5-tuple be the same, right? The issue is that with NAT your perspective and others may different. So  perhaps "MUST limit the use of a connection ID to a single pair of remote/local address"

> @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.

Do we actually have to make this exception? I haven't been tracking all of the conversations, but why not just have endpoints use a new CID in this case.

In general an endpoint MUST limit the use of a connection ID to a single pair of remote and local addresses. This prevents linkage between network paths. However, if an endpoint may experiences unexpected NAT rebinding, that endpoint's peer may receive a packet from a new remote address but reusing an existing connection ID, thus apparently violating this rule linking those paths. [TODO: Something about how you have to accept this?]
As an exception to the rule above, if an endpoint sees a given connection ID reused from a new remote address, it MAY also reuse its corresponding connection ID when sending to that address, as long as it sends from the same local address.




-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#discussion_r422984471
----==_mimepart_5eb93e0cb83dc_2ead3fd3cf2cd96c1253d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ekr</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r422984471">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1084,10 +1084,10 @@ Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
 be used again and requests that the peer replace it with a new connection ID
 using a NEW_CONNECTION_ID frame.
 
-As discussed in {{migration-linkability}}, endpoints limit the use of a
-connection ID to a single network path where possible. Endpoints SHOULD retire
-connection IDs when no longer actively using the network path on which the
-connection ID was used.
+As discussed in {{migration-linkability}}, endpoints MUST limit the use of a
+connection ID to packets sent from a single local address.  Endpoints SHOULD
+retire connection IDs when they are no longer actively using the network path on
+which the connection ID was used.
</pre>
<p>Perhaps the problem is the use of "network path". As I understand it, the requirement here is that from your perspective the 5-tuple be the same, right? The issue is that with NAT your perspective and others may different. So  perhaps "MUST limit the use of a connection ID to a single pair of remote/local address"</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r422987922">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.
</pre>
<p>Do we actually have to make this exception? I haven't been tracking all of the conversations, but why not just have endpoints use a new CID in this case.</p>
<p>In general an endpoint MUST limit the use of a connection ID to a single pair of remote and local addresses. This prevents linkage between network paths. However, if an endpoint may experiences unexpected NAT rebinding, that endpoint's peer may receive a packet from a new remote address but reusing an existing connection ID, thus apparently violating this rule linking those paths. [TODO: Something about how you have to accept this?]<br>
As an exception to the rule above, if an endpoint sees a given connection ID reused from a new remote address, it MAY also reuse its corresponding connection ID when sending to that address, as long as it sends from the same local address.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r422984471">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5UOF4OTKZUGRQ3NNLRQ7SAZANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3MMCPEQQZYLZHYNS3RQ7SAZA5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBRGB2I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r422984471",
"url": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r422984471",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb93e0cb83dc_2ead3fd3cf2cd96c1253d5--


From nobody Mon May 11 05:52:31 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 605813A0A90 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 05:52:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 gMYmzlzW86ZQ for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 05:52:25 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 43A103A0A8E for <quic-issues@ietf.org>; Mon, 11 May 2020 05:52:25 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id D63ECA0A97 for <quic-issues@ietf.org>; Mon, 11 May 2020 05:52:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589201543; bh=uChkWH2M3sVaT3YEvvTy0Wb/xXsqdy2ijdiw7MwQuiU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Yn4pGiFRUYodb+7p8POHXxt8uuQUji7E6MNM5DAgZF2QdEiyrrblkkouPXifM4ij4 4x/ZZTAdjK62MkgqAtTJF/LPaStjLam3I7RhjROiupQcKNHWBQwegCd9qjwHFSQ+CC 6bKG4K90o2sg1bm3vBQRf6nGJ2+7XR2yNcqjvSoM=
Date: Mon, 11 May 2020 05:52:23 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4ZJW6WAZVYPSVAPBN4YUVYPEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/409141491@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb94a87b4e4b_337a3ffaeb6cd95c147970"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hr6PEVJjPe0AGaW1iJl9cAqA_vQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 12:52:29 -0000

----==_mimepart_5eb94a87b4e4b_337a3ffaeb6cd95c147970
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-409141491
----==_mimepart_5eb94a87b4e4b_337a3ffaeb6cd95c147970
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-409141491">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3MTAJVDYCWIBVPUB3RQ7YIPANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5A3XNAA7V6VW2SOZLRQ7YIPA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBRQB4Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-409141491",
"url": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-409141491",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb94a87b4e4b_337a3ffaeb6cd95c147970--


From nobody Mon May 11 10:09:50 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 DFF313A0B06 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:03:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.552
X-Spam-Level: 
X-Spam-Status: No, score=-1.552 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 brW0TzvnLour for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:02:44 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F30913A0922 for <quic-issues@ietf.org>; Mon, 11 May 2020 10:02:40 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 790CF6A112A for <quic-issues@ietf.org>; Mon, 11 May 2020 10:02:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589216559; bh=bASYQqCYdwpKpWhSi9X7sJemMp5l8slXGcYzipVVvVs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oh8Ayap+H4/oqz0gUdku0bm7R1toj46W2G7gVxVmVFthAjOh7pLdM2FHdXPUvSqco tVIRZVR5PDEUEUxjpZPK+UAbo9iPWaSL7EKP8OeNeTfMwl0eTBwK4JNsaevlHQwLK5 TTElNqurbyyumMOXA5GEKOec6IONLgZIWvgdHenU=
Date: Mon, 11 May 2020 10:02:39 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZRCWMNNF4JWZZLTQF4YVTC7EVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/c626827846@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9852f6a30a_5f3d3f82b72cd96c132160"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lPBsmQTScEycofbzl2FqWgzp8yE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 17:03:17 -0000

----==_mimepart_5eb9852f6a30a_5f3d3f82b72cd96c132160
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Is it not necessary to authenticate both client CIDs in a Retry scenario?

C->S: Initial SCID = C1 (attacker modifies to C2), DCID = S1
C<-S: Retry SCID = S2, DCID = C1
C->S: Initial SCID = C1, DCID = S2
C<-S: Initial SCID = S3, DCID = C1
....
C->S: Short DCID = S3
C<-S: Short DCID = C1

Admittedly, I don't really understand the threat model here, but this isn't authenticate unless the Initial SCID is in the Token. I don't think a TP is needed, as the server can reject the 2nd initial if there's a mismatch in SCID.

Relatedly, if it's written anywhere that the client MUST NOT change its CID during a Retry, it's not in a place that's obvious to me.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#issuecomment-626827846
----==_mimepart_5eb9852f6a30a_5f3d3f82b72cd96c132160
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Is it not necessary to authenticate both client CIDs in a Retry scenario?</p>
<p>C-&gt;S: Initial SCID = C1 (attacker modifies to C2), DCID = S1<br>
C&lt;-S: Retry SCID = S2, DCID = C1<br>
C-&gt;S: Initial SCID = C1, DCID = S2<br>
C&lt;-S: Initial SCID = S3, DCID = C1<br>
....<br>
C-&gt;S: Short DCID = S3<br>
C&lt;-S: Short DCID = C1</p>
<p>Admittedly, I don't really understand the threat model here, but this isn't authenticate unless the Initial SCID is in the Token. I don't think a TP is needed, as the server can reject the 2nd initial if there's a mismatch in SCID.</p>
<p>Relatedly, if it's written anywhere that the client MUST NOT change its CID during a Retry, it's not in a place that's obvious to me.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#issuecomment-626827846">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK25JIPKDH5VXKUKN6DRRAVS7ANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2BVQ65FMQP3PNQGQDRRAVS7A5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVOKERQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#issuecomment-626827846",
"url": "https://github.com/quicwg/base-drafts/pull/3499#issuecomment-626827846",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9852f6a30a_5f3d3f82b72cd96c132160--


From nobody Mon May 11 10:36:22 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 5F7C83A0BA9 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:36:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Kcrr2jQgslw0 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:35:56 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C2B063A0B68 for <quic-issues@ietf.org>; Mon, 11 May 2020 10:35:55 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id EB3DE961787 for <quic-issues@ietf.org>; Mon, 11 May 2020 10:35:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589218553; bh=JycTkzBhMPMaZGWb4V1Shyth8PPxxuLP1ptI7o8pKIk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VaH1g3hY84mrSiGPzUpmp4WvCZSl+Mdqi6CiOMtVEvqYzdxCzU4qv8sgEsIIYiMkn 6OMiIw0iEP8npYvKcp0idcbubads67pUxYO5bAEJ0qrTT/pBgoIloSPkXk81gE732G 7/YoYqKWAZAt+uk44IzEhb0oOyqKHe25XTgTj98k=
Date: Mon, 11 May 2020 10:35:53 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYDW4YPRWKH57U3T554YVW7TEVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/409384786@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb98cf9de04f_1c253fc9740cd960350a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: erickinnear
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jhBY5xQjbuE6N-dUhGBU5zps2K0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 17:36:17 -0000

----==_mimepart_5eb98cf9de04f_1c253fc9740cd960350a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear commented on this pull request.



> @@ -1084,10 +1084,10 @@ Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
 be used again and requests that the peer replace it with a new connection ID
 using a NEW_CONNECTION_ID frame.
 
-As discussed in {{migration-linkability}}, endpoints limit the use of a
-connection ID to a single network path where possible. Endpoints SHOULD retire
-connection IDs when no longer actively using the network path on which the
-connection ID was used.
+As discussed in {{migration-linkability}}, endpoints MUST limit the use of a
+connection ID to packets sent from a single local address.  Endpoints SHOULD
+retire connection IDs when they are no longer actively using the network path on
+which the connection ID was used.

> Perhaps the problem is the use of "network path".

I would agree, I think we've been trying to steer away from "network path" in favor of things from the perspective of each endpoint.

> The point about NAT rebinding/inadvertent migration here is not relevant and somewhat distracting.

The NAT rebinding is something that's been covered elsewhere already, I believe, but every review that we've had of this text has resulted in someone raising their hand to say "don't forget about NAT rebinding here", so have kept text in to settle that.

> The issue is that with NAT your perspective and others may different.

When we distilled this down, we went from the perspective of the requirements that are placed on each endpoint to help cope with this.

> This text is now contradictory, because I can send from A -> B and A->C

That shouldn't be the case: 
```
An endpoint MUST NOT reuse a connection ID when sending from more than one local
address, ...
```
```
Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
one destination address.
```

I think we can change the text above to not mention a "network path" and instead talk about the destination address, since that's what we really mean in this case.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#discussion_r423205675
----==_mimepart_5eb98cf9de04f_1c253fc9740cd960350a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@erickinnear</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423205675">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1084,10 +1084,10 @@ Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
 be used again and requests that the peer replace it with a new connection ID
 using a NEW_CONNECTION_ID frame.
 
-As discussed in {{migration-linkability}}, endpoints limit the use of a
-connection ID to a single network path where possible. Endpoints SHOULD retire
-connection IDs when no longer actively using the network path on which the
-connection ID was used.
+As discussed in {{migration-linkability}}, endpoints MUST limit the use of a
+connection ID to packets sent from a single local address.  Endpoints SHOULD
+retire connection IDs when they are no longer actively using the network path on
+which the connection ID was used.
</pre>
<blockquote>
<p>Perhaps the problem is the use of "network path".</p>
</blockquote>
<p>I would agree, I think we've been trying to steer away from "network path" in favor of things from the perspective of each endpoint.</p>
<blockquote>
<p>The point about NAT rebinding/inadvertent migration here is not relevant and somewhat distracting.</p>
</blockquote>
<p>The NAT rebinding is something that's been covered elsewhere already, I believe, but every review that we've had of this text has resulted in someone raising their hand to say "don't forget about NAT rebinding here", so have kept text in to settle that.</p>
<blockquote>
<p>The issue is that with NAT your perspective and others may different.</p>
</blockquote>
<p>When we distilled this down, we went from the perspective of the requirements that are placed on each endpoint to help cope with this.</p>
<blockquote>
<p>This text is now contradictory, because I can send from A -&gt; B and A-&gt;C</p>
</blockquote>
<p>That shouldn't be the case:</p>
<pre><code>An endpoint MUST NOT reuse a connection ID when sending from more than one local
address, ...
</code></pre>
<pre><code>Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
one destination address.
</code></pre>
<p>I think we can change the text above to not mention a "network path" and instead talk about the destination address, since that's what we really mean in this case.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423205675">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3KRZNUBKERXTV3KBTRRAZPTANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4CDWN2JIGFQJVOQF3RRAZPTA5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBTLOUQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423205675",
"url": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423205675",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb98cf9de04f_1c253fc9740cd960350a--


From nobody Mon May 11 10:43:14 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 AFF3B3A0A9F for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:41:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 2o8pAFlNjUGy for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:41:35 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EAF2A3A0B47 for <quic-issues@ietf.org>; Mon, 11 May 2020 10:41:34 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 9E3A92C210B for <quic-issues@ietf.org>; Mon, 11 May 2020 10:41:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589218893; bh=49WfUPfJYLuS34Pd/ofw85L+15IuS/vjIq8AfTqKIB4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XgDlcOBKdTjuwaawszvIUcOUz9mNze7hGkJCLIz8FIcSVMntTdM5ciG1+aqnKIyXK nGRptqHY197menxGoCGsEP4SQVYFe8UaAur8HoEqHQhqXiG7OQIum9xIi/E1XVx/vv QKZGBNRjBnJiU6FzIlFeAZpBAbldtYSrmsY5bt+g=
Date: Mon, 11 May 2020 10:41:33 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/push/5054814826@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb98e4d86c99_62fe3fa4ccecd960126291"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gbnZfja2vUom5ISaMjU27vgN1lk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 17:41:45 -0000

----==_mimepart_5eb98e4d86c99_62fe3fa4ccecd960126291
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke pushed 1 commit.

017c103440f89092773ab11edd6529972448f2bf  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547/files/f436727acd7dcd49d613cac8ec032a9934c3f6ef..017c103440f89092773ab11edd6529972448f2bf

----==_mimepart_5eb98e4d86c99_62fe3fa4ccecd960126291
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinduke" class="user-mention">@martinduke</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/017c103440f89092773ab11edd6529972448f2bf">017c103</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3547/files/f436727acd7dcd49d613cac8ec032a9934c3f6ef..017c103440f89092773ab11edd6529972448f2bf">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY2CJFG6QWCKYULBDLRRA2E3ANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6B7Q33HGV57MMRSQTRRA2E3A5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4TINBQHA3DSNKQOVZWQIZVGA2TIOBRGQ4DENQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547/files/f436727acd7dcd49d613cac8ec032a9934c3f6ef..017c103440f89092773ab11edd6529972448f2bf",
"url": "https://github.com/quicwg/base-drafts/pull/3547/files/f436727acd7dcd49d613cac8ec032a9934c3f6ef..017c103440f89092773ab11edd6529972448f2bf",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb98e4d86c99_62fe3fa4ccecd960126291--


From nobody Mon May 11 10:49:37 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 F40633A0B4D for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:49:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 SwHPqaxBZtP5 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:49:25 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BC2AA3A0854 for <quic-issues@ietf.org>; Mon, 11 May 2020 10:49:24 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id B6ECBA1234 for <quic-issues@ietf.org>; Mon, 11 May 2020 10:49:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589219363; bh=26NN4419zSBi4HdXBT0KBbSNJBADxJBityC+tl15+Ho=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QA1mq0nZFVezC//k2oPvBOcnwR4Y5/fSxSj3LvWbPqoD3mafFBNtC6d8axZdqXXSS dQpY1aTFgIKXp+eV4SCJ3BwsUqdUnQgHfD8ww7ETCzwFQvn8RZTmd3bb/lHH89YV4r 6sxoV2b9LAuR1bqWOH7McXWhuMezs+Fxy96mQMIA=
Date: Mon, 11 May 2020 10:49:23 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6Q7MO43JWPJOTODGF4YVYSHEVBNHHCGFYIAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/review/409394322@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb99023a88c6_46813fc1fbacd968953e8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: erickinnear
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/viIv6QVbkgAYnKWczCK7NRt3XLk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 17:49:34 -0000

----==_mimepart_5eb99023a88c6_46813fc1fbacd968953e8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear approved this pull request.



> @@ -1077,7 +1077,7 @@ having too many connection IDs in need of retirement as a connection error of
 type CONNECTION_ID_LIMIT_ERROR.
 
 Endpoints SHOULD NOT issue updates of the Retire Prior To field before receiving
-RETIRE_CONNECTION_ID frames for the previous update of Retire Prior To.
+RETIRE_CONNECTION_ID frames that retire all connection IDs indicated by the previous Retire Prior To value.

Just wrapping:
```suggestion
RETIRE_CONNECTION_ID frames that retire all connection IDs indicated by the 
previous Retire Prior To value.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547#pullrequestreview-409394322
----==_mimepart_5eb99023a88c6_46813fc1fbacd968953e8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@erickinnear</b> approved this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3547#discussi=
on_r423213122">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1077,7 +1077,7 @@ having too many conn=
ection IDs in need of retirement as a connection error of=0D
 type CONNECTION_ID_LIMIT_ERROR.=0D
 =0D
 Endpoints SHOULD NOT issue updates of the Retire Prior To field before r=
eceiving=0D
-RETIRE_CONNECTION_ID frames for the previous update of Retire Prior To.=0D=

+RETIRE_CONNECTION_ID frames that retire all connection IDs indicated by =
the previous Retire Prior To value.=0D
</pre>=0D
<p>Just wrapping:</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-RETIRE_CONNECTION_ID frames that retire all c=
onnection IDs indicated by the previous Retire Prior To value.=0D
+RETIRE_CONNECTION_ID frames that retire all connection IDs indicated by =
the =0D
+previous Retire Prior To value.=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3547#pullrequestreview-409394322">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K4JRZ2AER54IQF7TFTRRA3CHANCNFSM4LUQW5DQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK42GWSMDBUMP7VULL3RRA3CHA5CNFSM4=
LUQW5D2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODBTNZEQ.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3547#pullrequestrev=
iew-409394322",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3547#pullrequestreview=
-409394322",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb99023a88c6_46813fc1fbacd968953e8--


From nobody Mon May 11 10:51:42 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 265693A0AF5 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:50:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.551
X-Spam-Level: 
X-Spam-Status: No, score=-1.551 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 sePD6jxFyf7L for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:50:41 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 188023A0ACF for <quic-issues@ietf.org>; Mon, 11 May 2020 10:50:40 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 1AE8E6A1F1C for <quic-issues@ietf.org>; Mon, 11 May 2020 10:50:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589219439; bh=+8FSteTr1X5YhaGlq6ihIzCOsguEeDFqMt0QpOhpb6M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ba6vcZU2gEXs7DE1olqRupffWb3al2+FjghR8Gg8dzTIHzSKh3A7Hj78fFJlJg9n2 rUTyX9rDuaBaBdUcv6QUGHZfkeBDW8JQoX1mznw72enWjxQIcXtCM2/vDkv/b2iVIz gMhGzYxKaPG52+98uIsb7NLerhIdl7xwy1XnsSts=
Date: Mon, 11 May 2020 10:50:39 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/push/5054860155@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9906fb231_14c03fa742ecd96015383d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BCAWFbXRhPLv5NQRVHpoeTFMQ2c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 17:50:48 -0000

----==_mimepart_5eb9906fb231_14c03fa742ecd96015383d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke pushed 1 commit.

5b9205c5c06f3b3a06dde340d9418d81f9e64a68  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547/files/017c103440f89092773ab11edd6529972448f2bf..5b9205c5c06f3b3a06dde340d9418d81f9e64a68

----==_mimepart_5eb9906fb231_14c03fa742ecd96015383d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinduke" class="user-mention">@martinduke</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/5b9205c5c06f3b3a06dde340d9418d81f9e64a68">5b9205c</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3547/files/017c103440f89092773ab11edd6529972448f2bf..5b9205c5c06f3b3a06dde340d9418d81f9e64a68">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYL3XQT4WX4EKDM53DRRA3G7ANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYXGUKN7FVBOHAALTDRRA3G7A5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4TINBQHA3DSNKQOVZWQIZVGA2TIOBWGAYTKNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547/files/017c103440f89092773ab11edd6529972448f2bf..5b9205c5c06f3b3a06dde340d9418d81f9e64a68",
"url": "https://github.com/quicwg/base-drafts/pull/3547/files/017c103440f89092773ab11edd6529972448f2bf..5b9205c5c06f3b3a06dde340d9418d81f9e64a68",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb9906fb231_14c03fa742ecd96015383d--


From nobody Mon May 11 10:53:03 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 B562C3A0BAA for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:52:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Xjv9IBmxZ6oN for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:52:57 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4ADA83A0C75 for <quic-issues@ietf.org>; Mon, 11 May 2020 10:52:43 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 790CB960CE5 for <quic-issues@ietf.org>; Mon, 11 May 2020 10:52:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589219562; bh=7CLHDsLVqnCj3f4HcHiuohouiVYZhcV0AEvA4z+1IY4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IapH7WMh61QcNpGLIScbfOVLNMgbrZRsFeJuf5FbXZJKTR1hU+UqImpK6l5vyfNuu Wze6SF9u8gwQumEKoLVyClSWgzGw/x94s8NjINXkma1mMet/Ly6PaWfQd3pDevzPd4 b9vX4WHT6uhvTM3utwhqs2f3mX1Q+lDckzNwvqVI=
Date: Mon, 11 May 2020 10:52:42 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZPAYO3OWP3AHFZIS54YVY6VEVBNHHCGFYIAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/review/409396886@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb990ea6b1df_330b3fced42cd96c76676"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9wJ22TXsFNR54kOz02DZg_eakrw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 17:52:59 -0000

----==_mimepart_5eb990ea6b1df_330b3fced42cd96c76676
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke commented on this pull request.



> @@ -1069,6 +1069,15 @@ to cease using the connection IDs when requested can result in connection
 failures, as the issuing endpoint might be unable to continue using the
 connection IDs with the active connection.
 
+An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST
+NOT forget a connection ID without retiring it, though MAY choose to treat
+having too many connection IDs in need of retirement as a connection error of

How about "though it MAY choose to treat having more connection IDs in need of retirement than is consistent with a manageable amount of states as a connection error..."?

A number doesn't feel right here, but I'm open to wording suggestions.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547#discussion_r423215145
----==_mimepart_5eb990ea6b1df_330b3fced42cd96c76676
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinduke</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3547#discussion_r423215145">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1069,6 +1069,15 @@ to cease using the connection IDs when requested can result in connection
 failures, as the issuing endpoint might be unable to continue using the
 connection IDs with the active connection.
 
+An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST
+NOT forget a connection ID without retiring it, though MAY choose to treat
+having too many connection IDs in need of retirement as a connection error of
</pre>
<p>How about "though it MAY choose to treat having more connection IDs in need of retirement than is consistent with a manageable amount of states as a connection error..."?</p>
<p>A number doesn't feel right here, but I'm open to wording suggestions.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3547#discussion_r423215145">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK72V3BWRKYFYWQ2MCDRRA3OVANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3WBGAU3LYS7UGREPLRRA3OVA5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBTONFQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547#discussion_r423215145",
"url": "https://github.com/quicwg/base-drafts/pull/3547#discussion_r423215145",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb990ea6b1df_330b3fced42cd96c76676--


From nobody Mon May 11 10:56:43 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 2C86E3A0ACF for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:56:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.48
X-Spam-Level: 
X-Spam-Status: No, score=-6.48 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 K3YsM_lPajD5 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 10:56:39 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 65ADB3A0544 for <quic-issues@ietf.org>; Mon, 11 May 2020 10:56:39 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 37655E1121 for <quic-issues@ietf.org>; Mon, 11 May 2020 10:56:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589219798; bh=o0BhMNPaWQAVDTjyJVoPl8WHdFlJKo2gC97S4PrmHx4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OL0N/jLQz79IukTuTCDLo9aTFQh6l+YcoQkf7Sgab8ILc/MnzPYUi9RHJd3kDNUgl ITbQ8OVOffNTJJKPbJRa5vl/wddUK53zlmg9qOkae+bZml/OQcTYEF725hccTrHoiJ CUBNCcCX/hM1hNBhzqBLB2FES3q2c4JDtbXZ7Xdg=
Date: Mon, 11 May 2020 10:56:38 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK22GCBV4BURUE5D4H54YVZNNEVBNHHCGFYIAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/review/409399772@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb991d626b6b_1e9c3fa3d26cd96820000"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xcqs-_2JnQFHE3iO-CDNLcSndLE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 17:56:42 -0000

----==_mimepart_5eb991d626b6b_1e9c3fa3d26cd96820000
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke commented on this pull request.



> +An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST

@ekr, "outstanding RETIRE_CONNECTION_ID" implies the frame is actually in flight, which may not be the case for state management reasons. I think @martinthomson 's edit resolves this problem, so I'm going to commit that one. Hopefully it addresses your concerns.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547#discussion_r423217364
----==_mimepart_5eb991d626b6b_1e9c3fa3d26cd96820000
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinduke</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3547#discussion_r423217364">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST
</pre>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ekr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ekr">@ekr</a>, "outstanding RETIRE_CONNECTION_ID" implies the frame is actually in flight, which may not be the case for state management reasons. I think <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> 's edit resolves this problem, so I'm going to commit that one. Hopefully it addresses your concerns.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3547#discussion_r423217364">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK33JP3Z7QNTKMUD2Q3RRA35NANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZKCCOFBOEXTFIVB73RRA35NA5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBTPDXA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547#discussion_r423217364",
"url": "https://github.com/quicwg/base-drafts/pull/3547#discussion_r423217364",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb991d626b6b_1e9c3fa3d26cd96820000--


From nobody Mon May 11 11:09:29 2020
Return-Path: <bounces+848413-a050-quic-issues=ietf.org@sgmail.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 C98073A0B44 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 11:09:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.726
X-Spam-Level: 
X-Spam-Status: No, score=-1.726 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, UNPARSEABLE_RELAY=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 6RMvKdNWNnXc for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 11:09:22 -0700 (PDT)
Received: from o1.sgmail.github.com (o1.sgmail.github.com [192.254.114.176]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1EA303A0A60 for <quic-issues@ietf.org>; Mon, 11 May 2020 11:07:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=3inENj7XT1GwwXE5WHtfu4hz2RtdCluboswoz7cDcQQ=; b= o8lyFLsrSKd3q/NtkH0acoNBjjQUn6VKpvTZoHNJHxCiM2trIns0869kwUKHwDXq IB5Npnl4JZIj81b0Boj5byrwGZUhObcVoiF56TB7NnkgHLYb5ZV6DHG+PRcLqv1C 4ytQ1aQNZhs/ccdYQUs6AsOwbqw2+uVr1BqEIeOSDoU=
Received: by filter1345p1mdw1.sendgrid.net with SMTP id filter1345p1mdw1-11468-5EB992C9-A 2020-05-11 18:00:41.409120312 +0000 UTC m=+2217766.621785943
Received: from out-7.smtp.github.com (unknown) by geopod-ismtpd-4-2 (SG) with ESMTP id paiL90esQ_eNr8oziSg_Ng for <quic-issues@ietf.org>; Mon, 11 May 2020 18:00:41.400 +0000 (UTC)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 4785F2C0B82 for <quic-issues@ietf.org>; Mon, 11 May 2020 11:00:36 -0700 (PDT)
Date: Mon, 11 May 2020 18:00:41 +0000 (UTC)
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/push/5054908746@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb992c438a90_4b523fe5188cd95c194a9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak2IeTLNQBagf7D9fLBaXl9s+VsYy5CG0M+AHS QefJ7Qv9nnuntlfzEjIS3QhvDgwEbCzQyIc2/WSwmQyzhTD4IA/qOxXf9WtYpdqsYgfXzwqYMUBowf 4mTN3M+zeO3wuhdpYviMIc9yrX1laB5HHeVXu/WXqdXu7/a2QwhZFrzSHOy7ph+eHfkt2XQ8EkRJrj s=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/86cKIJXk_ujcc8_AId_woN_YpIs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 18:09:27 -0000

----==_mimepart_5eb992c438a90_4b523fe5188cd95c194a9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke pushed 1 commit.

51e52b27a79adc4f85472fcc30cd5de04b28b356  MT's suggestion for ekr


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547/files/5b9205c5c06f3b3a06dde340d9418d81f9e64a68..51e52b27a79adc4f85472fcc30cd5de04b28b356

----==_mimepart_5eb992c438a90_4b523fe5188cd95c194a9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinduke" class="user-mention">@martinduke</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/51e52b27a79adc4f85472fcc30cd5de04b28b356">51e52b2</a>  MT&#39;s suggestion for ekr</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3547/files/5b9205c5c06f3b3a06dde340d9418d81f9e64a68..51e52b27a79adc4f85472fcc30cd5de04b28b356">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYW5B556ZCJDAWYJELRRA4MJANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4JFAE6EF4BNRCRPOTRRA4MJA5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4TINBQHA3DSNKQOVZWQIZVGA2TIOJQHA3TINQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547/files/5b9205c5c06f3b3a06dde340d9418d81f9e64a68..51e52b27a79adc4f85472fcc30cd5de04b28b356",
"url": "https://github.com/quicwg/base-drafts/pull/3547/files/5b9205c5c06f3b3a06dde340d9418d81f9e64a68..51e52b27a79adc4f85472fcc30cd5de04b28b356",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb992c438a90_4b523fe5188cd95c194a9--


From nobody Mon May 11 11:10:50 2020
Return-Path: <bounces+848413-a050-quic-issues=ietf.org@sgmail.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 95DF53A0967 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 11:10:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.726
X-Spam-Level: 
X-Spam-Status: No, score=-1.726 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, UNPARSEABLE_RELAY=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 W_p-hC6KL8e8 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 11:10:48 -0700 (PDT)
Received: from o10.sgmail.github.com (o10.sgmail.github.com [167.89.101.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E26E73A0DD1 for <quic-issues@ietf.org>; Mon, 11 May 2020 11:08:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=OzIGwMHLoD6Q/hWSf7fm6IDyTVp83MgmOpsmNd8xtcM=; b= XWkzgxQoCYk1ZJ+XM6cDxEaF5PfQdApn8QWr5hBVtIFqTmcbx7VFirO7MLjnCGHG xzYPZV4La8YkEk3gzny7kiQTMN/RSOBCSH6S2jlkDjpHyKY+RyBNcKWmKpnxml1r B+ks54TQnoRai7j5hrPCHuPYbU0QXvITuJri7Ek3c2s=
Received: by filter0398p1iad2.sendgrid.net with SMTP id filter0398p1iad2-19000-5EB992F4-6F 2020-05-11 18:01:24.881158493 +0000 UTC m=+2229561.511930028
Received: from out-22.smtp.github.com (unknown) by geopod-ismtpd-3-0 (SG) with ESMTP id jR6kMGdYR12eIVo0hbqiSg for <quic-issues@ietf.org>; Mon, 11 May 2020 18:01:24.825 +0000 (UTC)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id B673AA0329 for <quic-issues@ietf.org>; Mon, 11 May 2020 11:01:19 -0700 (PDT)
Date: Mon, 11 May 2020 18:01:24 +0000 (UTC)
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2BMKF3AN4MHR6GIYF4YVZ67EVBNHHCGFYIAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/review/409403350@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb992efa7215_6d123fd1bb8cd968203c6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak0Wgn6C1ycAEHUlq6IyaEoCm1EBJ91HLRnF4+ r1aMhAIez2AaLY6tjEk6rsmqli92MkR0Q8ThcUpP8AnFoS2tiwcAtg3b2TSICeVUfUGiAdXJiHXgt4 hPD7fazLCHWEJGb6EQgR/QrR2iy2Ojnwr4jbeAyZD/ahavvlEpp5OX+uuKaHmyvEekXYSpIkXj23tl M=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gNwJzBeQzOAW5NWJpfz3EHo4q2c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 18:10:50 -0000

----==_mimepart_5eb992efa7215_6d123fd1bb8cd968203c6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke commented on this pull request.



> +An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST

If @ekr is happy I'll resolve this sub-thread.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547#discussion_r423220179
----==_mimepart_5eb992efa7215_6d123fd1bb8cd968203c6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinduke</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3547#discussion_r423220179">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST
</pre>
<p>If <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ekr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ekr">@ekr</a> is happy I'll resolve this sub-thread.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3547#discussion_r423220179">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYJOOIJ4KJIQHC42RTRRA4O7ANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5UCN6GVQH7MNPL27TRRA4O7A5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBTP7VQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547#discussion_r423220179",
"url": "https://github.com/quicwg/base-drafts/pull/3547#discussion_r423220179",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb992efa7215_6d123fd1bb8cd968203c6--


From nobody Mon May 11 12:42:29 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 BAD4C3A0C6F for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 12:42:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 O7x4YDzHPGu7 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 12:42:26 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 24FB03A0C55 for <quic-issues@ietf.org>; Mon, 11 May 2020 12:42:26 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 4C54E660E1A for <quic-issues@ietf.org>; Mon, 11 May 2020 12:42:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589226145; bh=S917vrm89XIbq9khXEsMJe8DXvVXuZzhd3aSeESWL3o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xfJ0Lf84KL5NJiRUlxYaM0SYck7J9WSoOk8OLC3nvP7+UZ3WuYkw3Kgr78uByxhr9 i93i/BExE2ZQ403TtO7Y8UhxceKsO67lw/G2FVV+W1HxFJvyPQQjJwrMK1XwvVOTs9 3GwQMYVqb4doO/fwJ3F0t6rEw4sAHRFpF2g4H+ak=
Date: Mon, 11 May 2020 12:42:25 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/push/5055401411@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9aaa13c7c3_63d13fe0d66cd968177619"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-aT1RhELUE6Oi-azIjj50QPWtEE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 19:42:28 -0000

----==_mimepart_5eb9aaa13c7c3_63d13fe0d66cd968177619
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke pushed 1 commit.

ff574d568b039e4b4e3f691a0d88e2d2ad18a3e9  typos/whitespace


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547/files/51e52b27a79adc4f85472fcc30cd5de04b28b356..ff574d568b039e4b4e3f691a0d88e2d2ad18a3e9

----==_mimepart_5eb9aaa13c7c3_63d13fe0d66cd968177619
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinduke" class="user-mention">@martinduke</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/ff574d568b039e4b4e3f691a0d88e2d2ad18a3e9">ff574d5</a>  typos/whitespace</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3547/files/51e52b27a79adc4f85472fcc30cd5de04b28b356..ff574d568b039e4b4e3f691a0d88e2d2ad18a3e9">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3LZUQIQJ7JZ52IQQDRRBIKDANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYZSULRPNDUSONO573RRBIKDA5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4TINBQHA3DSNKQOVZWQIZVGA2TKNBQGE2DCMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547/files/51e52b27a79adc4f85472fcc30cd5de04b28b356..ff574d568b039e4b4e3f691a0d88e2d2ad18a3e9",
"url": "https://github.com/quicwg/base-drafts/pull/3547/files/51e52b27a79adc4f85472fcc30cd5de04b28b356..ff574d568b039e4b4e3f691a0d88e2d2ad18a3e9",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb9aaa13c7c3_63d13fe0d66cd968177619--


From nobody Mon May 11 12:48:26 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 19D343A0C75 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 12:48:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.272
X-Spam-Level: 
X-Spam-Status: No, score=-3.272 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 oRBRRn48uncl for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 12:48:09 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8E1933A0C55 for <quic-issues@ietf.org>; Mon, 11 May 2020 12:48:09 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 65453960729 for <quic-issues@ietf.org>; Mon, 11 May 2020 12:48:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589226488; bh=r3/23qj2hyQBlvgpXDeekhECuSwqsekacq/s/TC2RNw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TpnLcZR2HiyBtIHD4euyQ+RqR5uIENluEKbcPGC4f2/KSeAf0LrwwzvQh3azLQA8u R2P3oVigWe87FbAO+SB2naiKXgQoK0LtdWj4psYmRfwTuolD2RSC9GPa8Zwh9rHM2R x1epizf+99LuUWCqKuwSZ/FGhfH0KTHpwch/xy5c=
Date: Mon, 11 May 2020 12:48:08 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2QCRT2NE5TGR5QAZN4YWGPREVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/409478195@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9abf8559d8_1b763fadcb2cd964419222"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: erickinnear
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/b8xQqUSpNCiJ3TxSIyWapbB8EYo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 19:48:25 -0000

----==_mimepart_5eb9abf8559d8_1b763fadcb2cd964419222
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear commented on this pull request.



> @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.

I like the framing of the last sentence you have there, although it's interesting to think through the question about if we really need an exception here. 

In theory, the problem with changing for this is that a NAT rebinding can cause us to "burn" a CID, making it so that instead of having 2 linked CIDs, we now have 3 linked CIDs. As long as we retire the old one (which is already in the text) once we change to the new one, we should be able to keep a steady supply of those around, although it would mean that someone in the middle of the network could fiddle with things to keep us generating and exchanging more and more CIDs. 

So, the idea is that if someone on the network changes without your knowledge, we've already linked those two 5-tuples by the fact that you've got the same CID in one direction, there's no harm in continuing to keep using that CID in the other direction. 

It does seem better to keep doing that, rather than opening ourselves up to letting someone on the network arbitrarily churn through CIDs.

This would mean the text becomes much like what you have in the TODO above, essentially we're saying that the _sender_ of the packet MUST follow these restrictions, but if you see that your peer did not, then \<the text you have above\>.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#discussion_r423278139
----==_mimepart_5eb9abf8559d8_1b763fadcb2cd964419222
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@erickinnear</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423278139">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.
</pre>
<p>I like the framing of the last sentence you have there, although it's interesting to think through the question about if we really need an exception here.</p>
<p>In theory, the problem with changing for this is that a NAT rebinding can cause us to "burn" a CID, making it so that instead of having 2 linked CIDs, we now have 3 linked CIDs. As long as we retire the old one (which is already in the text) once we change to the new one, we should be able to keep a steady supply of those around, although it would mean that someone in the middle of the network could fiddle with things to keep us generating and exchanging more and more CIDs.</p>
<p>So, the idea is that if someone on the network changes without your knowledge, we've already linked those two 5-tuples by the fact that you've got the same CID in one direction, there's no harm in continuing to keep using that CID in the other direction.</p>
<p>It does seem better to keep doing that, rather than opening ourselves up to letting someone on the network arbitrarily churn through CIDs.</p>
<p>This would mean the text becomes much like what you have in the TODO above, essentially we're saying that the <em>sender</em> of the packet MUST follow these restrictions, but if you see that your peer did not, then &lt;the text you have above&gt;.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423278139">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7YOK7PARDVGMXSQI3RRBI7RANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7AGOUUVAOYBFLF7NLRRBI7RA5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBUCIMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423278139",
"url": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423278139",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9abf8559d8_1b763fadcb2cd964419222--


From nobody Mon May 11 13:15:12 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 313FE3A0CCA for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:15:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 vMsTBruUjEVJ for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:15:10 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D49EA3A0C4D for <quic-issues@ietf.org>; Mon, 11 May 2020 13:15:09 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 26D5F96177C for <quic-issues@ietf.org>; Mon, 11 May 2020 13:15:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589228108; bh=NLw5cNLR7yoPSZ4Wr6reCk7qnfNlIzl1nz16XJr1+OM=; h=Date:From:To:Subject:From; b=iTlmaNtqJQHDso6i8RewAjno9Vv8PcvZU7A6dqg5XMGau2eZLFUNP6EvJPXOJFgwD 5c1yrAceMPPeln162fvuYRs7mVW/mV0s/P4n/yUYbJvXRP84YkXNzXXk9Qqk/UfTJm qk95yhHS01EH5s4J06LlYNkZCSyk8n/PmL81OR2g=
Date: Mon, 11 May 2020 13:15:08 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/vn-consistency/000000-cc13fc@github.com>
Subject: [quicwg/base-drafts] cc13fc: VN, too
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BggTmmFH3rvI3d07Ui-V6cJisig>
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: Mon, 11 May 2020 20:15:11 -0000

  Branch: refs/heads/vn-consistency
  Home:   https://github.com/quicwg/base-drafts
  Commit: cc13fc68144a01d3b30c8fb45dba03ae7bbadb4b
      https://github.com/quicwg/base-drafts/commit/cc13fc68144a01d3b30c8fb45dba03ae7bbadb4b
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  VN, too



From nobody Mon May 11 13:16:26 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 602913A0CCB for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:16:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.274
X-Spam-Level: 
X-Spam-Status: No, score=-7.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 2Xv1c_FuQYjz for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:16:24 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1E4B33A0C4D for <quic-issues@ietf.org>; Mon, 11 May 2020 13:16:23 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id B40F2661F4A for <quic-issues@ietf.org>; Mon, 11 May 2020 13:16:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589228182; bh=vpdm7nmF7kWIPnxnFc2Dv2j0EAdPQl9ePtVfSUJlsws=; h=Date:From:To:Subject:From; b=ExqCliPi2K9D3em1/FJj5RxXGtO4wMeonX8RNGtifzDqTTEvJ1joZtEoeAlLQijcJ +4GgX/SFGyx0wAAIh3xixwFd1FQ9Mth/W60mjHyYGLM1FVwM524ediNOZgd0Hmu6n7 kyAQNxr3OGtxNrNbKYyKfDA8jUHo7k+4o9zwZ7K8=
Date: Mon, 11 May 2020 13:16:22 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/361274-82be57@github.com>
Subject: [quicwg/base-drafts] 82be57: Script updating gh-pages from cc13fc68. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PLT81b5eLlVyFE4ABRWIh7iMXPI>
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: Mon, 11 May 2020 20:16:25 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 82be5731bb9dcd96c0b08c69c63f3e7dbce73a28
      https://github.com/quicwg/base-drafts/commit/82be5731bb9dcd96c0b08c69c63f3e7dbce73a28
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M index.html
    A vn-consistency/draft-ietf-quic-http.html
    A vn-consistency/draft-ietf-quic-http.txt
    A vn-consistency/draft-ietf-quic-invariants.html
    A vn-consistency/draft-ietf-quic-invariants.txt
    A vn-consistency/draft-ietf-quic-qpack.html
    A vn-consistency/draft-ietf-quic-qpack.txt
    A vn-consistency/draft-ietf-quic-recovery.html
    A vn-consistency/draft-ietf-quic-recovery.txt
    A vn-consistency/draft-ietf-quic-tls.html
    A vn-consistency/draft-ietf-quic-tls.txt
    A vn-consistency/draft-ietf-quic-transport.html
    A vn-consistency/draft-ietf-quic-transport.txt
    A vn-consistency/index.html

  Log Message:
  -----------
  Script updating gh-pages from cc13fc68. [ci skip]



From nobody Mon May 11 13:16:38 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 A64823A0CCB for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:16:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 I3k0N1Q15u4h for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:16:35 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 98DF93A0C4D for <quic-issues@ietf.org>; Mon, 11 May 2020 13:16:35 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 320B76E1F49 for <quic-issues@ietf.org>; Mon, 11 May 2020 13:16:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589228193; bh=B4Xo6dJA8jKZL9ZCglzFKKKnXP3SepBhrtNc/TsiRCs=; h=Date:From:To:Subject:From; b=OOwQWh9tA0L+45E/6P1j+0jOwz3P6pKYYnfvOH3RrPY/rsG+i5KXQCRF7xbo1JyHv 22AFE4SepFXMJG2f3ts12Ck2n6uwZHUPbhcC71QSf3Ztijz6wvDVrOSTO+e+7/S6y6 /0YdiPfJeREYSNI9UhGgRJDqopvek9rx0cNE8OVY=
Date: Mon, 11 May 2020 13:16:33 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/82be57-4b825f@github.com>
Subject: [quicwg/base-drafts] 4b825f: Script updating archive at 2020-05-11T20:16:13Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CBVw89QkK24CucPCa8P-NLyaK-o>
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: Mon, 11 May 2020 20:16:37 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4b825f532d78d0d74b97afe3b3e5e4be3d944e4c
      https://github.com/quicwg/base-drafts/commit/4b825f532d78d0d74b97afe3b3e5e4be3d944e4c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-11T20:16:13Z. [ci skip]



From nobody Mon May 11 13:16:48 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 0DC803A0CCB for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:16:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.865
X-Spam-Level: 
X-Spam-Status: No, score=-1.865 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 KREljiBFMgkz for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:16:45 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BCC1B3A0C4D for <quic-issues@ietf.org>; Mon, 11 May 2020 13:16:45 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 1E8576E1136 for <quic-issues@ietf.org>; Mon, 11 May 2020 13:16:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589228204; bh=3m+mDm02iK2xEm9QZJWXlnNpym3fS2GDwPeQ3zS8Y3I=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=XA0/GblCTk7wjmNDif3ZybymJjW8mzXO7/cUfFMT0LbAo+57F9D/GIpGcRiXH5xIr hE3VTIBR0lv274h1xvhpn+jIoc520ec5YyVinuYFte/LUjl/wQOiyPiop9bSog0v07 BA/06XcfJllaoKalwKdv00xGK/rTxkzolvXtLkoY=
Date: Mon, 11 May 2020 13:16:44 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYFVPQAAWAOHOS5NFF4YWJ2ZEVBNHHCJOOIQ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3641@github.com>
Subject: [quicwg/base-drafts] Consistency for VN, too (#3641)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9b2acf5c5_35903fe82bccd9601435f3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UVovDgAKEqCHUhUeBQ256Ug3RDY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 20:16:47 -0000

----==_mimepart_5eb9b2acf5c5_35903fe82bccd9601435f3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

#3636 for Version Negotiation.  Includes Transport, where the text explicitly notes that VN packets might have longer CIDs because other versions permit it.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3641

-- Commit Summary --

  * VN, too

-- File Changes --

    M draft-ietf-quic-invariants.md (4)
    M draft-ietf-quic-transport.md (4)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3641.patch
https://github.com/quicwg/base-drafts/pull/3641.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3641

----==_mimepart_5eb9b2acf5c5_35903fe82bccd9601435f3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="614324363" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3636" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3636/hovercard" href="https://github.com/quicwg/base-drafts/pull/3636">#3636</a> for Version Negotiation.  Includes Transport, where the text explicitly notes that VN packets might have longer CIDs because other versions permit it.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3641'>https://github.com/quicwg/base-drafts/pull/3641</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>VN, too</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3641/files#diff-56e4bfb748c2d740a862d41ab8d0dcd6">draft-ietf-quic-invariants.md</a>
    (4)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3641/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (4)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3641.patch'>https://github.com/quicwg/base-drafts/pull/3641.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3641.diff'>https://github.com/quicwg/base-drafts/pull/3641.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3641">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5SPZVQJTCKLVEU5MLRRBMKZANCNFSM4M6HA7DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2J54MIZG45U4XVWELRRBMKZA5CNFSM4M6HA7D2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JFZZCDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3641",
"url": "https://github.com/quicwg/base-drafts/pull/3641",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb9b2acf5c5_35903fe82bccd9601435f3--


From nobody Mon May 11 13:39:24 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 7BF843A0B86 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:39:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 Bln45WjVlLgk for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:39:22 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C031D3A0DD4 for <quic-issues@ietf.org>; Mon, 11 May 2020 13:38:58 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 970E11C1CFE for <quic-issues@ietf.org>; Mon, 11 May 2020 13:38:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589229537; bh=Dmg2+xjDQogqpegOofLpnjG+sf4evJnUKyoCyhnWjds=; h=Date:From:To:Subject:From; b=fYwXAwGtyppNXh3C/z69mIprycnOYy7z1ln67V306VuI8y03zlIAA5acEd8Y5WZEC MW1CkNbfixcAY7k5KPbgjp5juUUlBkEjQELBD6zd6zlLuNGv/H4UNF9JtIz87ljiZA L0Z4HOLA+n3jkpqoVcDznhsprTWh9cmFp4HhgnfI=
Date: Mon, 11 May 2020 13:38:57 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/transport/handshake-tokens/000000-52242c@github.com>
Subject: [quicwg/base-drafts] 52242c: Minor errors
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Nob5bLiyytAos-2AaGhhJQgT6do>
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: Mon, 11 May 2020 20:39:23 -0000

  Branch: refs/heads/transport/handshake-tokens
  Home:   https://github.com/quicwg/base-drafts
  Commit: 52242c6f15c3d8c7f69a9f765b17c588788aaa05
      https://github.com/quicwg/base-drafts/commit/52242c6f15c3d8c7f69a9f765b17c588788aaa05
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Minor errors



From nobody Mon May 11 13:40:04 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 228CE3A0B6E for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:40:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 fISp7MaOpfoH for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:40:02 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 14AD43A0B79 for <quic-issues@ietf.org>; Mon, 11 May 2020 13:40:02 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 595C0281FD4 for <quic-issues@ietf.org>; Mon, 11 May 2020 13:40:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589229601; bh=g9ae2rDO/anbHXpMEiksX9P1WsgNIGUreFMXkTgtG8U=; h=Date:From:To:Subject:From; b=RXEBtqCGW6mRNTQZNmmbBmKTAncH7gtFypPCdm4+8e0/oNDoykZsPJD7aYKNvxFf0 yrwFHWNFZlC+tq/XL1Bcl+HgqsHjqqPykrEWoCpBp7ldDEopABExlbQMGNuHgdrGXR gyxsRxAYgF0djDWjbgK2Ef6Tye7gOHAuI0M0Do8Y=
Date: Mon, 11 May 2020 13:40:01 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4b825f-31f214@github.com>
Subject: [quicwg/base-drafts] 31f214: Script updating gh-pages from 52242c6f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MSr2EURI2BQTLwpgksTpjFYPW3Y>
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: Mon, 11 May 2020 20:40:03 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 31f214991ded79917b6e7c861101e2532b8876ca
      https://github.com/quicwg/base-drafts/commit/31f214991ded79917b6e7c861101e2532b8876ca
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M index.html
    A transport/handshake-tokens/draft-ietf-quic-http.html
    A transport/handshake-tokens/draft-ietf-quic-http.txt
    A transport/handshake-tokens/draft-ietf-quic-invariants.html
    A transport/handshake-tokens/draft-ietf-quic-invariants.txt
    A transport/handshake-tokens/draft-ietf-quic-qpack.html
    A transport/handshake-tokens/draft-ietf-quic-qpack.txt
    A transport/handshake-tokens/draft-ietf-quic-recovery.html
    A transport/handshake-tokens/draft-ietf-quic-recovery.txt
    A transport/handshake-tokens/draft-ietf-quic-tls.html
    A transport/handshake-tokens/draft-ietf-quic-tls.txt
    A transport/handshake-tokens/draft-ietf-quic-transport.html
    A transport/handshake-tokens/draft-ietf-quic-transport.txt
    A transport/handshake-tokens/index.html

  Log Message:
  -----------
  Script updating gh-pages from 52242c6f. [ci skip]



From nobody Mon May 11 13:40:45 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 495B43A0B6E for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:40:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.723
X-Spam-Level: 
X-Spam-Status: No, score=-6.723 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 fPttqAQI9I5U for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 13:40:37 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DFC5D3A0B9C for <quic-issues@ietf.org>; Mon, 11 May 2020 13:40:36 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 3879AE0098 for <quic-issues@ietf.org>; Mon, 11 May 2020 13:40:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589229636; bh=MrZ5jZ1bocmEbXMlDbNKJTno3jIyUPpVABTdrVr5qvI=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=kf/PxuLcJ3dhOuGxUfuVTKoHWTWCTRFDPo4SCIHvNf509JlWJ/Dq6G807G7KUvebZ i9eZkjq+axgKYBW54Z3S/h4xJhAySEzdb3yahf6KfKfbVj5cZLR/+05tPaS/e3DblO 6Kw+N/SVi+H3hrDOTQk6CkGUnYb6gVCAvzwwBPLI=
Date: Mon, 11 May 2020 13:40:36 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZBJVA3QR67B2FHDWV4YWMUJEVBNHHCJOQKPA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3642@github.com>
Subject: [quicwg/base-drafts] Minor errors in new diagrams (#3642)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9b84427d33_4f733f892a0cd9684013b3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WLQn6bmmTCYlE68P2oAUijGM1-A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 20:40:38 -0000

----==_mimepart_5eb9b84427d33_4f733f892a0cd9684013b3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes two nits:
- Handshake packets showed a Token+length
- Retry packets had &quot;Type-Specific Bits&quot; where the text referred to &quot;Unused&quot;
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3642

-- Commit Summary --

  * Minor errors

-- File Changes --

    M draft-ietf-quic-transport.md (4)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3642.patch
https://github.com/quicwg/base-drafts/pull/3642.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3642

----==_mimepart_5eb9b84427d33_4f733f892a0cd9684013b3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Fixes two nits:</p>
<ul>
<li>Handshake packets showed a Token+length</li>
<li>Retry packets had "Type-Specific Bits" where the text referred to "Unused"</li>
</ul>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3642'>https://github.com/quicwg/base-drafts/pull/3642</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Minor errors</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3642/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (4)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3642.patch'>https://github.com/quicwg/base-drafts/pull/3642.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3642.diff'>https://github.com/quicwg/base-drafts/pull/3642.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3642">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3C245EKA3PF6PGC2DRRBPEJANCNFSM4M6HR4LQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ZI5XJ6PQJMMMAC5LRRBPEJA5CNFSM4M6HR4L2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JF2BJ4A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3642",
"url": "https://github.com/quicwg/base-drafts/pull/3642",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb9b84427d33_4f733f892a0cd9684013b3--


From nobody Mon May 11 14:44:00 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 14D5A3A0BCF for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 14:43:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 RvD7O0wUONUd for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 14:43:58 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0A8233A0BBA for <quic-issues@ietf.org>; Mon, 11 May 2020 14:43:58 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 43D8E2C2197 for <quic-issues@ietf.org>; Mon, 11 May 2020 14:43:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589233437; bh=tU5GVSrbCQukDmfKdVDkN21Nvdkp4P4A8P3WJoUX92c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=L7wSaLGOD3j/6yt/N/cqyCWIS0ZhAuP0eAv9V8QB3s+bYVojzBVJAz3OABiT58nf/ /ILvsyiCJyRYNcjnIdccq8PY90r+m/C47LEHYiw3UjkT7BVtd2xca1BZXU0wruXd/S eixtSUlCKShyHk1Aw+Q76GfMLpS5454pFUDzDyVo=
Date: Mon, 11 May 2020 14:43:57 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7CHNGPPD2QA7MDSBN4YWUB3EVBNHHCJOOIQ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3641/review/409553138@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3641@github.com>
References: <quicwg/base-drafts/pull/3641@github.com>
Subject: Re: [quicwg/base-drafts] Consistency for VN, too (#3641)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9c71d3551f_6b443fbbe52cd964154274"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hJjJ_WH5MTBu8L_HyXZu4sNeDvM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 21:43:59 -0000

----==_mimepart_5eb9c71d3551f_6b443fbbe52cd964154274
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3641#pullrequestreview-409553138
----==_mimepart_5eb9c71d3551f_6b443fbbe52cd964154274
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3641#pullrequestreview-409553138">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK66TGOT4XZ73MVGDQDRRBWR3ANCNFSM4M6HA7DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2245I3MPUIP4X6YXLRRBWR3A5CNFSM4M6HA7D2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBUUR4Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3641#pullrequestreview-409553138",
"url": "https://github.com/quicwg/base-drafts/pull/3641#pullrequestreview-409553138",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9c71d3551f_6b443fbbe52cd964154274--


From nobody Mon May 11 14:47:07 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 5F9203A0BFF for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 14:47:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 EMiOAw0vGuJs for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 14:47:04 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7F9513A0BD7 for <quic-issues@ietf.org>; Mon, 11 May 2020 14:47:04 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 392A22C0EF2 for <quic-issues@ietf.org>; Mon, 11 May 2020 14:47:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589233623; bh=1HpuRcf+caOqpXEtBNYy6YhyQriSy4g3hOdeTG2YkCQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qXSHuq6o0JKdtonaXnzqnqHPNn88CWiVbIKqRqX9BzjQgtRbY3ulQvr6DKuozIeQc RF/CIb2ReNeNX9j30kUv9f43P0xxa+CxYIZF1P6cbxEjZejNbRzzyTX28F1tCXBVHX +pQm12I6AvPVRUKPdvnqKNPIIuUhyDtm6GH9xMRI=
Date: Mon, 11 May 2020 14:47:03 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6UMQPLNZPKYGXOPTV4YWUNPEVBNHHCJOQKPA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3642/review/409554836@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3642@github.com>
References: <quicwg/base-drafts/pull/3642@github.com>
Subject: Re: [quicwg/base-drafts] Minor errors in new diagrams (#3642)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9c7d72a35d_422e3f9e1f4cd96428622c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iuh3ldHpBGsul5yMrA3aQr5nxwc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 21:47:05 -0000

----==_mimepart_5eb9c7d72a35d_422e3f9e1f4cd96428622c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3642#pullrequestreview-409554836
----==_mimepart_5eb9c7d72a35d_422e3f9e1f4cd96428622c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3642#pullrequestreview-409554836">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6H6XX5OPBNVUG2HGTRRBW5PANCNFSM4M6HR4LQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6NIAOCGY5PXPXLRNLRRBW5PA5CNFSM4M6HR4L2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBUU7FA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3642#pullrequestreview-409554836",
"url": "https://github.com/quicwg/base-drafts/pull/3642#pullrequestreview-409554836",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9c7d72a35d_422e3f9e1f4cd96428622c--


From nobody Mon May 11 14:50:29 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 A41FE3A0D38 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 14:50:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.866
X-Spam-Level: 
X-Spam-Status: No, score=-1.866 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 M6KvbDgPLE4x for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 14:50:26 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5815D3A0D39 for <quic-issues@ietf.org>; Mon, 11 May 2020 14:50:26 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id A4C678C0528 for <quic-issues@ietf.org>; Mon, 11 May 2020 14:50:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589233824; bh=GuFVCu1j0z8Nd8p+bcYx2l0H2S+ERUdvOcD+BrVIJhM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=p1tUCyK7z3C+T1wfEji2JHNF4DT4L0CWLM86dWAcO5/LypNRSmewdXzKg+a8HJNpv x5Jmom6I3b3ghsfOqBVqrMUyUnJFZVHrvRsCebAzfXViWB/q/ntaXoZYtJ2W9qpN3j Mvziow+pFHeD5pWsjFqycOppUVj0WESdsUvAHgPE=
Date: Mon, 11 May 2020 14:50:24 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4RUTGZKKAXMJJIUXF4YWU2BEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/409556671@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9c8a095710_2d963fe3f3acd96c25638e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LVvqXEUW-1qfk5n8AJAQbPA3A70>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 21:50:28 -0000

----==_mimepart_5eb9c8a095710_2d963fe3f3acd96c25638e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi commented on this pull request.



> +first Initial packet it sent in the initial_source_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field from the first Initial packet it received from
+the client in the original_destination_connection_id transport parameter; if
+the server sent a Retry packet this refers to the first Initial packet received
+before sending the Retry packet. If it sends a Retry packet, a server also
+includes the Source Connection ID field from the Retry packet in the
+retry_source_connection_id transport parameter.
+
+The values provided by a peer for these transport parameters MUST match the
+values that an endpoint used in the Destination and Source Connection ID fields
+of Initial packets that it sent. Including connection ID values in transport
+parameters and verifying them ensures that that an attacker cannot influence
+the choice of connection ID for a successful connection by injecting packets
+carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
+treat any of the following as a connection error of type PROTOCOL_VIOLATION:

I'm not sure I agree. TRANSPORT_PARAMETER_ERROR indicates a parse issue, whereas this validation is performed somewhere else in our implementation.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#discussion_r423340357
----==_mimepart_5eb9c8a095710_2d963fe3f3acd96c25638e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423340357">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +first Initial packet it sent in the initial_source_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field from the first Initial packet it received from
+the client in the original_destination_connection_id transport parameter; if
+the server sent a Retry packet this refers to the first Initial packet received
+before sending the Retry packet. If it sends a Retry packet, a server also
+includes the Source Connection ID field from the Retry packet in the
+retry_source_connection_id transport parameter.
+
+The values provided by a peer for these transport parameters MUST match the
+values that an endpoint used in the Destination and Source Connection ID fields
+of Initial packets that it sent. Including connection ID values in transport
+parameters and verifying them ensures that that an attacker cannot influence
+the choice of connection ID for a successful connection by injecting packets
+carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
+treat any of the following as a connection error of type PROTOCOL_VIOLATION:
</pre>
<p>I'm not sure I agree. TRANSPORT_PARAMETER_ERROR indicates a parse issue, whereas this validation is performed somewhere else in our implementation.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423340357">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK52RW5VGW5LIOKFZZ3RRBXKBANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ5VJIIAOJ4ANFDEA3RRBXKBA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBUVNPY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423340357",
"url": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423340357",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9c8a095710_2d963fe3f3acd96c25638e--


From nobody Mon May 11 15:09:52 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 683773A0D54 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:09:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.869
X-Spam-Level: 
X-Spam-Status: No, score=-1.869 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 erARIeDpEgVE for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:09:49 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 120B43A0D51 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:09:48 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 5B5A7C6003D for <quic-issues@ietf.org>; Mon, 11 May 2020 15:09:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589234988; bh=+g4/Ok77JqreNWgWNMUf40pgP0zvFq9uqeIGc+ykHeU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BT2I9GA7lp0L9hjJyfN0UVl6oxNT5c5ceHLwmJ9/dB/OWWGQtXaJJ4cOjJMKsaIIF q1h+5WwOR5o1/taum2+wuA5lpTG/uckgpBAKL8jT48hjDcNZ5LagWhzIH/gcL/rKOU 6II2yB4MH1dOAFBan+QhVCbs6uqSe7JvnHavlbZ0=
Date: Mon, 11 May 2020 15:09:48 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYB2VGN5D7CQYIU7XN4YWXCZEVBNHHCGFYIAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/review/409566191@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9cd2c4bb2a_5a013fbdf08cd96033230"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UV-UYF3E_ctahDwaIV0iRYP_0VQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 22:09:50 -0000

----==_mimepart_5eb9cd2c4bb2a_5a013fbdf08cd96033230
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr commented on this pull request.

I think that first sentence needs *some* clarification, though perhaps you don't like mine.

> @@ -1069,6 +1069,16 @@ to cease using the connection IDs when requested can result in connection
 failures, as the issuing endpoint might be unable to continue using the
 connection IDs with the active connection.
 
+An endpoint SHOULD limit the state it commits to retiring connection IDs. An

I feel like "commits to" is unclear. 

Perhaps
"An endpoint should limit the number of connection IDs that it has retired locally and have not yet been acknowledged."

> @@ -1069,6 +1069,16 @@ to cease using the connection IDs when requested can result in connection
 failures, as the issuing endpoint might be unable to continue using the
 connection IDs with the active connection.
 
+An endpoint SHOULD limit the state it commits to retiring connection IDs. An
+endpoint SHOULD allow for sending and trackign a number of RETIRE_CONNECTION_ID

```suggestion
endpoint SHOULD allow for sending and tracking a number of RETIRE_CONNECTION_ID
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547#pullrequestreview-409566191
----==_mimepart_5eb9cd2c4bb2a_5a013fbdf08cd96033230
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ekr</b> commented on this pull request.</p>=0D
=0D
<p>I think that first sentence needs <em>some</em> clarification, though =
perhaps you don't like mine.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3547#discussi=
on_r423348286">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1069,6 +1069,16 @@ to cease using the =
connection IDs when requested can result in connection=0D
 failures, as the issuing endpoint might be unable to continue using the=0D=

 connection IDs with the active connection.=0D
 =0D
+An endpoint SHOULD limit the state it commits to retiring connection IDs=
. An=0D
</pre>=0D
<p>I feel like "commits to" is unclear.</p>=0D
<p>Perhaps<br>=0D
"An endpoint should limit the number of connection IDs that it has retire=
d locally and have not yet been acknowledged."</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3547#discussi=
on_r423348343">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1069,6 +1069,16 @@ to cease using the =
connection IDs when requested can result in connection=0D
 failures, as the issuing endpoint might be unable to continue using the=0D=

 connection IDs with the active connection.=0D
 =0D
+An endpoint SHOULD limit the state it commits to retiring connection IDs=
. An=0D
+endpoint SHOULD allow for sending and trackign a number of RETIRE_CONNEC=
TION_ID=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-endpoint SHOULD allow for sending and trackig=
n a number of RETIRE_CONNECTION_ID=0D
+endpoint SHOULD allow for sending and tracking a number of RETIRE_CONNEC=
TION_ID=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3547#pullrequestreview-409566191">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K5U2SSISWA5TY4HBJLRRBZSZANCNFSM4LUQW5DQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKZGU35WKGOAZCKSJVLRRBZSZA5CNFSM4=
LUQW5D2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODBUXX3Y.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3547#pullrequestrev=
iew-409566191",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3547#pullrequestreview=
-409566191",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eb9cd2c4bb2a_5a013fbdf08cd96033230--


From nobody Mon May 11 15:49:54 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 303FB3A0A01 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:49:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.272
X-Spam-Level: 
X-Spam-Status: No, score=-3.272 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 7JVkvYaQ03bk for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:49:52 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 366003A0D74 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:49:34 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 67EABC6036D for <quic-issues@ietf.org>; Mon, 11 May 2020 15:49:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589237373; bh=0IV/NUXwh6PgBizTLUGSA0+CkJlj1sOGUtYbaJYWU78=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ALocA/yxjyRYdxYc+5PzOICf/v1cChJTZvIDxQWWB67OaXRy9QPxpvOQM6HYQ6if5 wIR0PmpnGDwcyG1DIVSoyAzTNQgWrW8v6lX6u+/5BsLTGM4QPJY6BdhR23csbusP1K VneBk4MXACrpCdT19QQjnmUhM/G6HKHAnrF96mv8=
Date: Mon, 11 May 2020 15:49:33 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2R32245E265XJPAEF4YW3X3EVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/409584381@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9d67d596de_436c3f8c396cd964177727"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vyc80ejvBEQTDAVqX0TANFIht6o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 22:49:54 -0000

----==_mimepart_5eb9d67d596de_436c3f8c396cd964177727
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.

I am comfortable with either outcome here.  @erickinnear, do you want to try to integrate these comments in something approximating the shape you describe?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#discussion_r423363613
----==_mimepart_5eb9d67d596de_436c3f8c396cd964177727
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423363613">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.
</pre>
<p>I am comfortable with either outcome here.  <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/erickinnear/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/erickinnear">@erickinnear</a>, do you want to try to integrate these comments in something approximating the shape you describe?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423363613">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5PPJM4SLPLMORDJ4LRRB6H3ANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZAGIXSKOLX73ZQUDTRRB6H3A5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBU4F7I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423363613",
"url": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423363613",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9d67d596de_436c3f8c396cd964177727--


From nobody Mon May 11 15:50:04 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 6D88E3A0A01 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:49:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 X8Yt7ReGTQRa for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:49:54 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F3DB13A0D7E for <quic-issues@ietf.org>; Mon, 11 May 2020 15:49:51 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 35DC0660D77 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:49:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589237391; bh=COBznbtqzPe94JMYBvimcgS1uVYiMCfoFBu9AOvxZpI=; h=Date:From:To:Subject:From; b=SbI5GMkoJH508ix4W+loGsdTIG7zmEEZm6APi2TKN01D4/ZyINurJZ7P1Vc4hIOR4 Ic1nSie7fJIAW0+APFKv6RXrp+2rTeG1KGRUKO3Dibc+5tt0V8aClULjEOJdsyDgzt d3ozCArVF0feH5aff5ZkwuplowD1rl3EQHwdJPws=
Date: Mon, 11 May 2020 15:49:51 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/vn-consistency/cc13fc-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OgvLClYmx_yrKycXgqLlBWWeoxY>
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: Mon, 11 May 2020 22:49:55 -0000

  Branch: refs/heads/vn-consistency
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon May 11 15:50:07 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 26E683A0ACD for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:49:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 tp_6CnUI5Iwx for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:49:55 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 11B7D3A0D7F for <quic-issues@ietf.org>; Mon, 11 May 2020 15:49:52 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 3B4518C04D6 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:49:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589237391; bh=qlXkMtfMSlZPZgwuC6U4kkiA3L/GuOCZtdSewXYGf1I=; h=Date:From:To:Subject:From; b=DwAPlr2551SYMVEc2mz8KMpp/wciKmBo6iENMV/CV6jdN1TvRthtqVFKiwr5vBryq X4P9S1PmMBE9YKHHX/TO6qfW5Vbl5zUGo7gP3RyZYib8LDKQ/sGo85TjkqSKbyxKA9 ytzp5oloL1+7ZWjyOGlEJkqVmkW6DhC0JBndFu7w=
Date: Mon, 11 May 2020 15:49:51 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/20d77d-a77915@github.com>
Subject: [quicwg/base-drafts] cc13fc: VN, too
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gDqxN1isWNxYDDMQIZL7_6dQ06g>
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: Mon, 11 May 2020 22:49:57 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: cc13fc68144a01d3b30c8fb45dba03ae7bbadb4b
      https://github.com/quicwg/base-drafts/commit/cc13fc68144a01d3b30c8fb45dba03ae7bbadb4b
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  VN, too


  Commit: a77915f2c89916a5ec38844ace65dad1900a1961
      https://github.com/quicwg/base-drafts/commit/a77915f2c89916a5ec38844ace65dad1900a1961
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3641 from quicwg/vn-consistency

Consistency for VN, too


Compare: https://github.com/quicwg/base-drafts/compare/20d77df1ddb0...a77915f2c899


From nobody Mon May 11 15:50:13 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 BD9DD3A0F04 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:50:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.178
X-Spam-Level: 
X-Spam-Status: No, score=-2.178 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 WuDKYBF9P36R for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:50:09 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8BA653A0E15 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:50:01 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 3AF9E1C0994 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:50:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589237400; bh=YBoxU9AgFrI0YWnv60jRzljwaTZxmsZWUDxCX4KPABk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zGkcRqpeXNvLhxcCvV+MskC2S+BTj/o7KnTq8gWG0tDVfFKNi8AZeuxingt1MvOTz Q9lCnBsJyskFqcEHTSOoFY2r25jbUIhC1qHnue7IyrftOLhsGVHUxNb7ZN4yUTdRE/ XIB0Ad7bo+fSeqWKjmZ0R8lH5qdX49TzHhIK+i3I=
Date: Mon, 11 May 2020 15:50:00 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2OS7EHIXLA26JKJFF4YW3ZREVBNHHCJOOIQ4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3641/issue_event/3325069086@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3641@github.com>
References: <quicwg/base-drafts/pull/3641@github.com>
Subject: Re: [quicwg/base-drafts] Consistency for VN, too (#3641)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9d6982c764_16e83f8662ccd968235595"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hs99hjKYt2PEYIz5W1XtmCJyXLM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 22:50:12 -0000

----==_mimepart_5eb9d6982c764_16e83f8662ccd968235595
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3641 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3641#event-3325069086
----==_mimepart_5eb9d6982c764_16e83f8662ccd968235595
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="616155271" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3641" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3641/hovercard" href="https://github.com/quicwg/base-drafts/pull/3641">#3641</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3641#event-3325069086">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7KPQSG2DK7R653SV3RRB6JRANCNFSM4M6HA7DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7EKA4G42BQVLYPPS3RRB6JRA5CNFSM4M6HA7D2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYYYIOHQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3641#event-3325069086",
"url": "https://github.com/quicwg/base-drafts/pull/3641#event-3325069086",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9d6982c764_16e83f8662ccd968235595--


From nobody Mon May 11 15:50:52 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 8A4E73A0BBC for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:50:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 pyQzsuwL7W7L for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:50:50 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 26CF33A0C3E for <quic-issues@ietf.org>; Mon, 11 May 2020 15:50:34 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 420CDE06E8 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:50:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589237433; bh=4eUnQsUwRBicjkld7NZN/XPCnq8tT+zY2kHJZ9NJuSI=; h=Date:From:To:Subject:From; b=CBatl3hXDznpoVBjndrDblgflxZR+/Pr3QTG8RRadSBHiMtD6K9aBBLamFOzKgGF3 +/aQKG/rAFxoH/yDEGfWrhyu96zZ/8Qw4N+Gu/rMmAQEoevq2gb1Ucd+Q23pfL4J+S 14/iTRHBUw540qw/TM73+DNuEHolqjXE1G8DaPoo=
Date: Mon, 11 May 2020 15:50:33 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/transport/handshake-tokens/52242c-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iRTYvV12ZnRVEDENMGEX1zq-8kQ>
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: Mon, 11 May 2020 22:50:52 -0000

  Branch: refs/heads/transport/handshake-tokens
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon May 11 15:50:56 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 806523A0BA5 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:50:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ooghoHUQnW9L for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:50:50 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C47EA3A0A01 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:50:32 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 1F3B6520050 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:50:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589237432; bh=tXElFOCz/vXtPGZm8pF82sBduGm77eJIyFcDsoWZkGI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zMYT67RsGZJJ/3j0SyzwAJVABuNWg9v72dZksdWV1FJrO7LbfAoKWDRZ5uDLfWuY1 eMz8DQnEVZmJwpEKW/nNYMUNeva73ROVzrpBpSB4RQSu4hP3txD5+bRBMkJnfcRKGi xnyYcoIqHfXOAJzIMEy0B1jiHLmVhKkJMDXRVPlY=
Date: Mon, 11 May 2020 15:50:32 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5LHGNFGAZAG5NIJJF4YW33REVBNHHCJOQKPA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3642/review/409584729@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3642@github.com>
References: <quicwg/base-drafts/pull/3642@github.com>
Subject: Re: [quicwg/base-drafts] Minor errors in new diagrams (#3642)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9d6b8f4f9_64563fe6e20cd95c129290"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WgQamipuGVOVmu1YFJG6fBmphyE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 22:50:52 -0000

----==_mimepart_5eb9d6b8f4f9_64563fe6e20cd95c129290
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.



> @@ -4294,8 +4294,6 @@ Handshake Packet {
   Destination Connection ID (0..160),
   SCID Length (8),
   Source Connection ID (0..160),
-  Token Length (i),
-  Token (..),

Not so minor :)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3642#pullrequestreview-409584729
----==_mimepart_5eb9d6b8f4f9_64563fe6e20cd95c129290
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3642#discussion_r423363896">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4294,8 +4294,6 @@ Handshake Packet {
   Destination Connection ID (0..160),
   SCID Length (8),
   Source Connection ID (0..160),
-  Token Length (i),
-  Token (..),
</pre>
<p>Not so minor :)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3642#pullrequestreview-409584729">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7MVOOHXRR2JIG7B4TRRB6LRANCNFSM4M6HR4LQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZKLURBRXRF6UTCBHTRRB6LRA5CNFSM4M6HR4L2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBU4IWI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3642#pullrequestreview-409584729",
"url": "https://github.com/quicwg/base-drafts/pull/3642#pullrequestreview-409584729",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9d6b8f4f9_64563fe6e20cd95c129290--


From nobody Mon May 11 15:51:00 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 9DBD53A0BBC for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:50:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 aip5Ss72jzPe for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:50:51 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 52C3D3A0D7F for <quic-issues@ietf.org>; Mon, 11 May 2020 15:50:42 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 99EF9A0DFC for <quic-issues@ietf.org>; Mon, 11 May 2020 15:50:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589237441; bh=x+YLuxqGlmHdZqR3P4fR4cqgwY5mNDgSXTgUF1a7Ckc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Roo4Kh9qiJWMbqWk0Iq5nS4tnSJAiUHdGAsCl2v85lYWE1FjevH9QHB7Pw3CkOq9E B85zWvRm1/yqmCWrr6xAByleWXnMlOfyWj17KICkV93BzJ2R0XYdhEMbSIR/W0ZSYr d4iA7G9kUJP5Uu+FajEITTKOVyLzNtaIYrLjcUM4=
Date: Mon, 11 May 2020 15:50:41 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZNHBWWI646TVWJUT54YW34DEVBNHHCJOQKPA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3642/issue_event/3325070575@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3642@github.com>
References: <quicwg/base-drafts/pull/3642@github.com>
Subject: Re: [quicwg/base-drafts] Minor errors in new diagrams (#3642)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9d6c18ac20_3afc3fea498cd96c195129"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3IZAUyDp3ZDmmp6Ooi_tV3JbzT0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 22:50:53 -0000

----==_mimepart_5eb9d6c18ac20_3afc3fea498cd96c195129
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3642 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3642#event-3325070575
----==_mimepart_5eb9d6c18ac20_3afc3fea498cd96c195129
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="616172152" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3642" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3642/hovercard" href="https://github.com/quicwg/base-drafts/pull/3642">#3642</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3642#event-3325070575">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2NC3CGHDC4Z3PXALDRRB6MDANCNFSM4M6HR4LQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5IHLAZBJG2CI7I2XTRRB6MDA5CNFSM4M6HR4L2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYYYIZ3Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3642#event-3325070575",
"url": "https://github.com/quicwg/base-drafts/pull/3642#event-3325070575",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9d6c18ac20_3afc3fea498cd96c195129--


From nobody Mon May 11 15:51:02 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 5D8CD3A0D7F for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:50:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 rIBL0PJi9XpC for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:50:50 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A76093A0BED for <quic-issues@ietf.org>; Mon, 11 May 2020 15:50:33 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 04FB62C19B0 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:50:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589237433; bh=GI/ZCmrDvOyhESQJO5xlOr3gGironc8eXuDggzFCr5k=; h=Date:From:To:Subject:From; b=BelsVgsPzH79iMJeCT4gn1GjoMkLLMu24DLTFpE/FZTmebPrCPU6g8Wc5F1L1LY3k e7QyHPuYAQxblM2t25VC9AY1VuBtoQjXswK7vTq31MyXqRJnkA3XK0GbvDhSgWt33o QQZ9hYDSdodi+IWvtmJ8b5aXJUshApzLfZBG8ZtA=
Date: Mon, 11 May 2020 15:50:32 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/a77915-cc6e8b@github.com>
Subject: [quicwg/base-drafts] 52242c: Minor errors
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/t_IfqPQKXuZR8_UnFmlLUnAXxfg>
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: Mon, 11 May 2020 22:50:53 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 52242c6f15c3d8c7f69a9f765b17c588788aaa05
      https://github.com/quicwg/base-drafts/commit/52242c6f15c3d8c7f69a9f765b17c588788aaa05
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Minor errors


  Commit: cc6e8b75fa9c4b72f1d95b1303014760318caebb
      https://github.com/quicwg/base-drafts/commit/cc6e8b75fa9c4b72f1d95b1303014760318caebb
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3642 from quicwg/transport/handshake-tokens

Minor errors in new diagrams


Compare: https://github.com/quicwg/base-drafts/compare/a77915f2c899...cc6e8b75fa9c


From nobody Mon May 11 15:51:05 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 85B3A3A0D80 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:50:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 PF_TLMq2oL1y for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:50:52 -0700 (PDT)
Received: from out-15.smtp.github.com (out-15.smtp.github.com [192.30.254.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 95D0F3A0C3E for <quic-issues@ietf.org>; Mon, 11 May 2020 15:50:51 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 2AEF3261599 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:50:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589237451; bh=Y5HPMz2/vmYZuWtFqUhtYSMYJY4IgRGMEASHmxIUOWI=; h=Date:From:To:Subject:From; b=ZG38GwmdBfQEEnpXYk8++No4Dwmqdo80SmrIQhQlCfYeT+cQrT6JLX3exDRc3I0Lk u8DyP5PouTXIx6F7RdwpBcjPeijTHVa73JGkIp6eH8BJNJIoiJPohuOquAJTRyCMEw LhTumAI44qwtR9a74lX36wks65nUVwueO2Miw+fI=
Date: Mon, 11 May 2020 15:50:50 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/31f214-6f649a@github.com>
Subject: [quicwg/base-drafts] 6f649a: Script updating gh-pages from a77915f2. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7PSHoe52p3JbcMDwqNJzW7TEmbc>
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: Mon, 11 May 2020 22:50:54 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6f649af4f84b8a5f477289f5f8e6f9bd4d34240b
      https://github.com/quicwg/base-drafts/commit/6f649af4f84b8a5f477289f5f8e6f9bd4d34240b
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from a77915f2. [ci skip]



From nobody Mon May 11 15:52:10 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 34B7E3A0D74 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:52:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 MvbO_VBI-0Ch for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:52:09 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 74E753A0C02 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:51:59 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id D27951C02EC for <quic-issues@ietf.org>; Mon, 11 May 2020 15:51:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589237518; bh=aGHxOJDKqefUmbKJP/mgMpCUbGcP35xSgP7PLJnraYI=; h=Date:From:To:Subject:From; b=KpAOHAFbqzbCpH86bxGThpG/bZ+EVgZTAdAPjXL/sqqLEo9oumyMlNbKKELmPOglu +o/2RAdTUzz5yyjfVmfXTpzL6RQy6Il5VsB7OpaibvYdpQscHnt9n/ouSXlfuUMKff DCuQfjlPaKlpBxs7uVLEjgZL7MPFMqKrxj4QvV0s=
Date: Mon, 11 May 2020 15:51:58 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6f649a-a0297d@github.com>
Subject: [quicwg/base-drafts] a0297d: Script updating gh-pages from cc6e8b75. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WWF28yJqG3_NR0Syz1eCIjlJSB8>
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: Mon, 11 May 2020 22:52:10 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: a0297d4a659956c3450ab54b80256e7e59510b34
      https://github.com/quicwg/base-drafts/commit/a0297d4a659956c3450ab54b80256e7e59510b34
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from cc6e8b75. [ci skip]



From nobody Mon May 11 15:56: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 D53383A0D7F for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:56:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.652
X-Spam-Level: 
X-Spam-Status: No, score=-1.652 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 OOigkDqGdrpG for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:56:52 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 87CD23A0C3E for <quic-issues@ietf.org>; Mon, 11 May 2020 15:56:52 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 973861C0B09 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:56:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589237811; bh=y9wjP9C5bZA2GaLLsEJhVuwPZjwKwi7euPkesGEeXW4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rxEjmc7dI7wIWppdhazEdLtc+ow9wTDhXBL2E/l085yMRTordipPnOi9tM7PkQ221 hF+0724KJcsR21rdKGPlCdYXMMblYXRfwsFXQ40r2HsU5NI+x3vcvc5x6VO2I0Vrq+ 74B83yO4Qq4tn8CYwY17epkyeTlrd7OtvdDym4WQ=
Date: Mon, 11 May 2020 15:56:51 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2XKEAVCZGJPUUGNWF4YW4THEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/c627008804@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9d83386f48_188f3fb2efecd95c184918"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9h7Z1TtwDpytnGEEMUU5LMSuYG4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 22:56:54 -0000

----==_mimepart_5eb9d83386f48_188f3fb2efecd95c184918
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke, if the attacker modifies the SCID in an Initial that ultimately causes a Retry to be sent, that doesn't affect the final state in any way, so there is no harm done.

The reason we authenticate the DCID on that packet in the way we do is to verify that the the server is cooperating with the entity that generated the Retry token.  Also, the client-chosen DCID value might persist as the server could use that value to determine its choice of connection ID.  The client can't change its mind, so authenticating a single value is enough.

That said, I will take on advisement that we don't require that the client doesn't change its connection ID.  Issue inbound.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#issuecomment-627008804
----==_mimepart_5eb9d83386f48_188f3fb2efecd95c184918
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinduke/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinduke">@martinduke</a>, if the attacker modifies the SCID in an Initial that ultimately causes a Retry to be sent, that doesn't affect the final state in any way, so there is no harm done.</p>
<p>The reason we authenticate the DCID on that packet in the way we do is to verify that the the server is cooperating with the entity that generated the Retry token.  Also, the client-chosen DCID value might persist as the server could use that value to determine its choice of connection ID.  The client can't change its mind, so authenticating a single value is enough.</p>
<p>That said, I will take on advisement that we don't require that the client doesn't change its connection ID.  Issue inbound.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#issuecomment-627008804">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6GTUDE334W6LINBQLRRB7DHANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYB7DW4ELMNSFCI3CTRRB7DHA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVPWKJA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#issuecomment-627008804",
"url": "https://github.com/quicwg/base-drafts/pull/3499#issuecomment-627008804",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9d83386f48_188f3fb2efecd95c184918--


From nobody Mon May 11 15:59:02 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 50C763A0D84 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:59:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.211
X-Spam-Level: 
X-Spam-Status: No, score=-1.211 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 JKZfpMITZMdI for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 15:58:59 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3D5863A0D7F for <quic-issues@ietf.org>; Mon, 11 May 2020 15:58:59 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 7EC646E1136 for <quic-issues@ietf.org>; Mon, 11 May 2020 15:58:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589237938; bh=gtYq41ep0UGj2OfFKxkHhvINfbZJvgJc1MMQoYAnkF0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wAMDKi6Wni0Lz26gGVNomFWN8+8Ju5yczLu2dm8B7jgulTqtteuiIKzZDdfIFUkHR +0aD6cFy6pVp2J9oyo3uwyNxTwqsE4cNLbbLwtdftEq8DS0gWObNcSZBw7i4L2UkTk irG45piAiFSi3BYH/tBbyMe2kzhd2TFrikh9+vQY=
Date: Mon, 11 May 2020 15:58:58 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6L3QK3SBGDR6PC5EF4YW43FEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/409587998@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9d8b26fa74_13ae3fe464ecd96017867c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/YGL1QFFhXHf8mLkVLhaEgRHBYY8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 22:59:00 -0000

----==_mimepart_5eb9d8b26fa74_13ae3fe464ecd96017867c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-409587998
----==_mimepart_5eb9d8b26fa74_13ae3fe464ecd96017867c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinduke</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-409587998">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5RDRLU4UHBMU7B4UDRRB7LFANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYSAOIY5XW4VM5TF2DRRB7LFA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBU5CHQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-409587998",
"url": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-409587998",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9d8b26fa74_13ae3fe464ecd96017867c--


From nobody Mon May 11 16:06:31 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 5CBE63A0D93 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 16:06:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.723
X-Spam-Level: 
X-Spam-Status: No, score=-1.723 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 00_oNFUsRXHi for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 16:06:28 -0700 (PDT)
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 01A3E3A0D92 for <quic-issues@ietf.org>; Mon, 11 May 2020 16:06:27 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id A3F85261639 for <quic-issues@ietf.org>; Mon, 11 May 2020 16:06:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589238387; bh=iiJwdZvDevxKnbfTF9fzhmcmWcD2PATaR7c3o0sdKsI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KAGEJrM3BKrl5qKWyggFM8d2vaDmQ5F1Sc9w+H+llve9r8GXio38aMMq6tb1hRpJ4 0R4pz9VH7KIvECp+JMD30x0Ezbylsqjjb7ZeMT0yzZcxqKytrMg96VEhqlLycBLiWG dcpqWlaSkQCjWhyyDlZJpv8WcZHi2RRNRNrE17mM=
Date: Mon, 11 May 2020 16:06:27 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/push/5056262633@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9da735cc01_32ff3fb90a6cd95c742bc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/F_iCmhuHD83VabYG1IBrS5dZiWY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 23:06:29 -0000

----==_mimepart_5eb9da735cc01_32ff3fb90a6cd95c742bc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke pushed 1 commit.

442f5774a16899063d2f3fbae6c46802a6ec86b9  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547/files/ff574d568b039e4b4e3f691a0d88e2d2ad18a3e9..442f5774a16899063d2f3fbae6c46802a6ec86b9

----==_mimepart_5eb9da735cc01_32ff3fb90a6cd95c742bc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinduke" class="user-mention">@martinduke</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/442f5774a16899063d2f3fbae6c46802a6ec86b9">442f577</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3547/files/ff574d568b039e4b4e3f691a0d88e2d2ad18a3e9..442f5774a16899063d2f3fbae6c46802a6ec86b9">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2LZEHDR57H42NQ4V3RRCAHHANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK56FVXXTZYCGOIIXVDRRCAHHA5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4TINBQHA3DSNKQOVZWQIZVGA2TMMRWGI3DGMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547/files/ff574d568b039e4b4e3f691a0d88e2d2ad18a3e9..442f5774a16899063d2f3fbae6c46802a6ec86b9",
"url": "https://github.com/quicwg/base-drafts/pull/3547/files/ff574d568b039e4b4e3f691a0d88e2d2ad18a3e9..442f5774a16899063d2f3fbae6c46802a6ec86b9",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb9da735cc01_32ff3fb90a6cd95c742bc--


From nobody Mon May 11 16:19:44 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 35E0B3A0DA5 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 16:19:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.869
X-Spam-Level: 
X-Spam-Status: No, score=-1.869 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ENb_KlhzhMzm for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 16:19:41 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C9E5B3A0D9D for <quic-issues@ietf.org>; Mon, 11 May 2020 16:19:40 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id F1C952C20D4 for <quic-issues@ietf.org>; Mon, 11 May 2020 16:19:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589239179; bh=6U+cQOr5o/TtqOZ3A0M7OMfhF1AjATRf22GiKmKLCQg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZCPniijGII+7a7RoKZBsPl+RtmfOH9g/zSs7gCZhgvk5MysLtx6leTgCBihkXkJhq mOGGx7atlIo89IMSRPoySg/oZCgdNmzwv6MdPwv2Xo9yPHbgAMo2rzlUb0kV9owL/r FZNEfukgCrm0VLxwVq7ECgeStUsKVHMAXt6wczbQ=
Date: Mon, 11 May 2020 16:19:39 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3PYLNRVY672DDOOZN4YW7IXEVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/409596100@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9dd8be3131_72613fb468ecd964131779"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: erickinnear
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qlmbxyKwwcysri275UTCvcO5LhA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 11 May 2020 23:19:42 -0000

----==_mimepart_5eb9dd8be3131_72613fb468ecd964131779
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear commented on this pull request.



> @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.

Yup! Working on an update for these this afternoon.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#discussion_r423373575
----==_mimepart_5eb9dd8be3131_72613fb468ecd964131779
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@erickinnear</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423373575">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.
</pre>
<p>Yup! Working on an update for these this afternoon.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423373575">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZRVU2OUQJEFTQRHTRRCBYXANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4N6MS34KH6O2OFBK3RRCBYXA5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBU7BRA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423373575",
"url": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423373575",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9dd8be3131_72613fb468ecd964131779--


From nobody Mon May 11 17:15:58 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 E39343A0DCB for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:15:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 U3nIyxVZhPWD for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:15:51 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 79DD53A0DC7 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:15:51 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 393E8C60725 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:15:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589242550; bh=XeGmNexqkz96vO7RaoASmepAmVpGqjbs90ZfgBHYE84=; h=Date:From:To:Subject:From; b=YzYNlYy+9tCa+sEFzn9Yts1XOVVcLeXUmG/FpbSXhk38spS+9baF5exUe1UbJll0F ZinEiInfrI81nttiaDhHA5OgDxdIPeDVSL/Bw/6cvSel++VwbZZhZzOJ6s/L2mGY9I YyZpCNsInGe8YbYTLpM6SDlw6J3PsE/PLlscjrZI=
Date: Mon, 11 May 2020 17:15:50 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/authenticate-hs-cid/e30cf5-740cd9@github.com>
Subject: [quicwg/base-drafts] b7b2c6: eliminate the different between when having no RTT...
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/TPAvy9wOk6yuQ4xMzWrhZJGZmjo>
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: Tue, 12 May 2020 00:15:57 -0000

  Branch: refs/heads/authenticate-hs-cid=0D
  Home:   https://github.com/quicwg/base-drafts=0D
  Commit: b7b2c6eac88c7287fdba9b7a56e8f838ee518ccf=0D
      https://github.com/quicwg/base-drafts/commit/b7b2c6eac88c7287fdba9b=
7a56e8f838ee518ccf=0D
  Author: Kazuho Oku <kazuhooku@gmail.com>=0D
  Date:   2020-03-15 (Sun, 15 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  eliminate the different between when having no RTT sample and having on=
e=0D
=0D
=0D
  Commit: fbefa4ae4fadf520918de418d4ea555c23851700=0D
      https://github.com/quicwg/base-drafts/commit/fbefa4ae4fadf520918de4=
18d4ea555c23851700=0D
  Author: Kazuho Oku <kazuhooku@gmail.com>=0D
  Date:   2020-03-16 (Mon, 16 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  to be clear, split paragraphs that discuss no rtt sample vs. 1 rtt samp=
le=0D
=0D
=0D
  Commit: a56598572fd8656b30a2c800eabacac24b75b180=0D
      https://github.com/quicwg/base-drafts/commit/a56598572fd8656b30a2c8=
00eabacac24b75b180=0D
  Author: Kazuho Oku <kazuhooku@gmail.com>=0D
  Date:   2020-03-16 (Mon, 16 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  typo=0D
=0D
=0D
  Commit: 9c28244e70183fa35ee5690dc94b68f8deb28c98=0D
      https://github.com/quicwg/base-drafts/commit/9c28244e70183fa35ee569=
0dc94b68f8deb28c98=0D
  Author: Kazuho Oku <kazuhooku@gmail.com>=0D
  Date:   2020-03-17 (Tue, 17 Mar 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
Co-Authored-By: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: c4ed9aa8173340359ce52a5030141aef624e562d=0D
      https://github.com/quicwg/base-drafts/commit/c4ed9aa8173340359ce52a=
5030141aef624e562d=0D
  Author: Kazuho Oku <kazuhooku@gmail.com>=0D
  Date:   2020-03-18 (Wed, 18 Mar 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
Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 31f5b8e9815a8d572f21f203ce2a6416765da13d=0D
      https://github.com/quicwg/base-drafts/commit/31f5b8e9815a8d572f21f2=
03ce2a6416765da13d=0D
  Author: Kazuho Oku <kazuhooku@gmail.com>=0D
  Date:   2020-03-18 (Wed, 18 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  wordwrap=0D
=0D
=0D
  Commit: 8b9fca5fac1626c928456b70da85689113260dad=0D
      https://github.com/quicwg/base-drafts/commit/8b9fca5fac1626c928456b=
70da85689113260dad=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-03-19 (Thu, 19 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Limit connection drops from Version Negotiation=0D
=0D
The text was a little too broad.  This breaks up the text and adds two=0D=

caveats to handling rules:=0D
=0D
1. If you have handled another packet, then assume that everything is=0D
good.=0D
=0D
2. If you the VN includes QUIC v1, then assume that something got=0D
corrupted.=0D
=0D
Closes #3532.=0D
=0D
=0D
  Commit: 3694163e12642a883968502c1225472f80692c16=0D
      https://github.com/quicwg/base-drafts/commit/3694163e12642a88396850=
2c1225472f80692c16=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-03-19 (Thu, 19 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Jana's suggestion=0D
=0D
=0D
  Commit: 512a5a4399191b11bc207443cce2cbd75943bbee=0D
      https://github.com/quicwg/base-drafts/commit/512a5a4399191b11bc2074=
43cce2cbd75943bbee=0D
  Author: Kazuho Oku <kazuhooku@gmail.com>=0D
  Date:   2020-03-19 (Thu, 19 Mar 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
Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: de068497997eb48d9cea63c903843dca5818fc4d=0D
      https://github.com/quicwg/base-drafts/commit/de068497997eb48d9cea63=
c903843dca5818fc4d=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-20 (Fri, 20 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Added considerations for 5tuple routing=0D
=0D
=0D
  Commit: b3e5a0c51f2e392366846026bafb98a0e654b4df=0D
      https://github.com/quicwg/base-drafts/commit/b3e5a0c51f2e3923668460=
26bafb98a0e654b4df=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-20 (Fri, 20 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  s/may/can=0D
=0D
=0D
  Commit: 657b103281dcbdceb2b1309dcdd1b1aae96fd71c=0D
      https://github.com/quicwg/base-drafts/commit/657b103281dcbdceb2b130=
9dcdd1b1aae96fd71c=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-20 (Fri, 20 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  typo=0D
=0D
=0D
  Commit: 9c9ebf7b6933158349770298fec49c5d9e2987a1=0D
      https://github.com/quicwg/base-drafts/commit/9c9ebf7b69331583497702=
98fec49c5d9e2987a1=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-03-23 (Mon, 23 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Don't remember the ACK delay=0D
=0D
Closes #3433.=0D
=0D
=0D
  Commit: 1406b1db65cfbc237e455d081f162307573eb9b3=0D
      https://github.com/quicwg/base-drafts/commit/1406b1db65cfbc237e455d=
081f162307573eb9b3=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-25 (Wed, 25 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Responded to reviews=0D
=0D
=0D
  Commit: 6962e63f1744bb1b6a29ef892a1555b1969410fe=0D
      https://github.com/quicwg/base-drafts/commit/6962e63f1744bb1b6a29ef=
892a1555b1969410fe=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-26 (Thu, 26 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix latest reviews=0D
=0D
=0D
  Commit: 7ad84a2aa5dd28bc6ed38d18fb5935600d6f3b38=0D
      https://github.com/quicwg/base-drafts/commit/7ad84a2aa5dd28bc6ed38d=
18fb5935600d6f3b38=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-27 (Fri, 27 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Addressed most of MT's comments=0D
=0D
=0D
  Commit: 8ea8ed410a5340a7289e29ac57c2f6e5d4a52d18=0D
      https://github.com/quicwg/base-drafts/commit/8ea8ed410a5340a7289e29=
ac57c2f6e5d4a52d18=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-27 (Fri, 27 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  whitespace=0D
=0D
=0D
  Commit: 3dc10be1eba2a005b9e95a5f03c5db48951d5464=0D
      https://github.com/quicwg/base-drafts/commit/3dc10be1eba2a005b9e95a=
5f03c5db48951d5464=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-03-29 (Sun, 29 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Do not reset pto_count on Initial ACKs=0D
=0D
In order to avoid sending anti-deadlock packets too quickly when the serv=
er doesn't yet have anything to send.=0D
=0D
Fixes #3546=0D
=0D
=0D
  Commit: 2c682ab830ff4b2d35be0e1a0acc62108ea3d7c9=0D
      https://github.com/quicwg/base-drafts/commit/2c682ab830ff4b2d35be0e=
1a0acc62108ea3d7c9=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-03-29 (Sun, 29 Mar 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: f31ae49b91f809ec679775f77f565540bda49a7d=0D
      https://github.com/quicwg/base-drafts/commit/f31ae49b91f809ec679775=
f77f565540bda49a7d=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-03-29 (Sun, 29 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Revert reflow changes to keep them separate=0D
=0D
=0D
  Commit: c682269b2ebc0b8d40f97b96e97b69689fd02562=0D
      https://github.com/quicwg/base-drafts/commit/c682269b2ebc0b8d40f97b=
96e97b69689fd02562=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-03-29 (Sun, 29 Mar 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: 50e0259f955a69de2bd7bd88d10ee808a1727432=0D
      https://github.com/quicwg/base-drafts/commit/50e0259f955a69de2bd7bd=
88d10ee808a1727432=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-03-29 (Sun, 29 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Set pto_count to 0 when dropping keys=0D
=0D
This should have been in the PR that created OnPacketNumberSpaceDiscarded=
().=0D
=0D
=0D
  Commit: 85bb93e1be8612c4e1b70a0506e5793b2f966c6e=0D
      https://github.com/quicwg/base-drafts/commit/85bb93e1be8612c4e1b70a=
0506e5793b2f966c6e=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Only do this for the client=0D
=0D
=0D
  Commit: dbc1c1db9cd94641b6faf82547a7028c25eaad60=0D
      https://github.com/quicwg/base-drafts/commit/dbc1c1db9cd94641b6faf8=
2547a7028c25eaad60=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 62b34f688440efd8db422ab23c8b103944d1d5a1=0D
      https://github.com/quicwg/base-drafts/commit/62b34f688440efd8db422a=
b23c8b103944d1d5a1=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 0abc1ed6f33ec1a6b62a320e12e4fa9a36a9972b=0D
      https://github.com/quicwg/base-drafts/commit/0abc1ed6f33ec1a6b62a32=
0e12e4fa9a36a9972b=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 4dfae9c5d7613a386e5ed598a28d54aa2947579e=0D
      https://github.com/quicwg/base-drafts/commit/4dfae9c5d7613a386e5ed5=
98a28d54aa2947579e=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 2c81e06af7c8d22384868e28da3467bb1df910a1=0D
      https://github.com/quicwg/base-drafts/commit/2c81e06af7c8d22384868e=
28da3467bb1df910a1=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 784000eefce372964fd50d4f11dca4f908ef0773=0D
      https://github.com/quicwg/base-drafts/commit/784000eefce372964fd50d=
4f11dca4f908ef0773=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 88a71208e9d4db9fcd6f4724bc1476e1f604a4bf=0D
      https://github.com/quicwg/base-drafts/commit/88a71208e9d4db9fcd6f47=
24bc1476e1f604a4bf=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  removed inferences about disable_migration=0D
=0D
=0D
  Commit: 067d3fa456cc4ef54718991aca9cdad1634f881a=0D
      https://github.com/quicwg/base-drafts/commit/067d3fa456cc4ef5471899=
1aca9cdad1634f881a=0D
  Author: Eric Kinnear <ekinnear@apple.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  #3489: Note that state probably needs to be maintained for each issued =
CID if the peer chooses to use it=0D
=0D
=0D
  Commit: f122c3eb3b563fe50bb3cec5305833ea5a6f2bd1=0D
      https://github.com/quicwg/base-drafts/commit/f122c3eb3b563fe50bb3ce=
c5305833ea5a6f2bd1=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-03-30 (Mon, 30 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Speak as one with authority=0D
=0D
=0D
  Commit: 9d12af7725d8b44897c17cc174632eb83868340e=0D
      https://github.com/quicwg/base-drafts/commit/9d12af7725d8b44897c17c=
c174632eb83868340e=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-03-30 (Mon, 30 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  No detail here=0D
=0D
=0D
  Commit: d887d3bd18b3638f73703885db0e93f32120345a=0D
      https://github.com/quicwg/base-drafts/commit/d887d3bd18b3638f737038=
85db0e93f32120345a=0D
  Author: Kazuho Oku <kazuhooku@gmail.com>=0D
  Date:   2020-03-31 (Tue, 31 Mar 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
Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 22a3071287a58755789df4115eec579b86198a52=0D
      https://github.com/quicwg/base-drafts/commit/22a3071287a58755789df4=
115eec579b86198a52=0D
  Author: Kazuho Oku <kazuhooku@gmail.com>=0D
  Date:   2020-03-31 (Tue, 31 Mar 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
Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 3c7a903cfd8b86f9fe81522cd81c967f7edba919=0D
      https://github.com/quicwg/base-drafts/commit/3c7a903cfd8b86f9fe8152=
2cd81c967f7edba919=0D
  Author: Kazuho Oku <kazuhooku@gmail.com>=0D
  Date:   2020-03-31 (Tue, 31 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  wordwrap=0D
=0D
=0D
  Commit: 7bc36d9a8e26ed505dab7082fb0da172839088c6=0D
      https://github.com/quicwg/base-drafts/commit/7bc36d9a8e26ed505dab70=
82fb0da172839088c6=0D
  Author: Kazuho Oku <kazuhooku@gmail.com>=0D
  Date:   2020-03-31 (Tue, 31 Mar 2020)=0D
=0D
  Changed paths:=0D
    M .circleci/config.yml=0D
    M .lint.py=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-invariants.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
  Merge branch 'master' into kazuho/initial-timeouts=0D
=0D
=0D
  Commit: 12b817e737f4e3ccd4e9a45db40036496f7bd0c5=0D
      https://github.com/quicwg/base-drafts/commit/12b817e737f4e3ccd4e9a4=
5db40036496f7bd0c5=0D
  Author: Kazuho Oku <kazuhooku@gmail.com>=0D
  Date:   2020-03-31 (Tue, 31 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  wordwrap=0D
=0D
=0D
  Commit: 312062018b0596e9a751a7004781598f4059b343=0D
      https://github.com/quicwg/base-drafts/commit/312062018b0596e9a751a7=
004781598f4059b343=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-03-31 (Tue, 31 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Apply suggestions from code review=0D
=0D
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: ee2397b42d7afdd6d8627c0de06c40588b97b007=0D
      https://github.com/quicwg/base-drafts/commit/ee2397b42d7afdd6d8627c=
0de06c40588b97b007=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-03-31 (Tue, 31 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Rewrap, rearrange=0D
=0D
=0D
  Commit: 96d2a6bde85df0b92864dd8cdc92b1aa35838dfa=0D
      https://github.com/quicwg/base-drafts/commit/96d2a6bde85df0b92864dd=
8cdc92b1aa35838dfa=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-03-31 (Tue, 31 Mar 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: 62544e2403262f194f0074de29171da839581677=0D
      https://github.com/quicwg/base-drafts/commit/62544e2403262f194f0074=
de29171da839581677=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-03-31 (Tue, 31 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Apply suggestions from code review=0D
=0D
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 4b278382d1703d6433ae5a1cb2a5ff9628227f27=0D
      https://github.com/quicwg/base-drafts/commit/4b278382d1703d6433ae5a=
1cb2a5ff9628227f27=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-03-31 (Tue, 31 Mar 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: c7684769bd36a96eb8cdb3e985b2a5f517f0e49e=0D
      https://github.com/quicwg/base-drafts/commit/c7684769bd36a96eb8cdb3=
e985b2a5f517f0e49e=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-04-01 (Wed, 01 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-http.md=0D
=0D
Co-Authored-By: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 5a7994cad149f467f72ff21e240c62cfaf0523d8=0D
      https://github.com/quicwg/base-drafts/commit/5a7994cad149f467f72ff2=
1e240c62cfaf0523d8=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-01 (Wed, 01 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge branch 'master' into ianswett-initial-pto=0D
=0D
=0D
  Commit: 3bd99fbdbfcc74e15f1a0402f2168b9f30ab14a5=0D
      https://github.com/quicwg/base-drafts/commit/3bd99fbdbfcc74e15f1a04=
02f2168b9f30ab14a5=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-02 (Thu, 02 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Kazuho's suggestion=0D
=0D
=0D
  Commit: 51587ef5951ec776ef1d547f18dff3b9358842ef=0D
      https://github.com/quicwg/base-drafts/commit/51587ef5951ec776ef1d54=
7f18dff3b9358842ef=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-04-02 (Thu, 02 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Reorder some things=0D
=0D
=0D
  Commit: 7ab2f2ef93a33ed9adb9e5e9c2a7c842cfc6471f=0D
      https://github.com/quicwg/base-drafts/commit/7ab2f2ef93a33ed9adb9e5=
e9c2a7c842cfc6471f=0D
  Author: Eric Kinnear <32474881+erickinnear@users.noreply.github.com>=0D=

  Date:   2020-04-02 (Thu, 02 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  @MikeBishop's review comment=0D
=0D
Co-Authored-By: Mike Bishop <mbishop@evequefou.be>=0D
=0D
=0D
  Commit: 1f12b18593747047824b01fd9b5f05c802615a89=0D
      https://github.com/quicwg/base-drafts/commit/1f12b18593747047824b01=
fd9b5f05c802615a89=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-08 (Wed, 08 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Text on session resumption=0D
=0D
In looking at #3028, I realized that we had nowhere that addressed the=0D=

basic concept of resumption.  This is, I hope, all that we need to say=0D=

on the subject.  It talks about state and then the privacy implications=0D=

of using resumption.=0D
=0D
I found less in the TLS 1.3 RFC on this subject than I might have liked=0D=

to see.  It only really addressed ticket reuse.  So this is a little=0D
more verbose than is ideal.=0D
=0D
Closes #3028.=0D
=0D
=0D
  Commit: b51c50467f9d19e5acc1ded87db2cc322b41e57e=0D
      https://github.com/quicwg/base-drafts/commit/b51c50467f9d19e5acc1de=
d87db2cc322b41e57e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-08 (Wed, 08 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Add a note to security considerations=0D
=0D
=0D
  Commit: 46ee3b6c79fed064878fd43d265c78150a4bf70e=0D
      https://github.com/quicwg/base-drafts/commit/46ee3b6c79fed064878fd4=
3d265c78150a4bf70e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-08 (Wed, 08 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Tweak intro to security considerations=0D
=0D
=0D
  Commit: 5d528d65f0d8ea9e1be0136af63e987788246728=0D
      https://github.com/quicwg/base-drafts/commit/5d528d65f0d8ea9e1be013=
6af63e987788246728=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-08 (Wed, 08 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Remove dead note from header protection section=0D
=0D
=0D
  Commit: a589a2af9723ef9378d88486e015df6f3ea8e395=0D
      https://github.com/quicwg/base-drafts/commit/a589a2af9723ef9378d884=
86e015df6f3ea8e395=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-08 (Wed, 08 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-invariants.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
  Kramdown usage updates=0D
=0D
=0D
  Commit: 3008ca37d95858b854becef833957a150e602abb=0D
      https://github.com/quicwg/base-drafts/commit/3008ca37d95858b854bece=
f833957a150e602abb=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-08 (Wed, 08 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Add subsections to Retry packet section=0D
=0D
This was getting a little long.  You could get lost in there.=0D
=0D
The text was fine, it was mostly well structured.  All it needed was one=0D=

small move and some headers.=0D
=0D
=0D
  Commit: f54003133dec2383d116c775451f48aa0bb604d0=0D
      https://github.com/quicwg/base-drafts/commit/f54003133dec2383d116c7=
75451f48aa0bb604d0=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-08 (Wed, 08 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Continuation does not imply completion=0D
=0D
Co-Authored-By: Marten Seemann <martenseemann@gmail.com>=0D
=0D
=0D
  Commit: 4c97d9544a49868c3043177312b3cd97a41d5321=0D
      https://github.com/quicwg/base-drafts/commit/4c97d9544a49868c304317=
7312b3cd97a41d5321=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-09 (Thu, 09 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  speling=0D
=0D
Co-Authored-By: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 1bfa6f297c9b774e310f128a1f3c9fc450f2c2c2=0D
      https://github.com/quicwg/base-drafts/commit/1bfa6f297c9b774e310f12=
8a1f3c9fc450f2c2c2=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-09 (Thu, 09 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-invariants.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
  Fix mailing list links too=0D
=0D
=0D
  Commit: 0a3dacee5db0f6782e8b4da30a6c8e82590e8c1a=0D
      https://github.com/quicwg/base-drafts/commit/0a3dacee5db0f6782e8b4d=
a30a6c8e82590e8c1a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-09 (Thu, 09 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fixup bad link=0D
=0D
=0D
  Commit: a1eff954c33c39d35b62d3a5491099e83562f0e2=0D
      https://github.com/quicwg/base-drafts/commit/a1eff954c33c39d35b62d3=
a5491099e83562f0e2=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-09 (Thu, 09 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.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: 53b4584e6fc28ba304486f63e98294ffce326233=0D
      https://github.com/quicwg/base-drafts/commit/53b4584e6fc28ba304486f=
63e98294ffce326233=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-09 (Thu, 09 Apr 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: 5226e28d34da20c95106cc8022668b5b09751577=0D
      https://github.com/quicwg/base-drafts/commit/5226e28d34da20c95106cc=
8022668b5b09751577=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-09 (Thu, 09 Apr 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: e701772e6c33bd6002546787c017b54878b392e4=0D
      https://github.com/quicwg/base-drafts/commit/e701772e6c33bd60025467=
87c017b54878b392e4=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-09 (Thu, 09 Apr 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: e192b697af82865eedc302435a35bd99bede506b=0D
      https://github.com/quicwg/base-drafts/commit/e192b697af82865eedc302=
435a35bd99bede506b=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-09 (Thu, 09 Apr 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: 02069cd3461402b75d3a6b5924728875ae58277e=0D
      https://github.com/quicwg/base-drafts/commit/02069cd3461402b75d3a6b=
5924728875ae58277e=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-09 (Thu, 09 Apr 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: cd389d729eefda129096fd7ab0590541af5df39c=0D
      https://github.com/quicwg/base-drafts/commit/cd389d729eefda129096fd=
7ab0590541af5df39c=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-09 (Thu, 09 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix reference to RFC5682=0D
=0D
=0D
  Commit: c0ad8f5fa424a23921dbbf33ae76477945b299ce=0D
      https://github.com/quicwg/base-drafts/commit/c0ad8f5fa424a23921dbbf=
33ae76477945b299ce=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-14 (Tue, 14 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  plural=0D
=0D
Co-Authored-By: Mike Bishop <mbishop@evequefou.be>=0D
=0D
=0D
  Commit: 2c1639b6878c052a3bd5220bcae298f8052cb688=0D
      https://github.com/quicwg/base-drafts/commit/2c1639b6878c052a3bd522=
0bcae298f8052cb688=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-14 (Tue, 14 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3574 from quicwg/jri/fix-normative=0D
=0D
Fix reference to RFC5682=0D
=0D
=0D
  Commit: 3514bb31525a46963cd74139ab0dd7605b20b44a=0D
      https://github.com/quicwg/base-drafts/commit/3514bb31525a46963cd741=
39ab0dd7605b20b44a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-invariants.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
  Merge pull request #3569 from quicwg/kramdown-updates=0D
=0D
Kramdown usage updates=0D
=0D
=0D
  Commit: 45de5a1d73b963ea5888d063b0a6daa48f0efc97=0D
      https://github.com/quicwg/base-drafts/commit/45de5a1d73b963ea5888d0=
63b0a6daa48f0efc97=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3568 from quicwg/dead-hp-note=0D
=0D
Remove dead note from header protection section=0D
=0D
=0D
  Commit: 65d2acbe3055ab996a07fd9a9c56626e66052844=0D
      https://github.com/quicwg/base-drafts/commit/65d2acbe3055ab996a07fd=
9a9c56626e66052844=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  More detail regarding dropping of ACK Ranges=0D
=0D
This explains what needs to be kept and why.  Specifically, you need to=0D=

keep ranges unless you have other means of ensuring that you don't=0D
accept packets from those ranges again.  You also need to keep the=0D
largest acknowledged so that you can get a packet number from subsequent=0D=

packets.=0D
=0D
This also recommends that ACK frames include the largest acknowledged=0D
always.  That is primarily to ensure that ECN works properly, and even=0D=

there, you only disable ECN if you get some weird reordering, so it's=0D
probably not a big deal if you don't follow this recommendation.=0D
=0D
Closes #3541.=0D
Closes #3537.=0D
=0D
=0D
  Commit: 936c5a0abb73827453297e9c6af5326ac80763bc=0D
      https://github.com/quicwg/base-drafts/commit/936c5a0abb73827453297e=
9c6af5326ac80763bc=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Test for an alternative format=0D
=0D
For describing packet and frame layouts.  Prototype in the transport=0D
doc only.=0D
=0D
Not sure if this is worth pursuing, but it closes #3115 if it does.=0D
=0D
=0D
  Commit: cb4c268a1ce23a3ad3c593c64e17a9d365fa2c62=0D
      https://github.com/quicwg/base-drafts/commit/cb4c268a1ce23a3ad3c593=
c64e17a9d365fa2c62=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Some more formalism=0D
=0D
=0D
  Commit: 50a1c5f24c9a9a3dae60282dbc8010d61ac187d7=0D
      https://github.com/quicwg/base-drafts/commit/50a1c5f24c9a9a3dae6028=
2dbc8010d61ac187d7=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Refinements=0D
=0D
=0D
  Commit: fcdd2fa0265be10914c0ef84c9818497f48ac953=0D
      https://github.com/quicwg/base-drafts/commit/fcdd2fa0265be10914c0ef=
84c9818497f48ac953=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  One fewer line=0D
=0D
=0D
  Commit: 1bf2dc3301734962ac02b4ba64f481451d00c14e=0D
      https://github.com/quicwg/base-drafts/commit/1bf2dc3301734962ac02b4=
ba64f481451d00c14e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Follow own conventions=0D
=0D
=0D
  Commit: ac1f3ac831e16b62f0883fa9b25acf5da8eba2a5=0D
      https://github.com/quicwg/base-drafts/commit/ac1f3ac831e16b62f0883f=
a9b25acf5da8eba2a5=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Refine format syntax more=0D
=0D
=0D
  Commit: 44e37af7f673f81651dc2590799f34de8577154a=0D
      https://github.com/quicwg/base-drafts/commit/44e37af7f673f81651dc25=
90799f34de8577154a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-invariants.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Apply the new format throughout=0D
=0D
=0D
  Commit: 3223ae2141a4f1373378ec99ed22dbb266999b85=0D
      https://github.com/quicwg/base-drafts/commit/3223ae2141a4f1373378ec=
99ed22dbb266999b85=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Use length instead of len now that there is room=0D
=0D
=0D
  Commit: 4cc5359be9ce099d15e5a344c22278c0a38eaac8=0D
      https://github.com/quicwg/base-drafts/commit/4cc5359be9ce099d15e5a3=
44c22278c0a38eaac8=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Batch of code review suggestions=0D
=0D
Co-Authored-By: ianswett <ianswett@users.noreply.github.com>=0D
Co-Authored-By: Mike Bishop <mbishop@evequefou.be>=0D
Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 68ccc047f48e2dff3ca1fe595cbf32e1abc2d261=0D
      https://github.com/quicwg/base-drafts/commit/68ccc047f48e2dff3ca1fe=
595cbf32e1abc2d261=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Rewrap=0D
=0D
=0D
  Commit: 4c0abcff58fa163d3a506c592a89f6e8b41789d0=0D
      https://github.com/quicwg/base-drafts/commit/4c0abcff58fa163d3a506c=
592a89f6e8b41789d0=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Remove parenthesized letters from bit notation=0D
=0D
=0D
  Commit: 4d4701548ea1d9f18140e89a1114c003b4af79ed=0D
      https://github.com/quicwg/base-drafts/commit/4d4701548ea1d9f18140e8=
9a1114c003b4af79ed=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Consistent naming for _BLOCKED fields=0D
=0D
Closes #3579.=0D
=0D
=0D
  Commit: 82bcaff60bf2d6725da5d1c1f628fb510ebdae7f=0D
      https://github.com/quicwg/base-drafts/commit/82bcaff60bf2d6725da5d1=
c1f628fb510ebdae7f=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-16 (Thu, 16 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Notpayload=0D
=0D
Co-Authored-By: Lucas Pardue <lucaspardue.24.7@gmail.com>=0D
=0D
=0D
  Commit: f746d7f956d321e1fdb5decae711bd3360a6ac46=0D
      https://github.com/quicwg/base-drafts/commit/f746d7f956d321e1fdb5de=
cae711bd3360a6ac46=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-16 (Thu, 16 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Define the SETTINGS frame properly=0D
=0D
=0D
  Commit: 1a1e49b557c6d913461b4b692aa38884e7aecd1a=0D
      https://github.com/quicwg/base-drafts/commit/1a1e49b557c6d913461b4b=
692aa38884e7aecd1a=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-18 (Sat, 18 Apr 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: 7826ec1e1a5db2c03eebd43ff9dfd5ef6b3e4f69=0D
      https://github.com/quicwg/base-drafts/commit/7826ec1e1a5db2c03eebd4=
3ff9dfd5ef6b3e4f69=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-18 (Sat, 18 Apr 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: 2687b58c43c63eee2bf2f2a229dc95e5b1d05654=0D
      https://github.com/quicwg/base-drafts/commit/2687b58c43c63eee2bf2f2=
a229dc95e5b1d05654=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-18 (Sat, 18 Apr 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: 72c15c77fefa02d92daf2016553deb1185e7fcb7=0D
      https://github.com/quicwg/base-drafts/commit/72c15c77fefa02d92daf20=
16553deb1185e7fcb7=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-18 (Sat, 18 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3525 from kazuho/kazuho/initial-timeouts=0D
=0D
eliminate the difference between when having no RTT sample and having one=
=0D
=0D
=0D
  Commit: 66fb2929883fc076683392c81be00c2b6936ad82=0D
      https://github.com/quicwg/base-drafts/commit/66fb2929883fc076683392=
c81be00c2b6936ad82=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-19 (Sun, 19 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Why min CWND of 2 instead of 1=0D
=0D
Feel free to suggest better text or other reasons, but this is what I cam=
e up with.=0D
=0D
Fixes #3261=0D
=0D
=0D
  Commit: beca7cd89fadd8ab85d81aee9856aa53e90648f9=0D
      https://github.com/quicwg/base-drafts/commit/beca7cd89fadd8ab85d81a=
ee9856aa53e90648f9=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-19 (Sun, 19 Apr 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: 1f178bd4d73ac7f3f7c2168e775fe5f64c92dc61=0D
      https://github.com/quicwg/base-drafts/commit/1f178bd4d73ac7f3f7c216=
8e775fe5f64c92dc61=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-19 (Sun, 19 Apr 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: eb935271a7446ecdf7d598c794db2ebfd4c4ff39=0D
      https://github.com/quicwg/base-drafts/commit/eb935271a7446ecdf7d598=
c794db2ebfd4c4ff39=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-19 (Sun, 19 Apr 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: 6db7436f8ed8aaf1d52c1c136321fd3639c08062=0D
      https://github.com/quicwg/base-drafts/commit/6db7436f8ed8aaf1d52c1c=
136321fd3639c08062=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-19 (Sun, 19 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3551 from quicwg/ianswett-initial-pto=0D
=0D
Do not reset pto_count on Initial ACKs=0D
=0D
=0D
  Commit: db65357e18d4e38d7e9c8ac16e1b66ef21d8e51b=0D
      https://github.com/quicwg/base-drafts/commit/db65357e18d4e38d7e9c8a=
c16e1b66ef21d8e51b=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3557 from erickinnear/ek/per_cid_state=0D
=0D
Note that state needs to be maintained for each issued CID if the peer ch=
ooses to use it=0D
=0D
=0D
  Commit: 70772cb0d2cc7975c56d862d5fcd619c0baa5daf=0D
      https://github.com/quicwg/base-drafts/commit/70772cb0d2cc7975c56d86=
2d5fcd619c0baa5daf=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3533 from quicwg/ignore-same-version-vn=0D
=0D
Limit connection drops from Version Negotiation=0D
=0D
=0D
  Commit: bf3876a164e6a10b4f9e6105c5ecb9f1142899d0=0D
      https://github.com/quicwg/base-drafts/commit/bf3876a164e6a10b4f9e61=
05c5ecb9f1142899d0=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3545 from quicwg/dont-remember-max_ack_delay=0D
=0D
Don't remember the ACK delay=0D
=0D
=0D
  Commit: e05726eb06f6ea4b94991b71305cfd6c4feff9e5=0D
      https://github.com/quicwg/base-drafts/commit/e05726eb06f6ea4b94991b=
71305cfd6c4feff9e5=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3584 from quicwg/blocked-frame-limit-names=0D
=0D
Consistent naming for _BLOCKED fields=0D
=0D
=0D
  Commit: 5e5a61d904bc870925af97a27d11d18b8a5c2520=0D
      https://github.com/quicwg/base-drafts/commit/5e5a61d904bc870925af97=
a27d11d18b8a5c2520=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Describe what happens if TLS breaks=0D
=0D
We don't ever really say that QUIC depends on TLS providing the=0D
properties that we claim TLS provides.  So it's worth pointing that=0D
exposure.  This is more so because some of the properties we claim are=0D=

dependent on these properties.=0D
=0D
Closes #3512.=0D
=0D
=0D
  Commit: 4ca647232fb7455f49c926314735d0434c9c0dc3=0D
      https://github.com/quicwg/base-drafts/commit/4ca647232fb7455f49c926=
314735d0434c9c0dc3=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarifications for preferred_address=0D
=0D
This just writes down what @MikeBishop suggested in #3432.=0D
=0D
Closes #3432.=0D
=0D
=0D
  Commit: 9c911c716fddb325c0bdd91039f0e6095442cc74=0D
      https://github.com/quicwg/base-drafts/commit/9c911c716fddb325c0bdd9=
1039f0e6095442cc74=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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: 6e6501fd51a6c5673c4e3a1109fcf5f0bd78e06f=0D
      https://github.com/quicwg/base-drafts/commit/6e6501fd51a6c5673c4e3a=
1109fcf5f0bd78e06f=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3558 from quicwg/http/authority=0D
=0D
Authoritative access in HTTP/3=0D
=0D
=0D
  Commit: 6d95aa65d4366e6474de8b61f964e99ffd9a996b=0D
      https://github.com/quicwg/base-drafts/commit/6d95aa65d4366e6474de8b=
61f964e99ffd9a996b=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 1225aad461e601e2cfec4e354a8b34704f633f81=0D
      https://github.com/quicwg/base-drafts/commit/1225aad461e601e2cfec4e=
354a8b34704f633f81=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: d214bfdcdc246bc0955acf834fc64c3d463ab2d6=0D
      https://github.com/quicwg/base-drafts/commit/d214bfdcdc246bc0955acf=
834fc64c3d463ab2d6=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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: ce6ab3402520ed0931bafed333a3ab3cddf73903=0D
      https://github.com/quicwg/base-drafts/commit/ce6ab3402520ed0931bafe=
d333a3ab3cddf73903=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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: 5580b7a57d7fa5f1585f598751f9930b4480c01a=0D
      https://github.com/quicwg/base-drafts/commit/5580b7a57d7fa5f1585f59=
8751f9930b4480c01a=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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: 2cf9a5b77c1ef7e54de50f8cb2744cd9a1342627=0D
      https://github.com/quicwg/base-drafts/commit/2cf9a5b77c1ef7e54de50f=
8cb2744cd9a1342627=0D
  Author: Eric Kinnear <ekinnear@apple.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Unify on semicolon=0D
=0D
=0D
  Commit: 4df3184f1d5f1fca44b368bc1b1e542a0546f76e=0D
      https://github.com/quicwg/base-drafts/commit/4df3184f1d5f1fca44b368=
bc1b1e542a0546f76e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-21 (Tue, 21 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  maybe or not=0D
=0D
Co-Authored-By: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 72c7eced88de7b859edf4d1f093277851433ab8a=0D
      https://github.com/quicwg/base-drafts/commit/72c7eced88de7b859edf4d=
1f093277851433ab8a=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-21 (Tue, 21 Apr 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
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 757a202326e3b78a0b7fb98dece2d4fba2356d57=0D
      https://github.com/quicwg/base-drafts/commit/757a202326e3b78a0b7fb9=
8dece2d4fba2356d57=0D
  Author: Alan Frindell <afrind@fb.com>=0D
  Date:   2020-04-21 (Tue, 21 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  [qpack] Fix example=0D
=0D
The algorithm was updated at somepoint but the example was lagging.=0D
=0D
Fixes #3549=0D
=0D
=0D
  Commit: aa60cc1879ae4569ac063da9d3c21b49abfc4673=0D
      https://github.com/quicwg/base-drafts/commit/aa60cc1879ae4569ac063d=
a9d3c21b49abfc4673=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-22 (Wed, 22 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-invariants.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3573 from quicwg/alternative-format=0D
=0D
Alternative packet format presentation=0D
=0D
=0D
  Commit: 1e4f3f5057c98e674815e52e66586bbd5312cf19=0D
      https://github.com/quicwg/base-drafts/commit/1e4f3f5057c98e674815e5=
2e66586bbd5312cf19=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-22 (Wed, 22 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3591 from erickinnear/ek/editorial_semicolons=0D
=0D
Choose between semicolons and parenthesis=0D
=0D
=0D
  Commit: 8fac2f26b8ba6fefb3ef58d194a6900c37887a6c=0D
      https://github.com/quicwg/base-drafts/commit/8fac2f26b8ba6fefb3ef58=
d194a6900c37887a6c=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-22 (Wed, 22 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3570 from quicwg/retry-split=0D
=0D
Add subsections to Retry packet section=0D
=0D
=0D
  Commit: 6701ef1888a8018376b6d58f53138297725f0ae4=0D
      https://github.com/quicwg/base-drafts/commit/6701ef1888a8018376b6d5=
8f53138297725f0ae4=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-22 (Wed, 22 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3587 from quicwg/hs-mitm=0D
=0D
Describe what happens if TLS breaks=0D
=0D
=0D
  Commit: 6cdd4fda2a933dee95af7d558baf37bdfd377c30=0D
      https://github.com/quicwg/base-drafts/commit/6cdd4fda2a933dee95af7d=
558baf37bdfd377c30=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-22 (Wed, 22 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  inheritance=0D
=0D
=0D
  Commit: bdbfb41d4ef175c3cd46cc9b952b9c6f6886395f=0D
      https://github.com/quicwg/base-drafts/commit/bdbfb41d4ef175c3cd46cc=
9b952b9c6f6886395f=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-22 (Wed, 22 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3566 from quicwg/resumption=0D
=0D
Text on session resumption=0D
=0D
=0D
  Commit: 5a642a3fddf5fbc6a4440433ee00ac9ff602099c=0D
      https://github.com/quicwg/base-drafts/commit/5a642a3fddf5fbc6a44404=
33ee00ac9ff602099c=0D
  Author: Bence B=C3=A9ky <bnc@google.com>=0D
  Date:   2020-04-22 (Wed, 22 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Change one stray HTTP_NO_ERROR to H3_NO_ERROR.=0D
=0D
This has already been done at #3119 but somehow got reverted.=0D
=0D
=0D
  Commit: 7f887a92f9a235c7bfc3d89644ef1d241dfc88db=0D
      https://github.com/quicwg/base-drafts/commit/7f887a92f9a235c7bfc3d8=
9644ef1d241dfc88db=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-23 (Thu, 23 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  The peer only has 1 key, so send both=0D
=0D
Sending in multiple PN spaces on PTO is particularly useful when the peer=
 only has receive keys for 1 pn space, and the you don't know which.=0D
=0D
Fixes #3583=0D
=0D
=0D
  Commit: f4408896e46b394fd4a9b99824ef8f3a52b23ca3=0D
      https://github.com/quicwg/base-drafts/commit/f4408896e46b394fd4a9b9=
9824ef8f3a52b23ca3=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-23 (Thu, 23 Apr 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: 514e5b4b68f3558b35e38a5efba361d969d8d8ee=0D
      https://github.com/quicwg/base-drafts/commit/514e5b4b68f3558b35e38a=
5efba361d969d8d8ee=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Version greasing rewrite=0D
=0D
This section was a holdover from when we had real version negotiation,=0D=

so it assumed a bunch of actions that don't really apply in the current=0D=

document.=0D
=0D
This doesn't change what is permitted, but it reframes it a little.=0D
=0D
Closes #3013.=0D
=0D
=0D
  Commit: 1bba65d0d8de49c21c62909450e8685a5aeb4266=0D
      https://github.com/quicwg/base-drafts/commit/1bba65d0d8de49c21c6290=
9450e8685a5aeb4266=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Rationale for NEW_CONNECTION_ID processing order=0D
=0D
We already had something here, but I think that it missed the central=0D
reason, which is the combination of:=0D
=0D
* wanting to replace all connection IDs=0D
* having used the limit from active_connection_id_limit=0D
* wanting to ensure that there is >=3D 1 available connection IDs left=0D=

=0D
This phrasing isn't quite that explicit, but I think that it is clear=0D
enough.=0D
=0D
Closes #3422.=0D
=0D
=0D
  Commit: b41c848f281bda976192136c6281185808c5e021=0D
      https://github.com/quicwg/base-drafts/commit/b41c848f281bda97619213=
6c6281185808c5e021=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Define the use of generic TLS alerts=0D
=0D
This was already permitted by the transport document, but it was not=0D
adequately explained.  The example that tripped us up was ALPN, which=0D
has received a bit of attention here.=0D
=0D
Closes #3580.=0D
=0D
=0D
  Commit: 88bbc30af2f9d630fb059d39774b295153fa580c=0D
      https://github.com/quicwg/base-drafts/commit/88bbc30af2f9d630fb059d=
39774b295153fa580c=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Cite relevant section=0D
=0D
=0D
  Commit: 475242d0c9ca9e32113c90859748c7adf577fdfc=0D
      https://github.com/quicwg/base-drafts/commit/475242d0c9ca9e32113c90=
859748c7adf577fdfc=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Tweaks from review=0D
=0D
=0D
  Commit: cb3e9a4961fffdba7493a77b0db2d73f63f072ca=0D
      https://github.com/quicwg/base-drafts/commit/cb3e9a4961fffdba7493a7=
7b0db2d73f63f072ca=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarify anti-deadlock Handshake PTO=0D
=0D
This is what the pseudocode says, but I couldn't find anywhere in the tex=
t that clarified that if there were no ack-eliciting packets to arm PTO f=
rom, use Now().=0D
=0D
=0D
  Commit: 05c12786fd19607933556d87eb28bfe1111b6c27=0D
      https://github.com/quicwg/base-drafts/commit/05c12786fd19607933556d=
87eb28bfe1111b6c27=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: eac517cfa6e3e58dd1caf817ee2218513204b905=0D
      https://github.com/quicwg/base-drafts/commit/eac517cfa6e3e58dd1caf8=
17ee2218513204b905=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 8e68ce6266e405fd56b90753737d641be8e7ba50=0D
      https://github.com/quicwg/base-drafts/commit/8e68ce6266e405fd56b907=
53737d641be8e7ba50=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  DPLPMTUD fixes=0D
=0D
A few minor tweaks based on review of the latest DPLPMTUD draft.=0D
=0D
If I never have to type DPLPMTUD ever again, I'll be happy.=0D
=0D
Closes #3217.=0D
=0D
=0D
  Commit: 675d02f739735fbc387853e6bea102ec82013d58=0D
      https://github.com/quicwg/base-drafts/commit/675d02f739735fbc387853=
e6bea102ec82013d58=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 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-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix references=0D
=0D
Take the regex (note leading space):=0D
=0D
```=0D
 \(see([\n\s]+(?:(?:Section|Appendix)[\n\s]+\S+[\n\s]+of[\n\s]+)?(?:\{\{|=
\[)[^\}]+(?:\}\}|\]))\)\.=0D
```=0D
And replace with:=0D
```=0D
; see$1.=0D
```=0D
=0D
All mechanical, no manual fixups.=0D
=0D
=0D
  Commit: 86c3ad5a1b53e80e3d2c05155c87877166823118=0D
      https://github.com/quicwg/base-drafts/commit/86c3ad5a1b53e80e3d2c05=
155c87877166823118=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Manual fixes for -transport=0D
=0D
=0D
  Commit: 49983b1f93846c871fa0ee39147b310a5b1b5156=0D
      https://github.com/quicwg/base-drafts/commit/49983b1f93846c871fa0ee=
39147b310a5b1b5156=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Manual fixes for -http=0D
=0D
=0D
  Commit: cef47aeb28cab88c401968cc4039f6d262e0a7db=0D
      https://github.com/quicwg/base-drafts/commit/cef47aeb28cab88c401968=
cc4039f6d262e0a7db=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update pseudocode to not arm PTO..=0D
=0D
For ApplicationData until the handshake is complete.=0D
=0D
=0D
  Commit: 5faae5c78a75758cbc495374dd457f8abf3d0110=0D
      https://github.com/quicwg/base-drafts/commit/5faae5c78a75758cbc4953=
74dd457f8abf3d0110=0D
  Author: afrind <afrind@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  [qpack] Add comment explaining static table (#3576)=0D
=0D
* [qpack] Add comment explaining static table=0D
=0D
Fixes #3562=0D
=0D
* Feedback from Martin and Lucas=0D
=0D
=0D
  Commit: f53564576b1aac2aeb58abaf12e63c7b6c9ee91c=0D
      https://github.com/quicwg/base-drafts/commit/f53564576b1aac2aeb58ab=
af12e63c7b6c9ee91c=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Remove trailing spaces=0D
=0D
=0D
  Commit: d9ed15b2424498cfc8f593392e0971b92d75524f=0D
      https://github.com/quicwg/base-drafts/commit/d9ed15b2424498cfc8f593=
392e0971b92d75524f=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 681ade21279f5472630008c98c2a66ce930252d7=0D
      https://github.com/quicwg/base-drafts/commit/681ade21279f5472630008=
c98c2a66ce930252d7=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3599 from quicwg/version-greasing=0D
=0D
Version greasing rewrite=0D
=0D
=0D
  Commit: 88a2d691e8f4b25d6f969cf05de7bbfda29244f3=0D
      https://github.com/quicwg/base-drafts/commit/88a2d691e8f4b25d6f969c=
f05de7bbfda29244f3=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3597 from quicwg/ianswett-1-key=0D
=0D
The peer only has 1 key, so PTO both=0D
=0D
=0D
  Commit: 49476e60ba257b06730ede5bd93a8acb53eb484a=0D
      https://github.com/quicwg/base-drafts/commit/49476e60ba257b06730ede=
5bd93a8acb53eb484a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3600 from quicwg/cid-limit-flip=0D
=0D
Rationale for NEW_CONNECTION_ID processing order=0D
=0D
=0D
  Commit: 1c7e1332ad70abd26438c42825a003fbff341dd6=0D
      https://github.com/quicwg/base-drafts/commit/1c7e1332ad70abd26438c4=
2825a003fbff341dd6=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  MUST verify =3D> MUST NOT accept on fail=0D
=0D
=0D
  Commit: 948cb8eccab03b9b1405ab9a6b9bdc9331fcce40=0D
      https://github.com/quicwg/base-drafts/commit/948cb8eccab03b9b1405ab=
9a6b9bdc9331fcce40=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3588 from quicwg/spa-clarifications=0D
=0D
Clarifications for preferred_address=0D
=0D
=0D
  Commit: 5e6c5b4750c8300f625ae9539ca65f27a5824e0f=0D
      https://github.com/quicwg/base-drafts/commit/5e6c5b4750c8300f625ae9=
539ca65f27a5824e0f=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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
=0D
  Commit: e06a5420b9870f9cfe6450f1f1e2e655b76e3861=0D
      https://github.com/quicwg/base-drafts/commit/e06a5420b9870f9cfe6450=
f1f1e2e655b76e3861=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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
=0D
  Commit: 1c5b3a9454c5b3e6d183e93d57ce5ce980fcd604=0D
      https://github.com/quicwg/base-drafts/commit/1c5b3a9454c5b3e6d183e9=
3d57ce5ce980fcd604=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 0b4044e328abb21d5d1fb5055209721b7daf4db5=0D
      https://github.com/quicwg/base-drafts/commit/0b4044e328abb21d5d1fb5=
055209721b7daf4db5=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 19e9d5c5cdd9e50d524c6c4fc7c9ef77dce667b8=0D
      https://github.com/quicwg/base-drafts/commit/19e9d5c5cdd9e50d524c6c=
4fc7c9ef77dce667b8=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 729fcb04e76d59f508d2c853d270065ded6e02cd=0D
      https://github.com/quicwg/base-drafts/commit/729fcb04e76d59f508d2c8=
53d270065ded6e02cd=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 2c874dc1c477a7d8f07d5ad232251c73069f0a97=0D
      https://github.com/quicwg/base-drafts/commit/2c874dc1c477a7d8f07d5a=
d232251c73069f0a97=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  More explicit 'probe for the MTU'=0D
=0D
=0D
  Commit: 6567ba811900207808bd427f892ec12de5adf32b=0D
      https://github.com/quicwg/base-drafts/commit/6567ba811900207808bd42=
7f892ec12de5adf32b=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 1368ccebe589a4088b5e86a579d1d4b5818a002d=0D
      https://github.com/quicwg/base-drafts/commit/1368ccebe589a4088b5e86=
a579d1d4b5818a002d=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 3b25faf7fc35bcabc7e67569b94ac7901aefedd8=0D
      https://github.com/quicwg/base-drafts/commit/3b25faf7fc35bcabc7e675=
69b94ac7901aefedd8=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Ian's suggestions=0D
=0D
Co-Authored-By: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: da3ad003f45cd41cf802ac9526de3e4fd7f924ea=0D
      https://github.com/quicwg/base-drafts/commit/da3ad003f45cd41cf802ac=
9526de3e4fd7f924ea=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3581 from quicwg/keep-acknowledged=0D
=0D
More detail regarding dropping of ACK Ranges=0D
=0D
=0D
  Commit: bcda6c227d2699cb6f161154d3d1ecf2de79ab1d=0D
      https://github.com/quicwg/base-drafts/commit/bcda6c227d2699cb6f1611=
54d3d1ecf2de79ab1d=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Alternative for simple routing section=0D
=0D
A follow-up for #3536.=0D
=0D
=0D
  Commit: 5fd61877c43e2f7c4788f084c177aa658a1fed46=0D
      https://github.com/quicwg/base-drafts/commit/5fd61877c43e2f7c4788f0=
84c177aa658a1fed46=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-qpack.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Scrub for backticks=0D
=0D
This doesn't do qpack because qpack is weird and needs a lot more work.=0D=

=0D
The places where I kept backticks are for the inline formulae that were=0D=

used for the reserved codepoints.  That seemed like it was worth quoting=0D=

somehow still.  I also kept backticks for references to variables in=0D
examples.=0D
=0D
However, this last principle really hurts in qpack and I don't know what=0D=

to do about that.=0D
=0D
Closes #3609 (we'll need another issue for qpack).=0D
=0D
=0D
  Commit: cb6d26caf615a6fd3e036cc54ac1b881fc6504fd=0D
      https://github.com/quicwg/base-drafts/commit/cb6d26caf615a6fd3e036c=
c54ac1b881fc6504fd=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Helpful tweak to existing text=0D
=0D
=0D
  Commit: 3b2a284675735e2be6b8fe97d977f12ce7df57d2=0D
      https://github.com/quicwg/base-drafts/commit/3b2a284675735e2be6b8fe=
97d977f12ce7df57d2=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Use a list for TLS contributors too=0D
=0D
=0D
  Commit: 36cac20525c1aefd0c6de9c004866c47261e30a1=0D
      https://github.com/quicwg/base-drafts/commit/36cac20525c1aefd0c6de9=
c004866c47261e30a1=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-04-29 (Wed, 29 Apr 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: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 601c8fe1cd1f0dc4c9a4c35c386b566c7a989a89=0D
      https://github.com/quicwg/base-drafts/commit/601c8fe1cd1f0dc4c9a4c3=
5c386b566c7a989a89=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-04-29 (Wed, 29 Apr 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: 743702ca376c3ac2354a27820d75101111cfc857=0D
      https://github.com/quicwg/base-drafts/commit/743702ca376c3ac2354a27=
820d75101111cfc857=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-04-29 (Wed, 29 Apr 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: cedaac6a30fc82ff2c946af54e13dbb8924aa3fd=0D
      https://github.com/quicwg/base-drafts/commit/cedaac6a30fc82ff2c946a=
f54e13dbb8924aa3fd=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Bullet points, now that we can=0D
=0D
=0D
  Commit: f254feb0490fb248aa0a4ccd6351072e8e9206b6=0D
      https://github.com/quicwg/base-drafts/commit/f254feb0490fb248aa0a4c=
cd6351072e8e9206b6=0D
  Author: Bence B=C3=A9ky <bnc@google.com>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarify reserved values.=0D
=0D
Clarify reserved values for stream types, settings identifiers, frame=0D
types, and error codes.=0D
=0D
0x1f * N + 0x21 for the value of N =3D -1 is 0x02.  Literal interpretatio=
n=0D
of the current text includes this as a reserved value.  The=0D
parenthetical examples given in Section 11.2 make it clear that this was=0D=

not the intention, rendering this PR editorial.=0D
=0D
The main motivation of this PR is not that the current text is=0D
inconsistent, but that parenthetical examples from 11.2 are necessary to=0D=

correctly interpret the definitions in sections 6.2.3, 7.2.4.1, 7.2.8,=0D=

and 8.1.=0D
=0D
Alternative wordings could be:=0D
"0x1f * N + 0x21 for N =3D 0, 1, 2, ..."=0D
"0x1f * N + 0x02 for positive integer values of N"=0D
"0x1f * N + 0x02 for N =3D 1, 2, 3, ..."=0D
"0x21, 0x21 + 0x1f, 0x21 + 2 * 0x1f, ..."=0D
"a value of at least 0x21 with a remainder of 0x02 modulo 0x1f"=0D
"a value of at least 0x21 that is congruent to 0x21 modulo 0x1f"=0D
none of which is better than what this PR proposes.=0D
=0D
=0D
  Commit: d1644e737c1bb358111cf490befa3246e13bad7a=0D
      https://github.com/quicwg/base-drafts/commit/d1644e737c1bb358111cf4=
90befa3246e13bad7a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-30 (Thu, 30 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Revert cases of two different things=0D
=0D
Co-Authored-By: Mike Bishop <mbishop@evequefou.be>=0D
=0D
=0D
  Commit: 568bd282754328ce0be2939ca1f4da9448201506=0D
      https://github.com/quicwg/base-drafts/commit/568bd282754328ce0be293=
9ca1f4da9448201506=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-30 (Thu, 30 Apr 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-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3607 from quicwg/semicolons=0D
=0D
Moar semicolons=0D
=0D
=0D
  Commit: 83cc29e72fc4f4ed10871ceabde7b1dae906c58e=0D
      https://github.com/quicwg/base-drafts/commit/83cc29e72fc4f4ed10871c=
eabde7b1dae906c58e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-30 (Thu, 30 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3536 from martinduke/5tuple-routing=0D
=0D
5tuple routing=0D
=0D
=0D
  Commit: 1bd9afb85bd769cd6f26fc366795841a60aa2daa=0D
      https://github.com/quicwg/base-drafts/commit/1bd9afb85bd769cd6f26fc=
366795841a60aa2daa=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix circular reference to kInitialRtt=0D
=0D
=0D
  Commit: 87df8ee7dba9a546a6f8b1ae118eb1d520de55df=0D
      https://github.com/quicwg/base-drafts/commit/87df8ee7dba9a546a6f8b1=
ae118eb1d520de55df=0D
  Author: Julian Reschke <julian.reschke@gmx.de>=0D
  Date:   2020-04-30 (Thu, 30 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  recovery: fix broken reference to TLS, "Discarding Initial Keys"=0D
=0D
=0D
  Commit: 4b6baa3648838bf89f944f9a6d4accebca9f525a=0D
      https://github.com/quicwg/base-drafts/commit/4b6baa3648838bf89f944f=
9a6d4accebca9f525a=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-04-30 (Thu, 30 Apr 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
Co-authored-by: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: f62641bda28c5482c3243af27e84adcc7ebbe4b3=0D
      https://github.com/quicwg/base-drafts/commit/f62641bda28c5482c3243a=
f27e84adcc7ebbe4b3=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-30 (Thu, 30 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3614 from martinduke/patch-3=0D
=0D
Fix circular reference to kInitialRtt=0D
=0D
=0D
  Commit: 266084226a089ee1df00ebc796e045b0c6418a46=0D
      https://github.com/quicwg/base-drafts/commit/266084226a089ee1df00eb=
c796e045b0c6418a46=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Quoting in recovery=0D
=0D
This fixes some of the quoting issues that I discovered reading the=0D
spec.=0D
=0D
=0D
  Commit: f39b1b711e1934b77984de0d9d1120396c214592=0D
      https://github.com/quicwg/base-drafts/commit/f39b1b711e1934b77984de=
0d9d1120396c214592=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Use Section not section=0D
=0D
=0D
  Commit: bca51a97cd4373c5256fac9128f7523a955c6761=0D
      https://github.com/quicwg/base-drafts/commit/bca51a97cd4373c5256fac=
9128f7523a955c6761=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  a/that=0D
=0D
Co-authored-by: Mike Bishop <mbishop@evequefou.be>=0D
=0D
=0D
  Commit: 68f81c2b8487a115a9ca30928685bb92b86a2c59=0D
      https://github.com/quicwg/base-drafts/commit/68f81c2b8487a115a9ca30=
928685bb92b86a2c59=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3615 from quicwg/simple-routing-rephrase=0D
=0D
Alternative for simple routing section=0D
=0D
=0D
  Commit: b192a052bf006dc2689ea526cc80746ab409aff1=0D
      https://github.com/quicwg/base-drafts/commit/b192a052bf006dc2689ea5=
26cc80746ab409aff1=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3606 from quicwg/dplpmtudtdtd=0D
=0D
DPLPMTUD fixes=0D
=0D
=0D
  Commit: dee37615ffed31ac9ff2cd9061ca0e79f866a0ee=0D
      https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd=
9061ca0e79f866a0ee=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3611 from quicwg/transport/contributor_bullets=0D
=0D
Bullet points in Transport Contributors=0D
=0D
=0D
  Commit: d50128221a55d34c05069d4aadd6e2a726e1c9ba=0D
      https://github.com/quicwg/base-drafts/commit/d50128221a55d34c05069d=
4aadd6e2a726e1c9ba=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3604 from quicwg/ianswett-pto-handshake-complete=0D=

=0D
Update pseudocode to not arm PTO..=0D
=0D
=0D
  Commit: 7c19197ca32011ba80fdfbdb12ce330133fe6bde=0D
      https://github.com/quicwg/base-drafts/commit/7c19197ca32011ba80fdfb=
db12ce330133fe6bde=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-04 (Mon, 04 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3621 from quicwg/list-tls-contribs=0D
=0D
Use a list for TLS contributors too=0D
=0D
=0D
  Commit: 66d56893377e52727d620ceb305cd33dc97b3381=0D
      https://github.com/quicwg/base-drafts/commit/66d56893377e52727d620c=
eb305cd33dc97b3381=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-04 (Mon, 04 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3618 from reschke/patch-28=0D
=0D
recovery: fix broken reference to TLS, "Discarding Initial Keys"=0D
=0D
=0D
  Commit: fd1142b09af589b871fb7b84745c7e4c03e80f22=0D
      https://github.com/quicwg/base-drafts/commit/fd1142b09af589b871fb7b=
84745c7e4c03e80f22=0D
  Author: Bence B=C3=A9ky <bnc@google.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  [HTTP/3] Merge two redundant paragraphs on frame ordering.=0D
=0D
=0D
  Commit: 6da585a501ddb3a451b1905db42165402dfc3d27=0D
      https://github.com/quicwg/base-drafts/commit/6da585a501ddb3a451b190=
5db42165402dfc3d27=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-06 (Wed, 06 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-qpack.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3617 from quicwg/backticks=0D
=0D
Scrub for backticks=0D
=0D
=0D
  Commit: 6a1ea10afffb0c1b8047596bc0198619522969c9=0D
      https://github.com/quicwg/base-drafts/commit/6a1ea10afffb0c1b804759=
6bc0198619522969c9=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Initial Contributors=0D
=0D
=0D
  Commit: 1e67d0fb1c81085c81ab5812621111608d824cdf=0D
      https://github.com/quicwg/base-drafts/commit/1e67d0fb1c81085c81ab58=
12621111608d824cdf=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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: b32ab8c350ac15b92b520f7a3b15f7415b22083b=0D
      https://github.com/quicwg/base-drafts/commit/b32ab8c350ac15b92b520f=
7a3b15f7415b22083b=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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: c6a32d20a9d9a05779076434da2884773cf8aefe=0D
      https://github.com/quicwg/base-drafts/commit/c6a32d20a9d9a057790764=
34da2884773cf8aefe=0D
  Author: Lucas Pardue <lucaspardue.24.7@gmail.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  editorial advice for h2<->h3 error propagation (#3602)=0D
=0D
* editorial advice for h2<->h3 error propagation=0D
=0D
* Mike's feedback: invert the advice=0D
=0D
=0D
  Commit: a09979ec646c0bad69f079fb78ed5c8dd1084899=0D
      https://github.com/quicwg/base-drafts/commit/a09979ec646c0bad69f079=
fb78ed5c8dd1084899=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3603 from quicwg/ianswett-deadlock-handshake-pto=0D=

=0D
Clarify anti-deadlock Handshake PTO=0D
=0D
=0D
  Commit: 58a2fbbc75252ee3c8503ead31e5146e5f74349b=0D
      https://github.com/quicwg/base-drafts/commit/58a2fbbc75252ee3c8503e=
ad31e5146e5f74349b=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-06 (Wed, 06 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3601 from quicwg/alpn-generic=0D
=0D
Define the use of generic TLS alerts=0D
=0D
=0D
  Commit: b270451746cc6ae9655ceb30281de6bf6bbdb628=0D
      https://github.com/quicwg/base-drafts/commit/b270451746cc6ae9655ceb=
30281de6bf6bbdb628=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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
Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 9f773931b7c57a232ef9a9814fb664832eb7436e=0D
      https://github.com/quicwg/base-drafts/commit/9f773931b7c57a232ef9a9=
814fb664832eb7436e=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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
Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: c5b9e72880734f6e9e54bcbbd0339d72bdded5bc=0D
      https://github.com/quicwg/base-drafts/commit/c5b9e72880734f6e9e54bc=
bbd0339d72bdded5bc=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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: 9a69f882ff119ab34608b3a750ddc7f4639f3ec1=0D
      https://github.com/quicwg/base-drafts/commit/9a69f882ff119ab34608b3=
a750ddc7f4639f3ec1=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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
Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 1f66975cd3f9cdc5c0fae57376f59177701d8d97=0D
      https://github.com/quicwg/base-drafts/commit/1f66975cd3f9cdc5c0fae5=
7376f59177701d8d97=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3586 from quicwg/ianswett-min-cwnd=0D
=0D
Why min CWND of 2 instead of 1=0D
=0D
=0D
  Commit: 4e9c4ee480862086ae05778160b23c5b27f09f04=0D
      https://github.com/quicwg/base-drafts/commit/4e9c4ee480862086ae0577=
8160b23c5b27f09f04=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3629 from quicwg/section-ref-titlecase=0D
=0D
Use Section not section=0D
=0D
=0D
  Commit: 6c90af6ebd271f09f740ad49c396ffd38dc72076=0D
      https://github.com/quicwg/base-drafts/commit/6c90af6ebd271f09f740ad=
49c396ffd38dc72076=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3628 from quicwg/recovery-quoting=0D
=0D
Quoting in recovery=0D
=0D
=0D
  Commit: c5063a3cc6755c095376693641862a1a75192527=0D
      https://github.com/quicwg/base-drafts/commit/c5063a3cc6755c09537669=
3641862a1a75192527=0D
  Author: Alan Frindell <afrind@fb.com>=0D
  Date:   2020-05-06 (Wed, 06 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  [qpack] Remove backticks=0D
=0D
The new principle is to only use backticks when referring to variables in=
 pseudocode.  There were two such instances that remain.=0D
=0D
Fixes #3626=0D
=0D
=0D
  Commit: dcf603b4707cce7ec9f92df72a2f5b6026560860=0D
      https://github.com/quicwg/base-drafts/commit/dcf603b4707cce7ec9f92d=
f72a2f5b6026560860=0D
  Author: afrind <afrind@users.noreply.github.com>=0D
  Date:   2020-05-06 (Wed, 06 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  QPACK security considerations (#3575)=0D
=0D
* QPACK security considerations=0D
=0D
Behold=0D
=0D
Fixes: 1737=0D
=0D
* Fix lint=0D
=0D
* Feedback from Martin and Lucas=0D
=0D
* Apply suggestions from code review=0D
=0D
Feedback from Mike=0D
=0D
Co-authored-by: Mike Bishop <mbishop@evequefou.be>=0D
=0D
* Wordsmithing suggestion from Bence=0D
=0D
Co-authored-by: Mike Bishop <mbishop@evequefou.be>=0D
=0D
=0D
  Commit: 32b432f443270261c5dc6b58a1519198152102ca=0D
      https://github.com/quicwg/base-drafts/commit/32b432f443270261c5dc6b=
58a1519198152102ca=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-05-07 (Thu, 07 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    R workflow.xml=0D
=0D
  Log Message:=0D
  -----------=0D
  A missed commit=0D
=0D
=0D
  Commit: 1b967adee968825c2f230d3c20c69118f70c4778=0D
      https://github.com/quicwg/base-drafts/commit/1b967adee968825c2f230d=
3c20c69118f70c4778=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-05-07 (Thu, 07 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-invariants.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Text/figure consistency=0D
=0D
=0D
  Commit: 5ddd5814b6e3e839a16d1ef960b22694e67eae4a=0D
      https://github.com/quicwg/base-drafts/commit/5ddd5814b6e3e839a16d1e=
f960b22694e67eae4a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-08 (Fri, 08 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-invariants.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Math, and no more X.=0D
=0D
=0D
  Commit: 103cfce74f5da885d97b95e6ea46967821068501=0D
      https://github.com/quicwg/base-drafts/commit/103cfce74f5da885d97b95=
e6ea46967821068501=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-08 (Fri, 08 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-invariants.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3636 from quicwg/invariants/consistency=0D
=0D
Text/figure consistency=0D
=0D
=0D
  Commit: 8411fae236d9ec1598c04e976e3ab90a5525129c=0D
      https://github.com/quicwg/base-drafts/commit/8411fae236d9ec1598c04e=
976e3ab90a5525129c=0D
  Author: Kazu Yamamoto <kazu@iij.ad.jp>=0D
  Date:   2020-05-08 (Fri, 08 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  redrawing handshake figures in ascending encryption-level order.=0D
=0D
=0D
  Commit: 20d77df1ddb05985570b2a5df88423046a67740b=0D
      https://github.com/quicwg/base-drafts/commit/20d77df1ddb05985570b2a=
5df88423046a67740b=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-08 (Fri, 08 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3637 from kazu-yamamoto/fix-handshake-figures=0D
=0D
redrawing handshake figures in ascending encryption-level order.=0D
=0D
=0D
  Commit: 81bcdb67d85d953aca7ae378b1f2e4c6a4744578=0D
      https://github.com/quicwg/base-drafts/commit/81bcdb67d85d953aca7ae3=
78b1f2e4c6a4744578=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-invariants.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 workflow.xml=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge branch 'master' into authenticate-hs-cid=0D
=0D
=0D
  Commit: 740cd920d57433273a5dbc74b7fb9a276f6c84bc=0D
      https://github.com/quicwg/base-drafts/commit/740cd920d57433273a5dbc=
74b7fb9a276f6c84bc=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Add a picture=0D
=0D
This new figure shows the complete set of messages that determine the=0D
connection ID that each peer uses.  The explanation describes how the=0D
connection IDs in those messages are included in transport parameters.=0D=

=0D
Hopefully this aids in understanding how this is put together.  It's not=0D=

complicated, but it's not necessarily clear from reading a set of rules=0D=

that this is the case.=0D
=0D
=0D
Compare: https://github.com/quicwg/base-drafts/compare/e30cf5fc52da...740=
cd920d574=0D


From nobody Mon May 11 17:16:18 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 B52893A0DCB for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:16:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 06DUhIFGhm1N for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:16:16 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A78263A0DC7 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:16:16 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 2B0AD6E0B7E for <quic-issues@ietf.org>; Mon, 11 May 2020 17:16:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589242575; bh=e60mjZZmP7tRbE5V56Lo0EmEn9Nts0il0Lj4pS8to24=; h=Date:From:To:Subject:From; b=D8FSslQJ+INXckzHzvse+piRy8W/xcHUY9oDc5OK/TSB0GqfQ6e/xo7/NLTbBYqJz y6ipC0i9BVYL1BjyOKIBGHKtnOM7GTetrUO+EJQA4zqx6mehICLS1oaIgg/OofsGhM 6pM1qNMuTbZ1vHwHbCTcGUQxMEEQCFDdh1cMLKCQ=
Date: Mon, 11 May 2020 17:16:15 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/authenticate-hs-cid/740cd9-6c0462@github.com>
Subject: [quicwg/base-drafts] cc13fc: VN, too
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nDQQMRTKedx_NSWdHXiieK9e86w>
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: Tue, 12 May 2020 00:16:18 -0000

  Branch: refs/heads/authenticate-hs-cid
  Home:   https://github.com/quicwg/base-drafts
  Commit: cc13fc68144a01d3b30c8fb45dba03ae7bbadb4b
      https://github.com/quicwg/base-drafts/commit/cc13fc68144a01d3b30c8fb45dba03ae7bbadb4b
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  VN, too


  Commit: 52242c6f15c3d8c7f69a9f765b17c588788aaa05
      https://github.com/quicwg/base-drafts/commit/52242c6f15c3d8c7f69a9f765b17c588788aaa05
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Minor errors


  Commit: a77915f2c89916a5ec38844ace65dad1900a1961
      https://github.com/quicwg/base-drafts/commit/a77915f2c89916a5ec38844ace65dad1900a1961
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3641 from quicwg/vn-consistency

Consistency for VN, too


  Commit: cc6e8b75fa9c4b72f1d95b1303014760318caebb
      https://github.com/quicwg/base-drafts/commit/cc6e8b75fa9c4b72f1d95b1303014760318caebb
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3642 from quicwg/transport/handshake-tokens

Minor errors in new diagrams


  Commit: 6c046207932beb402d293fc5b2c37180995e0dba
      https://github.com/quicwg/base-drafts/commit/6c046207932beb402d293fc5b2c37180995e0dba
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge branch 'master' into authenticate-hs-cid


Compare: https://github.com/quicwg/base-drafts/compare/740cd920d574...6c046207932b


From nobody Mon May 11 17:16:26 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 2AA753A0DCB for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:16:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.724
X-Spam-Level: 
X-Spam-Status: No, score=-1.724 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 c0HEwPzH6Bs2 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:16:22 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A2E963A0DC7 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:16:22 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id B12781C0647 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:16:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589242579; bh=2agH7cYdrKn2MqJ/9DW+S5KntfTyujc3BPrqQV2BV9c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kuDpbqW/acwwrwWP6tioQdtjEGVI7wMROh/nzKnC6wbnwnyM5IDb2Mrc0o5q7AOuC 5fkTSsDoVMpL9J1L1IUPOx1/2Mhss9BSPKhJMHxbuUom14qdIQOTLiEtYw3UOgfH87 mRP6pLhQ2Z45m4xS4Q5oPuw2rNCwmgvNLENKG71A=
Date: Mon, 11 May 2020 17:16:19 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/push/5056480480@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9ead3a3196_4fa13ff3392cd960834bd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RZ125ghcKx58CnpQs0D6xPUmPnU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 00:16:24 -0000

----==_mimepart_5eb9ead3a3196_4fa13ff3392cd960834bd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 2 commits.

81bcdb67d85d953aca7ae378b1f2e4c6a4744578  Merge branch 'master' into authenticate-hs-cid
740cd920d57433273a5dbc74b7fb9a276f6c84bc  Add a picture


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499/files/e30cf5fc52da2f7958901fbdf5bcbec920a60d71..740cd920d57433273a5dbc74b7fb9a276f6c84bc

----==_mimepart_5eb9ead3a3196_4fa13ff3392cd960834bd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/81bcdb67d85d953aca7ae378b1f2e4c6a4744578">81bcdb6</a>  Merge branch &#39;master&#39; into authenticate-hs-cid</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/740cd920d57433273a5dbc74b7fb9a276f6c84bc">740cd92</a>  Add a picture</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3499/files/e30cf5fc52da2f7958901fbdf5bcbec920a60d71..740cd920d57433273a5dbc74b7fb9a276f6c84bc">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7P2GZ5DIWXROVU47DRRCINHANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK36RJDATG6P3WJCYQ3RRCINHA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4DGMZXGEZDKNSQOVZWQIZVGA2TMNBYGA2DQMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499/files/e30cf5fc52da2f7958901fbdf5bcbec920a60d71..740cd920d57433273a5dbc74b7fb9a276f6c84bc",
"url": "https://github.com/quicwg/base-drafts/pull/3499/files/e30cf5fc52da2f7958901fbdf5bcbec920a60d71..740cd920d57433273a5dbc74b7fb9a276f6c84bc",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb9ead3a3196_4fa13ff3392cd960834bd--


From nobody Mon May 11 17:16:30 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 59CBB3A0DD5 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:16:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZCoKpUPUKIRO for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:16:25 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 18AB13A0DC7 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:16:25 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 29D68A1234 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:16:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589242584; bh=6tJf4sAr7kYRmjogLV5L82y0FZEefSLcoQx5nS16ri4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IaMv2K6MDOXAxkVVx5pXA19H61SXvvKhMPM+EQF4kI8iNYWvBZtBu8qCAiLDx18GG W9vaAFuRmNxN2xJKrVeEVHeFtJAYZ4cxRczsJyINvurfxSY27bwTDRf47xMQ0ZVbbz L+Y3esofECwFI7Ur5NiahBME95LS2Y92x+OwVyrI=
Date: Mon, 11 May 2020 17:16:24 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/push/5056480815@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9ead81a9c7_25523f9265ecd95c1022ef"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qSYu6RjoKg71UBLS0bY3QVDjOdA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 00:16:27 -0000

----==_mimepart_5eb9ead81a9c7_25523f9265ecd95c1022ef
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

6c046207932beb402d293fc5b2c37180995e0dba  Merge branch 'master' into authenticate-hs-cid


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499/files/740cd920d57433273a5dbc74b7fb9a276f6c84bc..6c046207932beb402d293fc5b2c37180995e0dba

----==_mimepart_5eb9ead81a9c7_25523f9265ecd95c1022ef
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/6c046207932beb402d293fc5b2c37180995e0dba">6c04620</a>  Merge branch &#39;master&#39; into authenticate-hs-cid</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3499/files/740cd920d57433273a5dbc74b7fb9a276f6c84bc..6c046207932beb402d293fc5b2c37180995e0dba">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK32TDLY5ILICI7B4F3RRCINRANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYMFQK74LWDXELJBNDRRCINRA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4DGMZXGEZDKNSQOVZWQIZVGA2TMNBYGA4DCNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499/files/740cd920d57433273a5dbc74b7fb9a276f6c84bc..6c046207932beb402d293fc5b2c37180995e0dba",
"url": "https://github.com/quicwg/base-drafts/pull/3499/files/740cd920d57433273a5dbc74b7fb9a276f6c84bc..6c046207932beb402d293fc5b2c37180995e0dba",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb9ead81a9c7_25523f9265ecd95c1022ef--


From nobody Mon May 11 17:17:02 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 AA7233A0DCB for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:17:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.178
X-Spam-Level: 
X-Spam-Status: No, score=-2.178 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 YKIGZKoh63BD for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:16:59 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 42A753A0DCD for <quic-issues@ietf.org>; Mon, 11 May 2020 17:16:59 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 817728C0070 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:16:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589242618; bh=szcEE9VoORkgHVuGBfbfXQmEvW5CuRZpcT4ECRizy+o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=h0MQo3RawGkikzSLmlFJP+EXxvtuIvSL1EEa32hOo0/38USKOeXj+IyRXlOnEcpuz 7Y5zMiLn9ittTSGjqhsRLCzMoMtDNy9VPo+u1OBPmpxgLqWDJHHN9wDRohQTqMx9x3 gBdYXhzx4QqYNMQ0inrvN/uxT22TZQ5ZWWrxVnQ0=
Date: Mon, 11 May 2020 17:16:58 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5WUROVQN6P6NQSBO54YXF7VEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/c627033693@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9eafa72978_7add3feedb2cd96815382a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/K_yvC_ElHpxrMQTDL6-AvuGXJc8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 00:17:01 -0000

----==_mimepart_5eb9eafa72978_7add3feedb2cd96815382a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I just added a picture.

This new figure shows the complete set of messages that determine the
connection ID that each peer uses.  The explanation describes how the
connection IDs in those messages are included in transport parameters.

Hopefully this aids in understanding how this is put together.  It's not
complicated, but it's not necessarily clear from reading a set of rules
that this is the case.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#issuecomment-627033693
----==_mimepart_5eb9eafa72978_7add3feedb2cd96815382a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I just added a picture.</p>
<p>This new figure shows the complete set of messages that determine the<br>
connection ID that each peer uses.  The explanation describes how the<br>
connection IDs in those messages are included in transport parameters.</p>
<p>Hopefully this aids in understanding how this is put together.  It's not<br>
complicated, but it's not necessarily clear from reading a set of rules<br>
that this is the case.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#issuecomment-627033693">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3EUFAQF6S7VMZ7VE3RRCIPVANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7MTNK7QKLGWYWWH53RRCIPVA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVP4MXI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#issuecomment-627033693",
"url": "https://github.com/quicwg/base-drafts/pull/3499#issuecomment-627033693",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9eafa72978_7add3feedb2cd96815382a--


From nobody Mon May 11 17:17:22 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 DBC8E3A0DCB for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:17:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 23Xx7R5c4k_e for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:17:20 -0700 (PDT)
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 C5F023A0DCD for <quic-issues@ietf.org>; Mon, 11 May 2020 17:17:20 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id DDBC22821BF for <quic-issues@ietf.org>; Mon, 11 May 2020 17:17:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589242639; bh=AkZWoSLba1Z88JxhCGehx8wOI6LUQ0EQjKn9KoYf0GU=; h=Date:From:To:Subject:From; b=mpt3mHHdqWmkHWojZO5V6+THcey5opnMbiAUVVJj5ndqd/CQPBLaPrZuQ18QX0zaf 3DfrFNF48/U3GSuMxTqiDGHCkAUCFxGp5CQo7M3xcMOyrpfyCnQU/7z1n6or6KwXyc 9hsWykcwjjOidVY8wmM/wzSEMl5NqrtwQ1raeg+U=
Date: Mon, 11 May 2020 17:17:19 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a0297d-14d7d7@github.com>
Subject: [quicwg/base-drafts] 14d7d7: Script updating gh-pages from 6c046207. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/s5fK41dD16dByO7ZMv7xI-w3ajA>
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: Tue, 12 May 2020 00:17:22 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 14d7d707bfad39d8cff2102e93f5ef9381015152
      https://github.com/quicwg/base-drafts/commit/14d7d707bfad39d8cff2102e93f5ef9381015152
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M authenticate-hs-cid/draft-ietf-quic-http.html
    M authenticate-hs-cid/draft-ietf-quic-http.txt
    M authenticate-hs-cid/draft-ietf-quic-invariants.html
    M authenticate-hs-cid/draft-ietf-quic-invariants.txt
    M authenticate-hs-cid/draft-ietf-quic-qpack.html
    M authenticate-hs-cid/draft-ietf-quic-qpack.txt
    M authenticate-hs-cid/draft-ietf-quic-recovery.html
    M authenticate-hs-cid/draft-ietf-quic-recovery.txt
    M authenticate-hs-cid/draft-ietf-quic-tls.html
    M authenticate-hs-cid/draft-ietf-quic-tls.txt
    M authenticate-hs-cid/draft-ietf-quic-transport.html
    M authenticate-hs-cid/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6c046207. [ci skip]



From nobody Mon May 11 17:18:44 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 264C33A0DCE for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:18:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.655
X-Spam-Level: 
X-Spam-Status: No, score=-1.655 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Kd1WtkEZZ-3a for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:18:41 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C35E43A0DCD for <quic-issues@ietf.org>; Mon, 11 May 2020 17:18:41 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 2BD352C1D42 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:18:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589242721; bh=BsBX8ldZi/TAW/9dlJ9oPoww7NOaM8hJ/kmgMvxDlaA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=d4ktfPYL+D47ktpjnPI2wb2fB0ZL+9NWji+2kQ4zHt2E/5rqFzkkYXmBLd0eOByjC b23veusOaXT5Bbpv8ZqXLp6waqAEsQHpm9Y2WWiFq+snPBmh1Sz67GfJpQAECSuKNP J3EfcdWowR2pwFxQiCUh2HVBnMDY8cZyrbk0ytKQ=
Date: Mon, 11 May 2020 17:18:41 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2BTLI7LQMRKRKQIGN4YXGGDEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/409616922@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9eb611d281_55013fa65a8cd968729d1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Nn0rKup5omlwUzO_5kQUpsSBcr0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 00:18:43 -0000

----==_mimepart_5eb9eb611d281_55013fa65a8cd968729d1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -1503,7 +1548,7 @@ An endpoint MUST NOT send a parameter more than once in a given transport
 parameters extension.  An endpoint SHOULD treat receipt of duplicate transport
 parameters as a connection error of type TRANSPORT_PARAMETER_ERROR.
 
-A server MUST include the original_connection_id transport parameter
+A server MUST include the original_destination_connection_id transport parameter

Not following.  These are consistent by my reading:

> A server MUST include the original_destination_connection_id transport parameter

> An endpoint MUST
treat any of the following as a connection error of type PROTOCOL_VIOLATION:
> * absence of the original_destination_connection_id transport parameter from the server

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#discussion_r423391794
----==_mimepart_5eb9eb611d281_55013fa65a8cd968729d1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423391794">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1503,7 +1548,7 @@ An endpoint MUST NOT send a parameter more than once in a given transport
 parameters extension.  An endpoint SHOULD treat receipt of duplicate transport
 parameters as a connection error of type TRANSPORT_PARAMETER_ERROR.
 
-A server MUST include the original_connection_id transport parameter
+A server MUST include the original_destination_connection_id transport parameter
</pre>
<p>Not following.  These are consistent by my reading:</p>
<blockquote>
<p>A server MUST include the original_destination_connection_id transport parameter</p>
</blockquote>
<blockquote>
<p>An endpoint MUST<br>
treat any of the following as a connection error of type PROTOCOL_VIOLATION:</p>
<ul>
<li>absence of the original_destination_connection_id transport parameter from the server</li>
</ul>
</blockquote>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423391794">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZEFLIUU5MVQRFQF63RRCIWDANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK65EJQQFOSFOBEL6CDRRCIWDA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBVEEGQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423391794",
"url": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423391794",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9eb611d281_55013fa65a8cd968729d1--


From nobody Mon May 11 17:36:08 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 582123A0DE4 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:36:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 nDXE8BLBwG23 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:36:04 -0700 (PDT)
Received: from out-15.smtp.github.com (out-15.smtp.github.com [192.30.254.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5BFCD3A0DE0 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:36:04 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id C5B32260196 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:36:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589243763; bh=uyk/Cb5Y7vHI4qbQchLvJ48NWth9plKhzxrD+JlirxU=; h=Date:From:To:Subject:From; b=bfuRKdKs1U2QuX+oAtHxS42IxrlLl0w61dwbzKirF+II7RWopeU6LZcDm473oE8Su ccbSIeWAC/sNfwVjtM/QsUr8HKfiK2G50RefgT5aoP+h0hUY2zLYa6WyHsX3ILi9eP CUPCjfo8AQQgjP0WBk3Xy6FCuVA6PECc2KgVBI4w=
Date: Mon, 11 May 2020 17:36:03 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/active-cid-limit-rpt/000000-b61358@github.com>
Subject: [quicwg/base-drafts] b61358: Exception for Retire Prior To
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/94x8gNJ0uTELe_g_WUMrRmHjhZs>
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: Tue, 12 May 2020 00:36:07 -0000

  Branch: refs/heads/active-cid-limit-rpt
  Home:   https://github.com/quicwg/base-drafts
  Commit: b61358a381f7f6ce19f2432b500453aefa1ae257
      https://github.com/quicwg/base-drafts/commit/b61358a381f7f6ce19f2432b500453aefa1ae257
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Exception for Retire Prior To

The rules for the active connection ID limit were such that the brief
bump that NEW_CONNECTION_ID + Retire Prior To could add was not
permitted.  Strictly speaking, if you requested retirement, the
connection IDs that you requested be retired are still active until you
receive a RETIRE_CONNECTION_ID frame.  That means that you were
technically violating this MUST in the spec.  Adding an exception for
this case was the best way I could see to fix this.

The other was to change the definition of "active connection ID".  I
tried that and, while it was a smaller change, it made the definition
less crisp.  This approach seems best.



From nobody Mon May 11 17:37:00 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 7CD833A0DE6 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:36:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 DurGuPjXNMRw for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:36:57 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 571573A0DE4 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:36:57 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id A1BB4A08A9 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:36:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589243816; bh=y14XNOtSKuB7UJg0/3Cngnh2TCc5MKBY0bBe0s3uqZI=; h=Date:From:To:Subject:From; b=z3wZFd1HzdhjYBBGFOdJP8jyCKkdrpr+fJN3uewZ9MyvfzwkmWrVIaNunnia0znEO TD9IJVQUMaIB9dId5EMhBTdsrr8ApnqpTpPV+S4NKsVI/dhZ906ahINudOEbh0NklU TM/f4WI2wS5kURBbHWnnBg1e5PdU8D8s6PXr+Abs=
Date: Mon, 11 May 2020 17:36:56 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/14d7d7-5975c4@github.com>
Subject: [quicwg/base-drafts] 5975c4: Script updating gh-pages from b61358a3. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VCe_Mf7R8Nf8uNPw6QX1gpxo1qs>
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: Tue, 12 May 2020 00:36:58 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5975c437f46737c977be909f0907c92e1f903058
      https://github.com/quicwg/base-drafts/commit/5975c437f46737c977be909f0907c92e1f903058
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    A active-cid-limit-rpt/draft-ietf-quic-http.html
    A active-cid-limit-rpt/draft-ietf-quic-http.txt
    A active-cid-limit-rpt/draft-ietf-quic-invariants.html
    A active-cid-limit-rpt/draft-ietf-quic-invariants.txt
    A active-cid-limit-rpt/draft-ietf-quic-qpack.html
    A active-cid-limit-rpt/draft-ietf-quic-qpack.txt
    A active-cid-limit-rpt/draft-ietf-quic-recovery.html
    A active-cid-limit-rpt/draft-ietf-quic-recovery.txt
    A active-cid-limit-rpt/draft-ietf-quic-tls.html
    A active-cid-limit-rpt/draft-ietf-quic-tls.txt
    A active-cid-limit-rpt/draft-ietf-quic-transport.html
    A active-cid-limit-rpt/draft-ietf-quic-transport.txt
    A active-cid-limit-rpt/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b61358a3. [ci skip]



From nobody Mon May 11 17:37:15 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 B09C23A0DE4 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:37:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.868
X-Spam-Level: 
X-Spam-Status: No, score=-1.868 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 6IFz68XYdh0J for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 17:37:12 -0700 (PDT)
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 42AD73A0DE0 for <quic-issues@ietf.org>; Mon, 11 May 2020 17:37:12 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 917E9282AAB for <quic-issues@ietf.org>; Mon, 11 May 2020 17:37:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589243831; bh=Ev7RpF9WbS0kI/bM8JN0o7giVCJegjxU3PfeJ0SJVFI=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=v482ewj9Br6tiOk6haGoh63n/k95zI0Tfv1AOHcUI17v28sXORMoluLjOPZRzd6Lh NOli7DKSR6POyvDolBxfvq4FNNpmu1OSIbk4rrjea9OYEmYMjxjLFFKzzrdfmTR94E nnvtcepyD73q47+TGU6yVIpaOt5poHdpnW18tClg=
Date: Mon, 11 May 2020 17:37:11 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4BEY336ZRZKPAZA4N4YXILPEVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643@github.com>
Subject: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9efb77df2b_7943fec8d8cd96c17074"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ddKhUaupT4zPtUFuXFhK4Lk_Z38>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 00:37:14 -0000

----==_mimepart_5eb9efb77df2b_7943fec8d8cd96c17074
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The rules for the active connection ID limit were such that the brief
bump that NEW_CONNECTION_ID + Retire Prior To could add was not
permitted.  Strictly speaking, if you requested retirement, the
connection IDs that you requested be retired are still active until you
receive a RETIRE_CONNECTION_ID frame.  That means that you were
technically violating this MUST in the spec.  Adding an exception for
this case was the best way I could see to fix this.

The other was to change the definition of &quot;active connection ID&quot;.  I
tried that and, while it was a smaller change, it made the definition
less crisp.  This approach seems best.

(This is not new normative requirements as this is already [in the spec](https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#section-5.1.2-5).)
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3643

-- Commit Summary --

  * Exception for Retire Prior To

-- File Changes --

    M draft-ietf-quic-transport.md (9)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3643.patch
https://github.com/quicwg/base-drafts/pull/3643.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643

----==_mimepart_5eb9efb77df2b_7943fec8d8cd96c17074
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The rules for the active connection ID limit were such that the brief<br>
bump that NEW_CONNECTION_ID + Retire Prior To could add was not<br>
permitted.  Strictly speaking, if you requested retirement, the<br>
connection IDs that you requested be retired are still active until you<br>
receive a RETIRE_CONNECTION_ID frame.  That means that you were<br>
technically violating this MUST in the spec.  Adding an exception for<br>
this case was the best way I could see to fix this.</p>
<p>The other was to change the definition of "active connection ID".  I<br>
tried that and, while it was a smaller change, it made the definition<br>
less crisp.  This approach seems best.</p>
<p>(This is not new normative requirements as this is already <a href="https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#section-5.1.2-5" rel="nofollow">in the spec</a>.)</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3643'>https://github.com/quicwg/base-drafts/pull/3643</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Exception for Retire Prior To</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3643/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (9)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3643.patch'>https://github.com/quicwg/base-drafts/pull/3643.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3643.diff'>https://github.com/quicwg/base-drafts/pull/3643.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3643">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ2Y6677RRHXYELOO3RRCK3PANCNFSM4M6L6D2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY7V7LXRRY7FDQBVK3RRCK3PA5CNFSM4M6L6D2KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JF3TVLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3643",
"url": "https://github.com/quicwg/base-drafts/pull/3643",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb9efb77df2b_7943fec8d8cd96c17074--


From nobody Mon May 11 18:24:06 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 802A93A0E1E for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:24:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.866
X-Spam-Level: 
X-Spam-Status: No, score=-1.866 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 H0UmXuJdRswr for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:24:03 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D05633A0E21 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:24:02 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 9F7168C08D7 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:24:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589246641; bh=UvONns64QgEl1Vs/Hn4LRU5q1G7mLniFjTO+0qt59UE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=p6nQ2JOz1uRsIhojkBoIPZ7k1T/jaIhQl0TgE+7oUlT2dI6kPLQJ00h/VztrX1lCF kH66EwENaD14ICFyt4ux8Lzw3A5bdUb76P2b/exXvmwg2G19ReVdOQMk1oE8SXxw5l m7M+3Lr9KYHt2eAMSu7KYaMP7rj1n8sa2hNQwSuA=
Date: Mon, 11 May 2020 18:24:01 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK26PITGYK26WA46XPN4YXN3DEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/409637451@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9fab16c3ba_7c9b3f83b58cd96c260423"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lF27-GZmX51t1iebFThUDG4jBGM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 01:24:04 -0000

----==_mimepart_5eb9fab16c3ba_7c9b3f83b58cd96c260423
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi commented on this pull request.



> @@ -1503,7 +1548,7 @@ An endpoint MUST NOT send a parameter more than once in a given transport
 parameters extension.  An endpoint SHOULD treat receipt of duplicate transport
 parameters as a connection error of type TRANSPORT_PARAMETER_ERROR.
 
-A server MUST include the original_connection_id transport parameter
+A server MUST include the original_destination_connection_id transport parameter

@martinthomson you truncated the sentence in your quote. The full sentence from your PR is:

> A server MUST include the original_destination_connection_id transport parameter
> ({{transport-parameter-definitions}}) if it sent a Retry packet to enable
> validation of the Retry, as described in {{packet-retry}}.

How about we keep the first line, but replace the rest:

> A server MUST include the original_destination_connection_id transport parameter
> to mitigate an attacker's ability to tamper with connection IDs during the handshake.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#discussion_r423409742
----==_mimepart_5eb9fab16c3ba_7c9b3f83b58cd96c260423
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423409742">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1503,7 +1548,7 @@ An endpoint MUST NOT send a parameter more than once in a given transport
 parameters extension.  An endpoint SHOULD treat receipt of duplicate transport
 parameters as a connection error of type TRANSPORT_PARAMETER_ERROR.
 
-A server MUST include the original_connection_id transport parameter
+A server MUST include the original_destination_connection_id transport parameter
</pre>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> you truncated the sentence in your quote. The full sentence from your PR is:</p>
<blockquote>
<p>A server MUST include the original_destination_connection_id transport parameter<br>
({{transport-parameter-definitions}}) if it sent a Retry packet to enable<br>
validation of the Retry, as described in {{packet-retry}}.</p>
</blockquote>
<p>How about we keep the first line, but replace the rest:</p>
<blockquote>
<p>A server MUST include the original_destination_connection_id transport parameter<br>
to mitigate an attacker's ability to tamper with connection IDs during the handshake.</p>
</blockquote>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423409742">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2IC2DZABNYLUMMYQ3RRCQLDANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4E4VZPOSLK2RY35HDRRCQLDA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBVJESY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423409742",
"url": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423409742",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9fab16c3ba_7c9b3f83b58cd96c260423--


From nobody Mon May 11 18:26:51 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 B9D813A0E29 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:26:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 K0lh_yBmSWY2 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:26:48 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 95BD13A0E21 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:26:48 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 86680520552 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:26:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589246807; bh=ZQKGNVDoj+jVn4TDwYsxisfDaS2hWTdaWzJEAMnn6Jk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Haqm+G1LOCebTFYFyTXLs5CDPKLLFRZjHnkIgpGafS0jrB7KjtwWJn0r7q/RZ/4w2 OOPMDJCqepkLX6fWrH4MLZL1KbW2DpX3m7T2Nuo1Nrtk6TAxceeEQHihcfl7FTLKka aoM4o12qYdIiR9nvEZmeY+Tk+ZKU9tGn67SfyjbE=
Date: Mon, 11 May 2020 18:26:47 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/push/5056685689@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9fb5777360_2fd73f94818cd96c42428a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: erickinnear
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/f3aEVC5_6-Uzwx9-gEPnerXli6s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 01:26:50 -0000

----==_mimepart_5eb9fb5777360_2fd73f94818cd96c42428a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear pushed 1 commit.

f7a9c3b3bb78485bc65476b894306899f70d8205  Refer to addresses instead of network paths


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589/files/a6a266c9272ffd8db8ebd12a58e69e9d9ba9411e..f7a9c3b3bb78485bc65476b894306899f70d8205

----==_mimepart_5eb9fb5777360_2fd73f94818cd96c42428a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/erickinnear" class="user-mention">@erickinnear</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/f7a9c3b3bb78485bc65476b894306899f70d8205">f7a9c3b</a>  Refer to addresses instead of network paths</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3589/files/a6a266c9272ffd8db8ebd12a58e69e9d9ba9411e..f7a9c3b3bb78485bc65476b894306899f70d8205">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2NLBTX7EJNN6BRI33RRCQVPANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK77MQ3QA2DPNKFROXTRRCQVPA5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDKOBZGM3DGOKQOVZWQIZVGA2TMNRYGU3DQOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589/files/a6a266c9272ffd8db8ebd12a58e69e9d9ba9411e..f7a9c3b3bb78485bc65476b894306899f70d8205",
"url": "https://github.com/quicwg/base-drafts/pull/3589/files/a6a266c9272ffd8db8ebd12a58e69e9d9ba9411e..f7a9c3b3bb78485bc65476b894306899f70d8205",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb9fb5777360_2fd73f94818cd96c42428a--


From nobody Mon May 11 18:28:04 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 CF2CC3A0E2A for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:28:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.27
X-Spam-Level: 
X-Spam-Status: No, score=-3.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 W82GXl2uopEj for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:28:02 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4EB543A0E29 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:28:02 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 946306E10A7 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:28:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589246881; bh=oEu4g69r8HUcEm1HTb/C0Agz9gmOUzTIommkUUtYq10=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UbqpQtZQ8qprCu8WPTzJ7p3UmUuO8ufWmDn1Ji1M38vmcGsOGTXLP0cx17b/h9ie8 pdqvjQjiN/5yY8en0+Z0l1MITV4YmvA/XCG+A7aIaAqYktEY2a5h7LCLwDcJ00h2EB 5gNN8KYZNmJPGhDfn4BTZE4hkENdzxrTPBsLFmjM=
Date: Mon, 11 May 2020 18:28:01 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3AS6RM2T4CUCXDOTF4YXOKDEVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/409638708@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9fba184ec2_28863fb85a6cd96c4198fd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: erickinnear
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/It8dK-9IA94JHGN-sVxhyOiCJ8Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 01:28:04 -0000

----==_mimepart_5eb9fba184ec2_28863fb85a6cd96c4198fd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear commented on this pull request.



> @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.

Updated to fold this in, also note that much of this explanation (and further requirements on behavior in the event of a NAT rebinding, such as potentially needing to validate the new path) is present in the immediately following paragraph: 
```
These requirements regarding connection ID reuse apply only to the sending of
packets, as unintentional changes in path without a change in connection ID are
possible.  For example, after a period of network inactivity, NAT rebinding
might cause packets to be sent on a new path when the client resumes sending.
An endpoint responds to such an event as described in {{migration-response}}.
```
Updated in f7a9c3b

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#discussion_r423410755
----==_mimepart_5eb9fba184ec2_28863fb85a6cd96c4198fd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@erickinnear</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423410755">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.
</pre>
<p>Updated to fold this in, also note that much of this explanation (and further requirements on behavior in the event of a NAT rebinding, such as potentially needing to validate the new path) is present in the immediately following paragraph:</p>
<pre><code>These requirements regarding connection ID reuse apply only to the sending of
packets, as unintentional changes in path without a change in connection ID are
possible.  For example, after a period of network inactivity, NAT rebinding
might cause packets to be sent on a new path when the client resumes sending.
An endpoint responds to such an event as described in {{migration-response}}.
</code></pre>
<p>Updated in <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/quicwg/base-drafts/commit/f7a9c3b3bb78485bc65476b894306899f70d8205/hovercard" href="https://github.com/quicwg/base-drafts/commit/f7a9c3b3bb78485bc65476b894306899f70d8205"><tt>f7a9c3b</tt></a></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423410755">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5WZQ55QQD2A5VPAWTRRCQ2DANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYVKMV3E2IUZAXVX2DRRCQ2DA5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBVJONA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423410755",
"url": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423410755",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9fba184ec2_28863fb85a6cd96c4198fd--


From nobody Mon May 11 18:29:23 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 5936E3A0E2A for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:29:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.869
X-Spam-Level: 
X-Spam-Status: No, score=-1.869 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 RfyMaftnqSuY for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:29:20 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0ADEA3A0E21 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:29:19 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 2A0F42C18FF for <quic-issues@ietf.org>; Mon, 11 May 2020 18:29:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589246958; bh=KF170lLq5g034Y29FssgEYO+W/vfN9ms/7Nc5NjRTAs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=boxa8JeaRBCSS8kKT+l3/kbtcZAs7xfJcpst7T+Wk6sxQ3eXy/WRuAPA3npBVDhRV bK7NMCkZSP6aUwFhoAd3a77H9Sc509zLBI73d1r65sX6Jw6nHx8oiJMbpVvG2rVAwE NGkIqcLzk7wHzefWMtEX1VQf8RJ5kkNl++GoX5Os=
Date: Mon, 11 May 2020 18:29:18 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4UGA6V2GQT5NQO7N54YXOO5EVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/409639125@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9fbee19ea0_7b93fec8d8cd96c34284c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: erickinnear
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/J80WyzbZhq9xnzlDZRBlnW9qdlY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 01:29:21 -0000

----==_mimepart_5eb9fbee19ea0_7b93fec8d8cd96c34284c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear commented on this pull request.



> @@ -1084,10 +1084,10 @@ Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
 be used again and requests that the peer replace it with a new connection ID
 using a NEW_CONNECTION_ID frame.
 
-As discussed in {{migration-linkability}}, endpoints limit the use of a
-connection ID to a single network path where possible. Endpoints SHOULD retire
-connection IDs when no longer actively using the network path on which the
-connection ID was used.
+As discussed in {{migration-linkability}}, endpoints MUST limit the use of a
+connection ID to packets sent from a single local address.  Endpoints SHOULD
+retire connection IDs when they are no longer actively using the network path on
+which the connection ID was used.

Updated the text in f7a9c3b to refer to being done with either your local address (migrated to a new address) or your destination address (only relevant for preferred_address and someday maybe server migration). Whenever you're done with an address on either end, you should probably retire the CID that you used with that address.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#discussion_r423411147
----==_mimepart_5eb9fbee19ea0_7b93fec8d8cd96c34284c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@erickinnear</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423411147">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1084,10 +1084,10 @@ Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
 be used again and requests that the peer replace it with a new connection ID
 using a NEW_CONNECTION_ID frame.
 
-As discussed in {{migration-linkability}}, endpoints limit the use of a
-connection ID to a single network path where possible. Endpoints SHOULD retire
-connection IDs when no longer actively using the network path on which the
-connection ID was used.
+As discussed in {{migration-linkability}}, endpoints MUST limit the use of a
+connection ID to packets sent from a single local address.  Endpoints SHOULD
+retire connection IDs when they are no longer actively using the network path on
+which the connection ID was used.
</pre>
<p>Updated the text in <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/quicwg/base-drafts/commit/f7a9c3b3bb78485bc65476b894306899f70d8205/hovercard" href="https://github.com/quicwg/base-drafts/commit/f7a9c3b3bb78485bc65476b894306899f70d8205"><tt>f7a9c3b</tt></a> to refer to being done with either your local address (migrated to a new address) or your destination address (only relevant for preferred_address and someday maybe server migration). Whenever you're done with an address on either end, you should probably retire the CID that you used with that address.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423411147">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3ALV7I62SUSNFOMNTRRCQ65ANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYFL6RCWHDRSQIT7WLRRCQ65A5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBVJRVI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423411147",
"url": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423411147",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9fbee19ea0_7b93fec8d8cd96c34284c--


From nobody Mon May 11 18:31:40 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 942863A0E2A for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:31:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 PUhdQUF8IDgh for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:31:37 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 64AD83A0E21 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:31:37 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 3DEDE660514 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:31:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589247096; bh=Kq9F4fWh3AN+QVJUXAgVXfj3Xrqo8UrmM6B46FwPpW4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VZYGJawaoLwWJtDoRcRMWRo9xfPqWSqefpouJXZu4szFJB+2L6wbnrjSMZHY21n6m npb7hdoz/n951/GdV1+1GsM4TIaDOBpk85sZcLyNXtOyk11axoqEM8IMqrCbi2aIb6 QCzZ6xsuVZeK8UZP3v2wa7lBevWtZGFR7YrveOQw=
Date: Mon, 11 May 2020 18:31:36 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2LTCZ3MQAYBFHXAPF4YXOXREVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/409639877@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9fc782dac7_15213fb5168cd95c41919f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5hmHZb_jcs4q2UG_z8wrHjVB7oM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 01:31:39 -0000

----==_mimepart_5eb9fc782dac7_15213fb5168cd95c41919f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -1503,7 +1548,7 @@ An endpoint MUST NOT send a parameter more than once in a given transport
 parameters extension.  An endpoint SHOULD treat receipt of duplicate transport
 parameters as a connection error of type TRANSPORT_PARAMETER_ERROR.
 
-A server MUST include the original_connection_id transport parameter
+A server MUST include the original_destination_connection_id transport parameter

Ahh, that's lazy of me.  Yes, that is good.  Thanks.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#discussion_r423411801
----==_mimepart_5eb9fc782dac7_15213fb5168cd95c41919f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423411801">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1503,7 +1548,7 @@ An endpoint MUST NOT send a parameter more than once in a given transport
 parameters extension.  An endpoint SHOULD treat receipt of duplicate transport
 parameters as a connection error of type TRANSPORT_PARAMETER_ERROR.
 
-A server MUST include the original_connection_id transport parameter
+A server MUST include the original_destination_connection_id transport parameter
</pre>
<p>Ahh, that's lazy of me.  Yes, that is good.  Thanks.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423411801">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2464IIXDKFXWDP7ADRRCRHRANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4N7HW4XXCNZBSR5J3RRCRHRA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBVJXRI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423411801",
"url": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423411801",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9fc782dac7_15213fb5168cd95c41919f--


From nobody Mon May 11 18:33:41 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 F20AC3A0E2B for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:33:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 cqZhHOEGlkcD for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:33:39 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CE3F33A0E2A for <quic-issues@ietf.org>; Mon, 11 May 2020 18:33:38 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id DE9308C03AD for <quic-issues@ietf.org>; Mon, 11 May 2020 18:33:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589247217; bh=hEs9IwP2G63cEHLzNtnIWAeNNFkPDl8E/YYq0YbwTJk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Qwh1V3etB/xtwXnzWBzL7jBCLaFmcG6lftYFzpM069gjqaF2ilFzxsML6MoFnwjBB kO553M5Q57+VoqIafCNR+0xSSAW/HhZjE7dpdSiuArDleyM+r0zEagOPSAvbC2Hj/A Lbt+vKLv1BqzJsh8qPL+imEIhIY5ca/fly+SdHys=
Date: Mon, 11 May 2020 18:33:37 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK36V5MJDKLMPVPDUWF4YXO7DEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/409640473@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9fcf1cdbb8_3f993fcd5a4cd9688737a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/z7FOjdBby4Gpc6NbjKS5WzEQp2M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 01:33:40 -0000

----==_mimepart_5eb9fcf1cdbb8_3f993fcd5a4cd9688737a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -1503,7 +1548,7 @@ An endpoint MUST NOT send a parameter more than once in a given transport
 parameters extension.  An endpoint SHOULD treat receipt of duplicate transport
 parameters as a connection error of type TRANSPORT_PARAMETER_ERROR.
 
-A server MUST include the original_connection_id transport parameter
+A server MUST include the original_destination_connection_id transport parameter

Oh, that's a throwback paragraph.  I'm going to replace that with a more generic reference.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#discussion_r423412323
----==_mimepart_5eb9fcf1cdbb8_3f993fcd5a4cd9688737a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423412323">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1503,7 +1548,7 @@ An endpoint MUST NOT send a parameter more than once in a given transport
 parameters extension.  An endpoint SHOULD treat receipt of duplicate transport
 parameters as a connection error of type TRANSPORT_PARAMETER_ERROR.
 
-A server MUST include the original_connection_id transport parameter
+A server MUST include the original_destination_connection_id transport parameter
</pre>
<p>Oh, that's a throwback paragraph.  I'm going to replace that with a more generic reference.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423412323">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZKK7PJBMJDM4I3EGDRRCRPDANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYLIGTLBXPDVPNLJZLRRCRPDA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBVJ4GI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423412323",
"url": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423412323",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9fcf1cdbb8_3f993fcd5a4cd9688737a--


From nobody Mon May 11 18:35:35 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 B476C3A0E2E for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:35:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.652
X-Spam-Level: 
X-Spam-Status: No, score=-1.652 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 hlnfKHsy41qP for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:35:31 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6B6D33A0E2A for <quic-issues@ietf.org>; Mon, 11 May 2020 18:35:31 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 886051C0A19 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:35:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589247330; bh=bHaYs1FpKIeD111KmG87eR6iok9TCVcBV2bmt4XYQ8Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lSaIyd16lS3Ky0bzy3Yw4XPpZ1W2ERIEXOc2FV5xGxnS7kdO99JXVuxkSmnoFotBc PeVptIpMs6L+xibG2XVcZBoit28trlGBdI2SH6O5pEwbkVVWVxKBLrV6ftUIGxX+dY BaeuxWK/nyWQYYFVJJy0ojpT/0XO84A0+CTeBjBA=
Date: Mon, 11 May 2020 18:35:30 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK436ONRNJFPZDZUKYF4YXPGFEVBNHHCGFYIAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/review/409641000@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9fd62779a2_22903f872f2cd9681061e4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iWcWKMwvOEQgGD6SidwE7p8q32g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 01:35:33 -0000

----==_mimepart_5eb9fd62779a2_22903f872f2cd9681061e4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr commented on this pull request.



> @@ -1069,6 +1069,15 @@ to cease using the connection IDs when requested can result in connection
 failures, as the issuing endpoint might be unable to continue using the
 connection IDs with the active connection.
 
+An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST
+NOT forget a connection ID without retiring it, though MAY choose to treat
+having too many connection IDs in need of retirement as a connection error of

Instead of "too many" how about "having connection IDs in need of retirement that exceed this limit..."  or "in excess of this limit". That way we don't have ambiguity about the referent of "too many"

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547#discussion_r423412817
----==_mimepart_5eb9fd62779a2_22903f872f2cd9681061e4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ekr</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3547#discussion_r423412817">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1069,6 +1069,15 @@ to cease using the connection IDs when requested can result in connection
 failures, as the issuing endpoint might be unable to continue using the
 connection IDs with the active connection.
 
+An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST
+NOT forget a connection ID without retiring it, though MAY choose to treat
+having too many connection IDs in need of retirement as a connection error of
</pre>
<p>Instead of "too many" how about "having connection IDs in need of retirement that exceed this limit..."  or "in excess of this limit". That way we don't have ambiguity about the referent of "too many"</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3547#discussion_r423412817">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZPDFXO2G2B4ZVWPCTRRCRWFANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SUF72KSOUXO7RTADRRCRWFA5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBVKAKA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547#discussion_r423412817",
"url": "https://github.com/quicwg/base-drafts/pull/3547#discussion_r423412817",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9fd62779a2_22903f872f2cd9681061e4--


From nobody Mon May 11 18:35: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 DC8193A0E2A for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:35:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 3cm7LwYETmaN for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:35:51 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8B7273A0E32 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:35:51 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id D0C726603AE for <quic-issues@ietf.org>; Mon, 11 May 2020 18:35:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589247350; bh=UjzVdemRgw9imjLFmJusBBO9vxguQUxLEhU3UU/vtZ8=; h=Date:From:To:Subject:From; b=WWIDbvIMjsmV/jM1O7avCLdaHNAOK3SOI/eUvh3yLDXhgkXSfXnMXkj5oHen3IZkI dT/mD+ICx/Ip5lylCz7QQ9x5Y03KtBVwQbolmQ7Tfs+xLq8+otQ7UZdGDzwxABroL4 7TznscBrXWVn0uCBhJc02tVOC5yGY68VuAzjZKrM=
Date: Mon, 11 May 2020 18:35:50 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/authenticate-hs-cid/6c0462-6ae7f1@github.com>
Subject: [quicwg/base-drafts] 6ae7f1: Use a more generic reference
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9ss-fnVBZKdA1Xn3CKAWfZhsIOo>
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: Tue, 12 May 2020 01:35:53 -0000

  Branch: refs/heads/authenticate-hs-cid
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6ae7f18bfb4052e352d91c2f95715867b41d2582
      https://github.com/quicwg/base-drafts/commit/6ae7f18bfb4052e352d91c2f95715867b41d2582
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Use a more generic reference



From nobody Mon May 11 18:36:04 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 1D85D3A0E2E for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:36:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.724
X-Spam-Level: 
X-Spam-Status: No, score=-1.724 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 FGSCEKA2xtlm for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:36:01 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E97AA3A0E2A for <quic-issues@ietf.org>; Mon, 11 May 2020 18:36:00 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 107AE8C0055 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:36:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589247360; bh=odZi549ObYIaNCJZvO9LP0T6qq1jtg54XK0t4m28BMU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EdVYW7wRfUrADfhiC9fAVCVv8TklwQbuF2xWnMq1qPlDCE0GapkGsX6oXCE35sXyA jQjzJgafkXFw//dfFkfVvhpzfMTOEW9o6XICt4rZSxOfKa4ByuiZPAwmRW+LbIot32 tWccYKuTnol4d+9/RuV556QjzZlV7dy4oTVI7Jfo=
Date: Mon, 11 May 2020 18:36:00 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/push/5056712157@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9fd8012d0_6e813fe4a1acd968291a5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zRQcLi1n7Sbz2UPk9nLgyJo1JFY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 01:36:02 -0000

----==_mimepart_5eb9fd8012d0_6e813fe4a1acd968291a5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

6ae7f18bfb4052e352d91c2f95715867b41d2582  Use a more generic reference


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499/files/6c046207932beb402d293fc5b2c37180995e0dba..6ae7f18bfb4052e352d91c2f95715867b41d2582

----==_mimepart_5eb9fd8012d0_6e813fe4a1acd968291a5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/6ae7f18bfb4052e352d91c2f95715867b41d2582">6ae7f18</a>  Use a more generic reference</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3499/files/6c046207932beb402d293fc5b2c37180995e0dba..6ae7f18bfb4052e352d91c2f95715867b41d2582">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6KMH5HLZQ22OBN7XLRRCRYBANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2CTNTBAHAPNB4276LRRCRYBA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4DGMZXGEZDKNSQOVZWQIZVGA2TMNZRGIYTKNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499/files/6c046207932beb402d293fc5b2c37180995e0dba..6ae7f18bfb4052e352d91c2f95715867b41d2582",
"url": "https://github.com/quicwg/base-drafts/pull/3499/files/6c046207932beb402d293fc5b2c37180995e0dba..6ae7f18bfb4052e352d91c2f95715867b41d2582",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb9fd8012d0_6e813fe4a1acd968291a5--


From nobody Mon May 11 18:36:36 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 F2E9A3A0E37 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:36:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 kj_-H7bc6kGC for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:36:32 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 511663A0E32 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:36:32 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id A54368C01E4 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:36:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589247391; bh=Iks/MSpIIGPpm3E2v9pCqJ+Zf64OEw78yLkgqAmZuhE=; h=Date:From:To:Subject:From; b=f0RcZBlzVceI8rqfF+Myzn5hK2bYxYjHfMvtNUoQfxbTQZBtWJqnGOH+AMSsVRPxF 70r6JqW2rhgDzDOgFWNTW+ZDqTq8InGbgWBD3wgKtXj10BrALuG1vpN9+ugfdtnpGH Y49efilx39VO3HXw6h6VtyyetMrh70b19hHuXuwU=
Date: Mon, 11 May 2020 18:36:31 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/more-semicolon/000000-7c61e5@github.com>
Subject: [quicwg/base-drafts] 7c61e5: One more semicolon
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2NmxKijH-6XTLFnaUS3zxWtGP4g>
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: Tue, 12 May 2020 01:36:34 -0000

  Branch: refs/heads/more-semicolon
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7c61e509e4aa78475f3db55845d4082669dd8af6
      https://github.com/quicwg/base-drafts/commit/7c61e509e4aa78475f3db55845d4082669dd8af6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  One more semicolon



From nobody Mon May 11 18:36:58 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 2DF0D3A0E2E for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:36:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.723
X-Spam-Level: 
X-Spam-Status: No, score=-1.723 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 STk49MPVtWgN for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:36:55 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 267403A0E32 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:36:55 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 7B44FE00B3 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:36:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589247414; bh=V9bh9xlIDAiKdhhq8ssDV5rBnfe/HIpnkIUKu/3J5Y0=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=jtcRBMo1Q65qYUOL6fIiHLvKeTeVRv/cxaAhegtLrD8zcKdp0p+NtmMOUcw9qoz96 cHAoh4YrtTwqXWC0LjFN6WaF+2o4c2xGI/icK1c5VgVylgSzjYGHpxokFo2sKr/jHv 55yIHQp92E7g7yoCvmJ5YJ87dPtUr8phuBDibK5o=
Date: Mon, 11 May 2020 18:36:54 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5T62PLO6EGDBFJQOF4YXPLNEVBNHHCJO7GZI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3644@github.com>
Subject: [quicwg/base-drafts] One more semicolon (#3644)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9fdb66b4a5_3ef33f9260acd96095576"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OsBzlQe8nG-tnxgQK18OdtHLtyQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 01:36:57 -0000

----==_mimepart_5eb9fdb66b4a5_3ef33f9260acd96095576
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3644

-- Commit Summary --

  * One more semicolon

-- File Changes --

    M draft-ietf-quic-transport.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3644.patch
https://github.com/quicwg/base-drafts/pull/3644.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3644

----==_mimepart_5eb9fdb66b4a5_3ef33f9260acd96095576
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3644'>https://github.com/quicwg/base-drafts/pull/3644</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>One more semicolon</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3644/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3644.patch'>https://github.com/quicwg/base-drafts/pull/3644.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3644.diff'>https://github.com/quicwg/base-drafts/pull/3644.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3644">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3QBNUDCSDOWLL5UJTRRCR3NANCNFSM4M6MZWHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3BWXMQN34O7MYY2YTRRCR3NA5CNFSM4M6MZWHKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JF343FA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3644",
"url": "https://github.com/quicwg/base-drafts/pull/3644",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eb9fdb66b4a5_3ef33f9260acd96095576--


From nobody Mon May 11 18:37:03 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 326053A0E2E for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:37:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZlGCPt5C7vFS for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:36:59 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E8E163A0E3B for <quic-issues@ietf.org>; Mon, 11 May 2020 18:36:58 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 1B6EDC60742 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:36:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589247418; bh=3p7vKPo5UbCafJlKK3n5c1qPk15v5urCmn7J5pGQr5I=; h=Date:From:To:Subject:From; b=BCnlqRLVm3bl4OtXTqhXlpH3BxqNNaZ3BSyjYoqsuFbUUpwUdBp1Pdr9HMP2OrGFg ozVIzfRsvcVfJtyEyCI8eNecNnSF0Etwgi8M7yZUY4rwpvu+HDEzDh0rV/q32T8zQ/ KnZfr034oglQFm8S3zVzpzTBVTlyjx59O0QuF8wA=
Date: Mon, 11 May 2020 18:36:58 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/5975c4-f65e2e@github.com>
Subject: [quicwg/base-drafts] f65e2e: Script updating gh-pages from 6ae7f18b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aeOJk8WagXDGX6mP6wbaZDo1Qys>
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: Tue, 12 May 2020 01:37:00 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f65e2ef63674b8b52fc413977dbcb2639eb6873c
      https://github.com/quicwg/base-drafts/commit/f65e2ef63674b8b52fc413977dbcb2639eb6873c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M authenticate-hs-cid/draft-ietf-quic-transport.html
    M authenticate-hs-cid/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6ae7f18b. [ci skip]



From nobody Mon May 11 18:37:21 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 052283A0E37 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:37:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 CYIPDSTHqyeh for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:37:19 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E1F313A0E2E for <quic-issues@ietf.org>; Mon, 11 May 2020 18:37:18 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 0202BA00F6 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:37:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589247438; bh=ktGjWprul4tOK1DBlz9Cdv9rufceFNxDdflSo2fysuQ=; h=Date:From:To:Subject:From; b=oLUFNTZQaSOmRsIvQdMrIIop9swhmr2T/+t3gd5xOBZ5EdKdksX4dzwf9lSVRr2St v/+QYH7c3x6Mdv5i5OTFE6sW7GDTj0L36nMh0lYJgfHyuhlFxfA27qOokESE74vHws +a9JGhtD6Mc3qPTs2RAPaCZ7lBMDel0bDv6dD768=
Date: Mon, 11 May 2020 18:37:17 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f65e2e-94fb1a@github.com>
Subject: [quicwg/base-drafts] 94fb1a: Script updating gh-pages from 7c61e509. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/txjJxhMB77tRVSuszcyfaTXtC8o>
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: Tue, 12 May 2020 01:37:20 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 94fb1a479409dd8f55653246142749b8d84729af
      https://github.com/quicwg/base-drafts/commit/94fb1a479409dd8f55653246142749b8d84729af
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M index.html
    A more-semicolon/draft-ietf-quic-http.html
    A more-semicolon/draft-ietf-quic-http.txt
    A more-semicolon/draft-ietf-quic-invariants.html
    A more-semicolon/draft-ietf-quic-invariants.txt
    A more-semicolon/draft-ietf-quic-qpack.html
    A more-semicolon/draft-ietf-quic-qpack.txt
    A more-semicolon/draft-ietf-quic-recovery.html
    A more-semicolon/draft-ietf-quic-recovery.txt
    A more-semicolon/draft-ietf-quic-tls.html
    A more-semicolon/draft-ietf-quic-tls.txt
    A more-semicolon/draft-ietf-quic-transport.html
    A more-semicolon/draft-ietf-quic-transport.txt
    A more-semicolon/index.html

  Log Message:
  -----------
  Script updating gh-pages from 7c61e509. [ci skip]



From nobody Mon May 11 18:38:32 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 965873A0E3B for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:38:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.866
X-Spam-Level: 
X-Spam-Status: No, score=-1.866 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 svP4Q3mRWS9C for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 18:38:30 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3DCB03A0E32 for <quic-issues@ietf.org>; Mon, 11 May 2020 18:38:30 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 9A2F76E1F4C for <quic-issues@ietf.org>; Mon, 11 May 2020 18:38:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589247509; bh=JKElOmV6ABsXRLS/njpfIXkDloIJ/z8zVg207O3RR/8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cuNy2FPGajMfT85EK7g0nnzGcBFzk1+oc2UGRjNRgchrTnFmB6j81fyOOb68H0+en w3wG4MIMlcckHAjv6u4kfCHnsAqqdb9lUuhLxXdmZSYZHOLVKLtlal8NRWjnrB5Qpe jGYI9+EcmAIcmyz/5nx6GnsBRH5qyuUioJ3Pf2Hw=
Date: Mon, 11 May 2020 18:38:29 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK42FWQFH766S4MIOAV4YXPRLEVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/409641856@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eb9fe1589c78_25843f87caecd95c1057a9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FaDVEkOlGQllmJyZ9BRv7x0scQI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 01:38:32 -0000

----==_mimepart_5eb9fe1589c78_25843f87caecd95c1057a9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.

Thanks for doing that Eric.  It looks good to me.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#discussion_r423413570
----==_mimepart_5eb9fe1589c78_25843f87caecd95c1057a9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423413570">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -2277,11 +2278,21 @@ linked by any other entity.
 At any time, endpoints MAY change the Destination Connection ID they send to a
 value that has not been used on another path.
 
-An endpoint MUST use a new connection ID if it initiates connection migration as
-described in {{initiating-migration}} or probes a new network path as described
-in {{probing}}.  An endpoint MUST use a new connection ID in response to a
-change in the address of a peer if the packet with the new peer address uses an
-active connection ID that has not been previously used by the peer.
+An endpoint MUST NOT reuse a connection ID when sending from more than one local
+address, for example when initiating connection migration as described in
+{{initiating-migration}} or when probing a new network path as described in
+{{probing}}.
+
+Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  However, if an endpoint receives packets from a new
+source address with the same destination connection ID, it MAY continue to use
+the current connection ID with the new address.
</pre>
<p>Thanks for doing that Eric.  It looks good to me.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r423413570">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6AJ2WEQHYEHDYKTMDRRCSBLANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZCWURSSX34YALVPXDRRCSBLA5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBVKHAA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423413570",
"url": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r423413570",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eb9fe1589c78_25843f87caecd95c1057a9--


From nobody Mon May 11 19:01:09 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 F3A863A0E56 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 19:01:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.654
X-Spam-Level: 
X-Spam-Status: No, score=-1.654 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 MVrthZOnPXpF for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 19:01:05 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 340A83A0E58 for <quic-issues@ietf.org>; Mon, 11 May 2020 19:01:05 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 276A95206CD for <quic-issues@ietf.org>; Mon, 11 May 2020 19:01:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589248864; bh=13lLDqT1bhoOQpn/8O+qaZ1J+/gE1Xv8FiSfnN8cXdQ=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Dhg0mxihQ+017QVyoPZJGckSLaj7FyBDAXZ1lMUp5jxtvlzpsBCObpbQeubWeByHX M+rVX84l2w+GSgTEq7axOT0NNz86KGyfnCkHdnUB1CGrH03Vj7biJ3Q1ggQpSnW95w VUQPLHrQmPhI06zOHuTwqrL7a63JhEnicf7UTaro=
Date: Mon, 11 May 2020 19:01:04 -0700
From: Benjamin Saunders <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7LFY6VCRVD6ODQHDV4YXSGBEVBNHHCJPAC44@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3645@github.com>
Subject: [quicwg/base-drafts] Restore missing Length fields in long packet headers (#3645)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eba036018d8e_2eeb3fc948ecd960143155"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: Ralith
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zh1LaRy93f8pcNtWY7AijGEXkLA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 02:01:08 -0000

----==_mimepart_5eba036018d8e_2eeb3fc948ecd960143155
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

These seem to have quietly gone missing in https://github.com/quicwg/base-drafts/pull/3573.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3645

-- Commit Summary --

  * Restore missing Length fields in long packet headers

-- File Changes --

    M draft-ietf-quic-transport.md (3)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3645.patch
https://github.com/quicwg/base-drafts/pull/3645.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3645

----==_mimepart_5eba036018d8e_2eeb3fc948ecd960143155
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>These seem to have quietly gone missing in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="596964905" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3573" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3573/hovercard" href="https://github.com/quicwg/base-drafts/pull/3573">#3573</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3645'>https://github.com/quicwg/base-drafts/pull/3645</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Restore missing Length fields in long packet headers</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3645/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (3)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3645.patch'>https://github.com/quicwg/base-drafts/pull/3645.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3645.diff'>https://github.com/quicwg/base-drafts/pull/3645.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3645">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYBZUHKSTZQ45OSSR3RRCUWBANCNFSM4M6NCVIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2JJULLAOG34T5JCH3RRCUWBA5CNFSM4M6NCVIKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JF4ALTQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3645",
"url": "https://github.com/quicwg/base-drafts/pull/3645",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eba036018d8e_2eeb3fc948ecd960143155--


From nobody Mon May 11 19:32:54 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 7A5733A0474 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 19:32:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.27
X-Spam-Level: 
X-Spam-Status: No, score=-3.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 s4ZLTFBCQE3X for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 19:32:52 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0C9513A040B for <quic-issues@ietf.org>; Mon, 11 May 2020 19:32:51 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 0599B6A0835 for <quic-issues@ietf.org>; Mon, 11 May 2020 19:32:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589250771; bh=wB00nGytKI1bWU8GYqpJmO31mX/hsnWFkxqywt9tQTo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EhsVWEwCR3Hz28R8o6Ve21Tn1hgMLlv9AFrfqhkE2iGNpt/aEXCotCDn0BF5goDJ8 +MCWGLN048NKfFpDSWnFj98GwdN5jEsTWakQzhPeQdpmRY+RDvQZokIbDNU2oCw7Lt Iv77FJOJGy6mWpg5Z6V0n+Gk982437elObK6u0yM=
Date: Mon, 11 May 2020 19:32:50 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK27HIHM4NRKJAGV45N4YXV5FEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/409656812@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eba0ad2eb531_750b3fb9af2cd9603780f0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cNFDRt3TU_kKhrd-LktjNyRwago>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 02:32:53 -0000

----==_mimepart_5eba0ad2eb531_750b3fb9af2cd9603780f0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi commented on this pull request.



> +~~~
+Client                                                  Server
+
+Initial: DCID=S1, SCID=C1 ->
+                                   <- Retry*: DCID=C1, SCID=S2
+Initial*: DCID=S2, SCID=C1 ->
+                                  <- Initial: DCID=C1, SCID=S3
+                             ...
+1-RTT: DCID=S3 ->
+                                             <- 1-RTT: DCID=C1
+~~~
+{: #fig-auth-cid title="Use of Connection IDs in a Handshake"}
+
+For the handshake in {{fig-auth-cid}} the client sets the value of the
+initial_source_connection_id transport parameter to `C1`. If the server sends a
+Retry packet (that is, the packets marked with a '*' are sent), it sets

I really like the diagram, but I would prefer to split it in two. There are two possible handshakes described here: without and with retry involved. I think that the `the packets marked with a '*' are sent` caveat is confusing, because when those packets aren't sent, the `1-RTT: DCID=S3` needs to be replaced by `1-RTT: DCID=S2`. It might be simpler to have two diagrams and two examples.

>  
 If the client received and processed a Retry packet, it MUST validate that the
-original_connection_id transport parameter is present and correct; otherwise, it
-MUST validate that the transport parameter is absent.  A client MUST treat a
-failed validation as a connection error of type TRANSPORT_PARAMETER_ERROR.
+retry_source_connection_id transport parameter is present and correct;
+otherwise, it MUST validate that the transport parameter is absent. A client
+MUST treat a failed validation as a connection error of type
+TRANSPORT_PARAMETER_ERROR.

This contradicts line 1568
> An endpoint MUST treat any of the following as a connection error of type PROTOCOL_VIOLATION

I have a slight preference for PROTOCOL_VIOLATION over TRANSPORT_PARAMETER_ERROR, though I don't much care as long as this section matches the other one.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-409656812
----==_mimepart_5eba0ad2eb531_750b3fb9af2cd9603780f0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423426240">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +~~~
+Client                                                  Server
+
+Initial: DCID=S1, SCID=C1 -&gt;
+                                   &lt;- Retry*: DCID=C1, SCID=S2
+Initial*: DCID=S2, SCID=C1 -&gt;
+                                  &lt;- Initial: DCID=C1, SCID=S3
+                             ...
+1-RTT: DCID=S3 -&gt;
+                                             &lt;- 1-RTT: DCID=C1
+~~~
+{: #fig-auth-cid title=&quot;Use of Connection IDs in a Handshake&quot;}
+
+For the handshake in {{fig-auth-cid}} the client sets the value of the
+initial_source_connection_id transport parameter to `C1`. If the server sends a
+Retry packet (that is, the packets marked with a &#39;*&#39; are sent), it sets
</pre>
<p>I really like the diagram, but I would prefer to split it in two. There are two possible handshakes described here: without and with retry involved. I think that the <code>the packets marked with a '*' are sent</code> caveat is confusing, because when those packets aren't sent, the <code>1-RTT: DCID=S3</code> needs to be replaced by <code>1-RTT: DCID=S2</code>. It might be simpler to have two diagrams and two examples.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423426823">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
 If the client received and processed a Retry packet, it MUST validate that the
-original_connection_id transport parameter is present and correct; otherwise, it
-MUST validate that the transport parameter is absent.  A client MUST treat a
-failed validation as a connection error of type TRANSPORT_PARAMETER_ERROR.
+retry_source_connection_id transport parameter is present and correct;
+otherwise, it MUST validate that the transport parameter is absent. A client
+MUST treat a failed validation as a connection error of type
+TRANSPORT_PARAMETER_ERROR.
</pre>
<p>This contradicts line 1568</p>
<blockquote>
<p>An endpoint MUST treat any of the following as a connection error of type PROTOCOL_VIOLATION</p>
</blockquote>
<p>I have a slight preference for PROTOCOL_VIOLATION over TRANSPORT_PARAMETER_ERROR, though I don't much care as long as this section matches the other one.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-409656812">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZFRQU6Z5XS435PT7LRRCYNFANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7OWOJOFI7EIY3KNC3RRCYNFA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBVN33A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-409656812",
"url": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-409656812",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eba0ad2eb531_750b3fb9af2cd9603780f0--


From nobody Mon May 11 19:54:16 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 9B6683A0824 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 19:54:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.272
X-Spam-Level: 
X-Spam-Status: No, score=-3.272 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 u6hNqWdKp8x4 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 19:54:14 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1CB6D3A0803 for <quic-issues@ietf.org>; Mon, 11 May 2020 19:54:14 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 775C72C148C for <quic-issues@ietf.org>; Mon, 11 May 2020 19:54:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589252052; bh=QuLbZ8Lqd/igbFMAKpjpoWGcjBzdsOsVz54SRoBiaPM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DTgH5T0jehzkrZc6seBQNaGUp4si4rFIE798BQHHqKe495/3tak72HRK5szyoO06c Et/RA5ZWAhoE8c5l7Hvmd9GBf/H31dhsXIAciJDrhKb5jmljoo2LP2If8GYvsnAVlS R3P/z5L0G1rZRkRHUPQayocSMhdGgq5KPSpe7AkU=
Date: Mon, 11 May 2020 19:54:12 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3LTWKNCZ3UWCBC72F4YXYNJEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/409663909@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eba0fd4685d5_443f3f926aacd9601062ec"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VtPX-Omy08rnIarGO_x3Hq3aWmU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 02:54:16 -0000

----==_mimepart_5eba0fd4685d5_443f3f926aacd9601062ec
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann commented on this pull request.



> +first Initial packet it sent in the initial_source_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field from the first Initial packet it received from
+the client in the original_destination_connection_id transport parameter; if
+the server sent a Retry packet this refers to the first Initial packet received
+before sending the Retry packet. If it sends a Retry packet, a server also
+includes the Source Connection ID field from the Retry packet in the
+retry_source_connection_id transport parameter.
+
+The values provided by a peer for these transport parameters MUST match the
+values that an endpoint used in the Destination and Source Connection ID fields
+of Initial packets that it sent. Including connection ID values in transport
+parameters and verifying them ensures that that an attacker cannot influence
+the choice of connection ID for a successful connection by injecting packets
+carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
+treat any of the following as a connection error of type PROTOCOL_VIOLATION:

Our rule for FRAME_ENCODING_ERROR is that we use that error code when the error is detectable while parsing the frame, without accessing connection state. I'd argue that we should apply a similar logic here. The absence of `initial_source_connection_id` and `original_destination_connection_id` definitely falls in that category, and I'd put the absence / presence of `retry_source_connection_id` in the same category, although I could see why someone could make an argument against this.

The mismatch seems to be a clear case for PROTOCOL_VIOLATION.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#discussion_r423432102
----==_mimepart_5eba0fd4685d5_443f3f926aacd9601062ec
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423432102">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +first Initial packet it sent in the initial_source_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field from the first Initial packet it received from
+the client in the original_destination_connection_id transport parameter; if
+the server sent a Retry packet this refers to the first Initial packet received
+before sending the Retry packet. If it sends a Retry packet, a server also
+includes the Source Connection ID field from the Retry packet in the
+retry_source_connection_id transport parameter.
+
+The values provided by a peer for these transport parameters MUST match the
+values that an endpoint used in the Destination and Source Connection ID fields
+of Initial packets that it sent. Including connection ID values in transport
+parameters and verifying them ensures that that an attacker cannot influence
+the choice of connection ID for a successful connection by injecting packets
+carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
+treat any of the following as a connection error of type PROTOCOL_VIOLATION:
</pre>
<p>Our rule for FRAME_ENCODING_ERROR is that we use that error code when the error is detectable while parsing the frame, without accessing connection state. I'd argue that we should apply a similar logic here. The absence of <code>initial_source_connection_id</code> and <code>original_destination_connection_id</code> definitely falls in that category, and I'd put the absence / presence of <code>retry_source_connection_id</code> in the same category, although I could see why someone could make an argument against this.</p>
<p>The mismatch seems to be a clear case for PROTOCOL_VIOLATION.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423432102">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6L5QAPZYYM7AKKXTTRRC25JANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7SRV6INLGEXMNQW6DRRC25JA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBVPTJI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423432102",
"url": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423432102",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eba0fd4685d5_443f3f926aacd9601062ec--


From nobody Mon May 11 21:04:42 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 AFB023A0B0E for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:04:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 t0AYID_qPW_E for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:04:38 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 61AFD3A0B0B for <quic-issues@ietf.org>; Mon, 11 May 2020 21:04:38 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id BC92B8C0434 for <quic-issues@ietf.org>; Mon, 11 May 2020 21:04:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589256276; bh=70q0SKirXCkulkV6+tX9Y59PAYiF9Pv0+j+PQyb8Ii0=; h=Date:From:To:Subject:From; b=lWiEBG4xga7XyxQyE+rfVvAHPwYr+lfR088szs+GHxjAjCrWQnEi7aFAquLzP5SBh lis4sDTj181kcK3yt4W++sOjZKzlNsQvR2iElhPaJ+SlQb6MXgngl9Ar02qrr1xKa+ CttSG/eeVmsLI/roRaX9dDIJ8eMKOKL03XyRkD+s=
Date: Mon, 11 May 2020 21:04:36 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/cc6e8b-821dff@github.com>
Subject: [quicwg/base-drafts] 96b9bc: Restore missing Length fields in long packet headers
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/f813ui8Fl6OBXwz_cgOQ05LJzKs>
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: Tue, 12 May 2020 04:04:40 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 96b9bc212447cc41396e55dd428e202c8671b0e3
      https://github.com/quicwg/base-drafts/commit/96b9bc212447cc41396e55dd428e202c8671b0e3
  Author: Benjamin Saunders <ben.e.saunders@gmail.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Restore missing Length fields in long packet headers


  Commit: 821dff86b0f2fef5888bd8814e7673e686f7a822
      https://github.com/quicwg/base-drafts/commit/821dff86b0f2fef5888bd8814e7673e686f7a822
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3645 from Ralith/restore-long-length

Restore missing Length fields in long packet headers


Compare: https://github.com/quicwg/base-drafts/compare/cc6e8b75fa9c...821dff86b0f2


From nobody Mon May 11 21:04:45 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 B77993A0B0B for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:04:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 9ZDBxjxgKCFc for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:04:39 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A42F33A0B0C for <quic-issues@ietf.org>; Mon, 11 May 2020 21:04:39 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id DDFFF281789 for <quic-issues@ietf.org>; Mon, 11 May 2020 21:04:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589256278; bh=x0RRXuxGLtoBuvKL9skVbW5HNEwE63UKkIlY1/e9hqQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YCm+P3FlxJaVGzZ2djr3LQe2jyMhVUyxiZrvDhc1AVYG/kQQqK+TARcxVacyL+ki+ YZBpRO/is7QMaiqV8rp2INj9wEidbdW5OZyMThfVkqjl5jzBWg2MkgLQrp3s2fiZt1 ujXXP5YRgZ9t4S/9aR21nSri2NW9SrrELd/2z8VU=
Date: Mon, 11 May 2020 21:04:38 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK56KYJCXSNW622BZQF4YYAVNEVBNHHCJPAC44@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3645/c627095167@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3645@github.com>
References: <quicwg/base-drafts/pull/3645@github.com>
Subject: Re: [quicwg/base-drafts] Restore missing Length fields in long packet headers (#3645)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eba2056ce557_7ed03fcb112cd960610610"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CBBdS2wUumlOkPEkVzeQ5cX89UM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 04:04:41 -0000

----==_mimepart_5eba2056ce557_7ed03fcb112cd960610610
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

How I managed to miss that is a little embarrassing, but Mike's recent changes indicate that my transcription was already pretty bad.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3645#issuecomment-627095167
----==_mimepart_5eba2056ce557_7ed03fcb112cd960610610
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>How I managed to miss that is a little embarrassing, but Mike's recent changes indicate that my transcription was already pretty bad.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3645#issuecomment-627095167">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZQG56FK3IIFJ7WIETRRDDFNANCNFSM4M6NCVIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYJDL6ZZMMZZPI6KCLRRDDFNA5CNFSM4M6NCVIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVQLM7Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3645#issuecomment-627095167",
"url": "https://github.com/quicwg/base-drafts/pull/3645#issuecomment-627095167",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eba2056ce557_7ed03fcb112cd960610610--


From nobody Mon May 11 21:04:50 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 3A3193A0B2E for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:04:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 huMFmi3LnDjF for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:04:47 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1D0DC3A0B19 for <quic-issues@ietf.org>; Mon, 11 May 2020 21:04:46 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 3C6E1C60C1F for <quic-issues@ietf.org>; Mon, 11 May 2020 21:04:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589256286; bh=ewKlQ7AeOY3L2/sfHDLFQQJyDwYvsvk/38UB8H6HEgY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=C5xcbGiicknvcL5AUh/88MQaJ2A0usNsW2MFkiCn6pmr4b2vigPNj4aQfXZjD8Hzq fSEeP71c/TAR/3asCVJaGSBrbt9oEJE+LtT9pzbM7LJZPfKOMFeZlUv3ug3wh1W9GL r3vkMhEUx70CTSFVFmdj2d7nguJ5qLwtKWN2g1d0=
Date: Mon, 11 May 2020 21:04:46 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK57SAGZKUQZ2SUQBTN4YYAV5EVBNHHCJPAC44@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3645/issue_event/3325661657@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3645@github.com>
References: <quicwg/base-drafts/pull/3645@github.com>
Subject: Re: [quicwg/base-drafts] Restore missing Length fields in long packet headers (#3645)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eba205e2df6d_2eee3fc948ecd96057217d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gqVBd09el-vba4CYlSbiq3Uz83w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 04:04:48 -0000

----==_mimepart_5eba205e2df6d_2eee3fc948ecd96057217d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3645 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3645#event-3325661657
----==_mimepart_5eba205e2df6d_2eee3fc948ecd96057217d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="616301287" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3645" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3645/hovercard" href="https://github.com/quicwg/base-drafts/pull/3645">#3645</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3645#event-3325661657">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK27XL6356F6EWM45VTRRDDF5ANCNFSM4M6NCVIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2DWS2VGGC4MDNIUSDRRDDF5A5CNFSM4M6NCVIKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYY4ZDWI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3645#event-3325661657",
"url": "https://github.com/quicwg/base-drafts/pull/3645#event-3325661657",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eba205e2df6d_2eee3fc948ecd96057217d--


From nobody Mon May 11 21:05:54 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 BB2DA3A0B0C for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:05:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 cY2893gV4Eja for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:05:51 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B91FF3A0B0B for <quic-issues@ietf.org>; Mon, 11 May 2020 21:05:51 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id DD6FEC60D01 for <quic-issues@ietf.org>; Mon, 11 May 2020 21:05:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589256350; bh=LSjC1c415x4JGtA6cjwZr6AXEXtQX2tIgFYgK3qD1u8=; h=Date:From:To:Subject:From; b=YZb3gIx9y3rSudZJOq6KABjULx1bjDonJSj5iwciIG/l+tY+01oTsXv+MqXq3dr9U yBTxJJ0Ss4uOhST1kzovU0JzLLLS2GuybDn+TBttuOhq1WmhZ7fHg8VH2A3J+8leVi aknm4Fa3QVXR7GHaa730TUZL7CepCJiozNaBHc68=
Date: Mon, 11 May 2020 21:05:50 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/94fb1a-edf911@github.com>
Subject: [quicwg/base-drafts] edf911: Script updating gh-pages from 821dff86. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IhJ-jXyahkGmzokKBmBNe38Ow1A>
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: Tue, 12 May 2020 04:05:53 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: edf9117528a098e89736c969863f31fcefb354e8
      https://github.com/quicwg/base-drafts/commit/edf9117528a098e89736c969863f31fcefb354e8
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 821dff86. [ci skip]



From nobody Mon May 11 21:12:27 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 3145F3A0B2A for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:12:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 iHFPMIwma3HN for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:12:25 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2343C3A0A6C for <quic-issues@ietf.org>; Mon, 11 May 2020 21:12:25 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 6C328E0462 for <quic-issues@ietf.org>; Mon, 11 May 2020 21:12:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589256744; bh=CugpQ5KzANX3CHezULn7N/tQ1aQfBmQ3pwkdbhvfCJk=; h=Date:From:To:Subject:From; b=qrV5agJy7sc4R4IkUwd8ZkBWsNIiUn6xsi8y3dW7qWpVq47GeSmbjajeJdm2Z/oMw VXj1EEmcI7dL4OegtxcXGFln6srLNHsQiwiWKjBLL+Ar9M6Q4fKd3Z5BfliKFlKN3F vua6AYdqvGKDtz4e1qTTVOFrZoNejVvPa5q9QDlI=
Date: Mon, 11 May 2020 21:12:24 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/authenticate-hs-cid/6ae7f1-27dfb6@github.com>
Subject: [quicwg/base-drafts] fee402: Correct a few more errors
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RsfjqkmSOCQ1mZ_P53qQcnripQw>
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: Tue, 12 May 2020 04:12:26 -0000

  Branch: refs/heads/authenticate-hs-cid
  Home:   https://github.com/quicwg/base-drafts
  Commit: fee4020ce6d9aaa9bbee74a51424701ca98bbf44
      https://github.com/quicwg/base-drafts/commit/fee4020ce6d9aaa9bbee74a51424701ca98bbf44
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Correct a few more errors


  Commit: 27dfb6973f76c27fee090c001b6f82427b463806
      https://github.com/quicwg/base-drafts/commit/27dfb6973f76c27fee090c001b6f82427b463806
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Fewer words


Compare: https://github.com/quicwg/base-drafts/compare/6ae7f18bfb40...27dfb6973f76


From nobody Mon May 11 21:12:38 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 436D13A0B2E for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:12:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KlI5Gffaq35c for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:12:35 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CB8F73A0B2A for <quic-issues@ietf.org>; Mon, 11 May 2020 21:12:34 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 57229282C6F for <quic-issues@ietf.org>; Mon, 11 May 2020 21:12:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589256753; bh=AXvgnSfQl6dPdtRlbDxqbPYRpQsY4ALb8Ns12Po1umg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0ePPecR9hJ510Rp+7v+cT2EhDDQOWjz1R3NeYit+cDH1htkpjVtT9g58whCIGHkEA nFC7rgyTFzzmPwMSn04Vqhe8HUww70ETweQaPJ8z76/VmOMmboTPqA6ACTJETTQr/g J86qwfCYNfz8EiZI5CmCMZOyAwz9iu0ZNEaD45ks=
Date: Mon, 11 May 2020 21:12:33 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/push/5057166188@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eba223147957_32e43fbf56ecd95c81385a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hMC1houGEuw9INCwIgxCpZC8zYw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 04:12:36 -0000

----==_mimepart_5eba223147957_32e43fbf56ecd95c81385a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 2 commits.

fee4020ce6d9aaa9bbee74a51424701ca98bbf44  Correct a few more errors
27dfb6973f76c27fee090c001b6f82427b463806  Fewer words


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499/files/6ae7f18bfb4052e352d91c2f95715867b41d2582..27dfb6973f76c27fee090c001b6f82427b463806

----==_mimepart_5eba223147957_32e43fbf56ecd95c81385a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/fee4020ce6d9aaa9bbee74a51424701ca98bbf44">fee4020</a>  Correct a few more errors</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/27dfb6973f76c27fee090c001b6f82427b463806">27dfb69</a>  Fewer words</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3499/files/6ae7f18bfb4052e352d91c2f95715867b41d2582..27dfb6973f76c27fee090c001b6f82427b463806">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3PF3RCX64INF7CG33RRDEDDANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYMWIFKJSVR443SLVTRRDEDDA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4DGMZXGEZDKNSQOVZWQIZVGA2TOMJWGYYTQOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499/files/6ae7f18bfb4052e352d91c2f95715867b41d2582..27dfb6973f76c27fee090c001b6f82427b463806",
"url": "https://github.com/quicwg/base-drafts/pull/3499/files/6ae7f18bfb4052e352d91c2f95715867b41d2582..27dfb6973f76c27fee090c001b6f82427b463806",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eba223147957_32e43fbf56ecd95c81385a--


From nobody Mon May 11 21:13:26 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 9EED13A0B32 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:13:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 HDhdVcYJv3m3 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:13:23 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 69C7B3A0B2A for <quic-issues@ietf.org>; Mon, 11 May 2020 21:13:23 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 3EDA16E06C8 for <quic-issues@ietf.org>; Mon, 11 May 2020 21:13:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589256802; bh=9a7RuKXEr4cH+uz0I1pNL37MoC/bplstWcjypJ+6v9w=; h=Date:From:To:Subject:From; b=LNgBllar9WPW54sR8m1UECL9ck4lRM8ypdxqYUCz3qi4XAwiTDr+YvsQW4fTi0TY6 ckoOCR6hHSQgGCzzW+U54dTDeoEIMOEvpBbsrJ1LyTRtk0kuPUwDDFFay/2uqe7stS L/1J61vmzB4qGkJWco5kYhRRcfAlxtskMLStJhog=
Date: Mon, 11 May 2020 21:13:22 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/edf911-b09283@github.com>
Subject: [quicwg/base-drafts] b09283: Script updating gh-pages from 27dfb697. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QejEcK3_9Oa446WBQvK7oy1u8w4>
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: Tue, 12 May 2020 04:13:25 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b09283d2e7e05aae4be64c651436bb1adbd17482
      https://github.com/quicwg/base-drafts/commit/b09283d2e7e05aae4be64c651436bb1adbd17482
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M authenticate-hs-cid/draft-ietf-quic-transport.html
    M authenticate-hs-cid/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 27dfb697. [ci skip]



From nobody Mon May 11 21:14:30 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 DC8073A0B79 for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:14:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.269
X-Spam-Level: 
X-Spam-Status: No, score=-3.269 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Yrh5suwS5Qsh for <quic-issues@ietfa.amsl.com>; Mon, 11 May 2020 21:14:27 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7E63C3A0B6E for <quic-issues@ietf.org>; Mon, 11 May 2020 21:14:27 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id C192F6E06C8 for <quic-issues@ietf.org>; Mon, 11 May 2020 21:14:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589256866; bh=F7ZOo5EG+GB+qlPTrhlSus7fDWLbtXRj6Etc8rIUZ5A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QNcQUqgqnFyepBrlDKY1X+6mXMzfkLClu76LnEPiy2B4IFQDCpxjmur/E09qjIz31 kZxgdUqteflOTl7wBKa9Tr71uT+dcB3qrd4pWVegDBalYxGe7o+fJUBPcKqLHMV+Cg OBXsgVPevG90UbfAlmsFawW/gcUhqqgeQY32pDJQ=
Date: Mon, 11 May 2020 21:14:26 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYKIG3YL3EGT6XMMKF4YYB2FEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/409685953@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eba22a2b2213_33f53fbf56ecd95c7457f7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TxlkAR5x2iuJ8iuFn9Ak3hc3u9M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 04:14:29 -0000

----==_mimepart_5eba22a2b2213_33f53fbf56ecd95c7457f7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +first Initial packet it sent in the initial_source_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field from the first Initial packet it received from
+the client in the original_destination_connection_id transport parameter; if
+the server sent a Retry packet this refers to the first Initial packet received
+before sending the Retry packet. If it sends a Retry packet, a server also
+includes the Source Connection ID field from the Retry packet in the
+retry_source_connection_id transport parameter.
+
+The values provided by a peer for these transport parameters MUST match the
+values that an endpoint used in the Destination and Source Connection ID fields
+of Initial packets that it sent. Including connection ID values in transport
+parameters and verifying them ensures that that an attacker cannot influence
+the choice of connection ID for a successful connection by injecting packets
+carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
+treat any of the following as a connection error of type PROTOCOL_VIOLATION:

I like that rationale.  I could also see my way to choose TRANSPORT_PARAMETER_ERROR.  We use that for transport parameters that are present when they are disallowed (like preferred_address from a client) in addition to obvious encoding problems, which suggests that you might implement this as `if transport_parameters.bad() then TRANSPORT_PARAMETER_ERROR`, but this validation does involve accessing external state, as you say, so a different code is fully justified.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#discussion_r423451259
----==_mimepart_5eba22a2b2213_33f53fbf56ecd95c7457f7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423451259">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +first Initial packet it sent in the initial_source_connection_id transport
+parameter; see {{transport-parameter-definitions}}. A server includes the
+Destination Connection ID field from the first Initial packet it received from
+the client in the original_destination_connection_id transport parameter; if
+the server sent a Retry packet this refers to the first Initial packet received
+before sending the Retry packet. If it sends a Retry packet, a server also
+includes the Source Connection ID field from the Retry packet in the
+retry_source_connection_id transport parameter.
+
+The values provided by a peer for these transport parameters MUST match the
+values that an endpoint used in the Destination and Source Connection ID fields
+of Initial packets that it sent. Including connection ID values in transport
+parameters and verifying them ensures that that an attacker cannot influence
+the choice of connection ID for a successful connection by injecting packets
+carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
+treat any of the following as a connection error of type PROTOCOL_VIOLATION:
</pre>
<p>I like that rationale.  I could also see my way to choose TRANSPORT_PARAMETER_ERROR.  We use that for transport parameters that are present when they are disallowed (like preferred_address from a client) in addition to obvious encoding problems, which suggests that you might implement this as <code>if transport_parameters.bad() then TRANSPORT_PARAMETER_ERROR</code>, but this validation does involve accessing external state, as you say, so a different code is fully justified.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r423451259">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ6GNPUBX6OTPHMLPTRRDEKFANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5RP7TNDGZNEOREODLRRDEKFA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBVU7QI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423451259",
"url": "https://github.com/quicwg/base-drafts/pull/3499#discussion_r423451259",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eba22a2b2213_33f53fbf56ecd95c7457f7--


From nobody Tue May 12 04:52:21 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 3EDEF3A0147 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 04:52:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 rJBD-oO9timN for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 04:52:18 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 271AD3A017E for <quic-issues@ietf.org>; Tue, 12 May 2020 04:52:17 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id A027AA060E for <quic-issues@ietf.org>; Tue, 12 May 2020 04:52:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589284335; bh=f9OmLLtNdTc2BX5fzPNel4OvJouMnOk6MlRk8HAFzRQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nSADuKXe0ewR+4BwgULLe25L/b4jG3hW8iraVvJR571kTDj4BEtlsXHMFMhsJvT8e xMXrnT6Q7p/bwhexJ0MGzST7H4U1SB+XS2pKl56X3CDD8bS83i5ZQsQz0Uk93pt70E E7I7kdM18b2eTxzPg99iQexN3EVvDy7IAszSZQRw=
Date: Tue, 12 May 2020 04:52:15 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ5LZCORXVEXZPQFZV4YZXO7EVBNHHCGFYIAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/review/409962703@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eba8def8fed4_72fb3f93ad8cd96421857"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/J-l7_hG6sH9Qmxyh8MQtsN8Zagw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 11:52:19 -0000

----==_mimepart_5eba8def8fed4_72fb3f93ad8cd96421857
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.

Still LG, but I like ekr's suggestion



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547#pullrequestreview-409962703
----==_mimepart_5eba8def8fed4_72fb3f93ad8cd96421857
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>

<p>Still LG, but I like ekr's suggestion</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3547#pullrequestreview-409962703">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5G2LCACYDEUOSXZ7DRREZ67ANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK45USB3PBSJEXFF6Q3RREZ67A5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBXYRTY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547#pullrequestreview-409962703",
"url": "https://github.com/quicwg/base-drafts/pull/3547#pullrequestreview-409962703",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eba8def8fed4_72fb3f93ad8cd96421857--


From nobody Tue May 12 06:15:18 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 C6ABD3A0920 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:15:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 XIcoch4Jl_lx for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:15:16 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D738C3A091A for <quic-issues@ietf.org>; Tue, 12 May 2020 06:15:16 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id D8506520A50 for <quic-issues@ietf.org>; Tue, 12 May 2020 06:15:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589289315; bh=vBu+E4gYQHnnGejIOsVTVMQorUkpsuGeD5i/B/PJv38=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=G037sKGhBhOxoMquti3yLEZ0+wNeu05MUgnWxl690iSTs8sBm/9entz+B9qT72gch YbkJkDye8eUs4hocAqufQ6TfRdlkao/PiTovl45VOg6V7njS8IUeOjtqy29n+lTeL9 0cwlniiHbbu3mfsGJj/BuY/hlbLfHKlvs/bp3evk=
Date: Tue, 12 May 2020 06:15:15 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3QWSFVPJBG5WIUA6V4Y2BGHEVBNHHCJO7GZI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3644/review/410027567@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3644@github.com>
References: <quicwg/base-drafts/pull/3644@github.com>
Subject: Re: [quicwg/base-drafts] One more semicolon (#3644)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebaa163c87f9_144c3fcff78cd96071643"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_I29St2LlbZpUtID01deYccRL_A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 13:15:18 -0000

----==_mimepart_5ebaa163c87f9_144c3fcff78cd96071643
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3644#pullrequestreview-410027567
----==_mimepart_5ebaa163c87f9_144c3fcff78cd96071643
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3644#pullrequestreview-410027567">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4JYDGZ6UIBF6SVXFDRRFDWHANCNFSM4M6MZWHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYSV3CK7BB4WLDDGWDRRFDWHA5CNFSM4M6MZWHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBYIMLY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3644#pullrequestreview-410027567",
"url": "https://github.com/quicwg/base-drafts/pull/3644#pullrequestreview-410027567",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebaa163c87f9_144c3fcff78cd96071643--


From nobody Tue May 12 06:18:28 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 47CB83A0922 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:18:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KQNN3PkPs_mL for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:18:24 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9704B3A0913 for <quic-issues@ietf.org>; Tue, 12 May 2020 06:18:24 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 5B774C60E96 for <quic-issues@ietf.org>; Tue, 12 May 2020 06:18:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589289503; bh=QJ/qm7+qHUTH4mM8MPABhllph7rWLmDz3Bc7npCGxq0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uM2cm/Ieev9bgK9PufEkHyYTjm3NZmUGn9ofM5bcL+tQOme4ZvqzN4/P6K4zEygje XA1AwRmSwrjqsw8HDV2eAr9qmsdi1MI5Pzbpsle7wC+OKVnbpeSV7BCLEL3gYtPYpk VJj2FzZ31HsPBWXWuMTA0VA7JlbkGGD91LHM37kE=
Date: Tue, 12 May 2020 06:18:23 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYRDE37PM7ZU2MLAQ54Y2BR7EVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/review/410030444@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebaa21f4b466_39ff3fc966ccd96c53787"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8qEnsuPzGKmkUWHE0KegXx16FmI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 13:18:26 -0000

----==_mimepart_5ebaa21f4b466_39ff3fc966ccd96c53787
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.

This is how I understood the existing design, thanks for the clarification.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-410030444
----==_mimepart_5ebaa21f4b466_39ff3fc966ccd96c53787
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>

<p>This is how I understood the existing design, thanks for the clarification.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-410030444">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK23YLMKNZLWRF2IRSLRRFEB7ANCNFSM4M6L6D2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3O2G5DKO7TD4JG4UTRRFEB7A5CNFSM4M6L6D2KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBYJC3A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-410030444",
"url": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-410030444",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebaa21f4b466_39ff3fc966ccd96c53787--


From nobody Tue May 12 06:23:32 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 00DBE3A092A for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:23:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.652
X-Spam-Level: 
X-Spam-Status: No, score=-1.652 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Twox2dXhV1LQ for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:23:29 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B1D0E3A0922 for <quic-issues@ietf.org>; Tue, 12 May 2020 06:23:29 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 76365E0BD9 for <quic-issues@ietf.org>; Tue, 12 May 2020 06:23:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589289807; bh=yctOR0FF4vJx2q4ek2xNwI90dTwLCXH45kKBu09j97I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ndG5jVQkTQZIwpWkWIIHpwV9g9ZDWdinCGl9zQBQdVAFXeuNVXoGpRK3EvF5sUS5A V8isljCuc2d9WdHuBQXhVaCKN3/a7dm+mgbDhnvvkzS+ZhCLYkc6IzQoaz3I4X2Eno x7ob0XchO8/2uUem/K5WNaC1kpbEqbSIw/Tl+Qko=
Date: Tue, 12 May 2020 06:23:27 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK73F5DY6KUWHG6ESXV4Y2CE7EVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/review/410035220@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebaa34f673f3_491a3f9346ecd95c505fa"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Jbt27iHqSoXux3DaBbBIouJh2T8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 13:23:31 -0000

----==_mimepart_5ebaa34f673f3_491a3f9346ecd95c505fa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> +will stay within the limit.  An endpoint that receives more connection IDs than
+its advertised active_connection_id_limit MUST close the connection with an
+error of type CONNECTION_ID_LIMIT_ERROR.

```suggestion
will stay within the limit.  An endpoint that receives a NEW_CONNECTION_ID frame
with an Sequence Number more than its advertised active_connection_id_limit plus the Retire Prior To
in the frame MUST close the connection with an error of type
CONNECTION_ID_LIMIT_ERROR.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-410035220
----==_mimepart_5ebaa34f673f3_491a3f9346ecd95c505fa
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ianswett</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3643#discussi=
on_r423728347">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +will stay within the limit.  An endpoint =
that receives more connection IDs than=0D
+its advertised active_connection_id_limit MUST close the connection with=
 an=0D
+error of type CONNECTION_ID_LIMIT_ERROR.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-will stay within the limit.  An endpoint that=
 receives more connection IDs than=0D
-its advertised active_connection_id_limit MUST close the connection with=
 an=0D
-error of type CONNECTION_ID_LIMIT_ERROR.=0D
+will stay within the limit.  An endpoint that receives a NEW_CONNECTION_=
ID frame=0D
+with an Sequence Number more than its advertised active_connection_id_li=
mit plus the Retire Prior To=0D
+in the frame MUST close the connection with an error of type=0D
+CONNECTION_ID_LIMIT_ERROR.=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3643#pullrequestreview-410035220">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K43GSUQHNK5SGFLVDTRRFEU7ANCNFSM4M6L6D2A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK5KCWRH6UR54U6X7KLRRFEU7A5CNFSM4=
M6L6D2KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODBYKIFA.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestrev=
iew-410035220",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview=
-410035220",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebaa34f673f3_491a3f9346ecd95c505fa--


From nobody Tue May 12 06:56:26 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 8344D3A0A07 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:56:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 1J89ADzen2ll for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:56:23 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0F8A83A0A06 for <quic-issues@ietf.org>; Tue, 12 May 2020 06:56:22 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id D85596E00B2 for <quic-issues@ietf.org>; Tue, 12 May 2020 06:56:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589291781; bh=QElPdwP2VJ4a/inUYA9Ms3jyd4aG96/Fy03hGwj+yAw=; h=Date:From:To:Subject:From; b=CM4C3QaabeGyJ1MlnIBwoAiFv19trGMlZGAKMb8iDJTW41hsuvjtvPBG/pyqHuVvj 20hdAy+gsY1JHqE7CDNxOPZstPNAnMvHnXfXVK5rxC8WAA9knDrT/Cv3d6MXXtv7E9 kWuM96p03BHtxvdHNBODqgVxQxfJrTZKqQUn7/x8=
Date: Tue, 12 May 2020 06:56:21 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/transport/another-one/000000-fc0342@github.com>
Subject: [quicwg/base-drafts] fc0342: Another one
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uqm8K2H5NOjZFznOZeUzcbt7Ee0>
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: Tue, 12 May 2020 13:56:24 -0000

  Branch: refs/heads/transport/another-one
  Home:   https://github.com/quicwg/base-drafts
  Commit: fc03421115f6786cda02b9d21dfd44264091ecde
      https://github.com/quicwg/base-drafts/commit/fc03421115f6786cda02b9d21dfd44264091ecde
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Another one



From nobody Tue May 12 06:58:04 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 DF9413A0A05 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:58:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 wvRmtnPrCOV7 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:58:01 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C1C523A0A10 for <quic-issues@ietf.org>; Tue, 12 May 2020 06:57:17 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 052558C11EA for <quic-issues@ietf.org>; Tue, 12 May 2020 06:57:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589291837; bh=l3rMJIeYhASZrLLOyawl006Iqonnpxsm4i4haHHxtcc=; h=Date:From:To:Subject:From; b=Jj7kSkuX8u0+BxV4DGtWwmB6F3UvzrY+jkQZ/ucVna7A4dW5uoeBDLu3RXUXVZNvo sg7ZX2YvhRNwXw2I8bkTURzl7NqtvzhsS8Tv7hU3BEgxE2GOZgYy1tkiGEgYayl2zp vB4yuavf7c20tJ7ycOEMiuA0Q+ab9d003VSrHIBo=
Date: Tue, 12 May 2020 06:57:16 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b09283-13d931@github.com>
Subject: [quicwg/base-drafts] 13d931: Script updating gh-pages from fc034211. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dgWMK7pYOGQkUojHA__34PlrI7c>
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: Tue, 12 May 2020 13:58:03 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 13d931874469c7dca0eadd2024487989d53ffc88
      https://github.com/quicwg/base-drafts/commit/13d931874469c7dca0eadd2024487989d53ffc88
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M index.html
    A transport/another-one/draft-ietf-quic-http.html
    A transport/another-one/draft-ietf-quic-http.txt
    A transport/another-one/draft-ietf-quic-invariants.html
    A transport/another-one/draft-ietf-quic-invariants.txt
    A transport/another-one/draft-ietf-quic-qpack.html
    A transport/another-one/draft-ietf-quic-qpack.txt
    A transport/another-one/draft-ietf-quic-recovery.html
    A transport/another-one/draft-ietf-quic-recovery.txt
    A transport/another-one/draft-ietf-quic-tls.html
    A transport/another-one/draft-ietf-quic-tls.txt
    A transport/another-one/draft-ietf-quic-transport.html
    A transport/another-one/draft-ietf-quic-transport.txt
    A transport/another-one/index.html

  Log Message:
  -----------
  Script updating gh-pages from fc034211. [ci skip]



From nobody Tue May 12 06:58:09 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 0B2993A0A4F for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:58:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.651
X-Spam-Level: 
X-Spam-Status: No, score=-1.651 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 qVVuu-BcsK9t for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:58:02 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 09D0C3A0A15 for <quic-issues@ietf.org>; Tue, 12 May 2020 06:57:17 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 2A4F6E165A for <quic-issues@ietf.org>; Tue, 12 May 2020 06:57:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589291837; bh=EcjUhX0+ZF7YYwJM41bW9aXh8FwOArg6qFUf0l2y3OE=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=S8iatYTXOh6xS7ZOC+/pqSzXhAtgaqFwRgGy9YeyDti0N96l7ggsuJ9FQOXUEv2KR o6TQePuRQd2lif33g6VfuZRYUHTmY0LJpptCYNPT0MkMdiacuWqfblCG+1/k+xtRV6 ULLHnnQk/lAx2tt/44/J/6El9X060l2mIJ5yMZhI=
Date: Tue, 12 May 2020 06:57:17 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5RJ6ZUG557OM7T7P54Y2GD3EVBNHHCJQODSM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3646@github.com>
Subject: [quicwg/base-drafts] Another diagram discrepancy (#3646)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebaab3d1ae1c_472c3fcc066cd95c253095"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lD4CnFw86s4eYj6AWs_HDsgbXxc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 13:58:06 -0000

----==_mimepart_5ebaab3d1ae1c_472c3fcc066cd95c253095
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

I keep thinking I&#39;ve found the bottom of the barrel, so I&#39;ll just=
 make one more PR....  =F0=9F=98=89=0D
You can view, comment on, or merge this pull request online at:=0D
=0D
  https://github.com/quicwg/base-drafts/pull/3646=0D
=0D
-- Commit Summary --=0D
=0D
  * Another one=0D
=0D
-- File Changes --=0D
=0D
    M draft-ietf-quic-transport.md (1)=0D
=0D
-- Patch Links --=0D
=0D
https://github.com/quicwg/base-drafts/pull/3646.patch=0D
https://github.com/quicwg/base-drafts/pull/3646.diff=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3646=0D

----==_mimepart_5ebaab3d1ae1c_472c3fcc066cd95c253095
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>I keep thinking I've found the bottom of the barrel, so I'll just make=
 one more PR....  <g-emoji class=3D"g-emoji" alias=3D"wink" fallback-src=3D=
"https://github.githubassets.com/images/icons/emoji/unicode/1f609.png">=F0=
=9F=98=89</g-emoji></p>=0D
=0D
<hr>=0D
=0D
<h4>You can view, comment on, or merge this pull request online at:</h4>=0D=

<p>&nbsp;&nbsp;<a href=3D'https://github.com/quicwg/base-drafts/pull/3646=
'>https://github.com/quicwg/base-drafts/pull/3646</a></p>=0D
=0D
<h4>Commit Summary</h4>=0D
<ul>=0D
  <li>Another one</li>=0D
</ul>=0D
=0D
<h4>File Changes</h4>=0D
<ul>=0D
  <li>=0D
    <strong>M</strong>=0D
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3646/files#diff=
-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>=0D
    (1)=0D
  </li>=0D
</ul>=0D
=0D
<h4>Patch Links:</h4>=0D
<ul>=0D
  <li><a href=3D'https://github.com/quicwg/base-drafts/pull/3646.patch'>h=
ttps://github.com/quicwg/base-drafts/pull/3646.patch</a></li>=0D
  <li><a href=3D'https://github.com/quicwg/base-drafts/pull/3646.diff'>ht=
tps://github.com/quicwg/base-drafts/pull/3646.diff</a></li>=0D
</ul>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3646">view it on GitHub</a>, or <a href=3D"https://gi=
thub.com/notifications/unsubscribe-auth/AFTOJKZSG7N5DOM4SCYGJ2DRRFIT3ANCN=
FSM4M63FLHA">unsubscribe</a>.<img src=3D"https://github.com/notifications=
/beacon/AFTOJK5ENNC4UOAYFVJYSXLRRFIT3A5CNFSM4M63FLHKYY3PNVWWK3TUL52HS4DFU=
VEXG43VMWVGG33NNVSW45C7NFSM4JGBYOJQ.gif" height=3D"1" width=3D"1" alt=3D"=
" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3646",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3646",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=0D

----==_mimepart_5ebaab3d1ae1c_472c3fcc066cd95c253095--


From nobody Tue May 12 06:58:16 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 B7B233A0A88 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:58:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 zqh3NiNc_pyJ for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 06:58:02 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C8D193A0A24 for <quic-issues@ietf.org>; Tue, 12 May 2020 06:57:28 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 01E4CC602D3 for <quic-issues@ietf.org>; Tue, 12 May 2020 06:57:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589291848; bh=4jI/oW3m1pUX6uw/nkWEmY4AcPi1g4A5Wdrni8NHdHw=; h=Date:From:To:Subject:From; b=TIsm5Yaqq+tz083jmKujvrFYMfg8Ayl886CTpS83bcwmF2luev/6IqrgNyU5s1wcX 9yTIse950o9dJCcsZxggmLeshVbze2cinu30FpzSbwdbvx+f7eICncvl24JOPsHX+Y +ohxtYJYaoKbnzamnlPt+xJmWi/LQCbR7SMJDfK4=
Date: Tue, 12 May 2020 06:57:27 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/13d931-03af08@github.com>
Subject: [quicwg/base-drafts] 03af08: Script updating archive at 2020-05-12T13:57:05Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fB9FYaGu45HQhUnMWFy3dNaMR4A>
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: Tue, 12 May 2020 13:58:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 03af086f6cdb2959263ad92c940db62eef48d1b1
      https://github.com/quicwg/base-drafts/commit/03af086f6cdb2959263ad92c940db62eef48d1b1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-12T13:57:05Z. [ci skip]



From nobody Tue May 12 07:01:09 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 219253A09E5 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 07:01:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.724
X-Spam-Level: 
X-Spam-Status: No, score=-1.724 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 xYGNykSD4vox for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 07:01:05 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B352E3A0916 for <quic-issues@ietf.org>; Tue, 12 May 2020 07:01:05 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 43B676A1ECD for <quic-issues@ietf.org>; Tue, 12 May 2020 07:01:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589292064; bh=SOX74QbMO1tm6Te5t27D8uLdlzrblF/PrYt5btJxLKk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=obqPIwCCnOWaatLPai6FJZMkzo5yh7RuDLI5Sfld8SJZU6Ckw/fQR/g71oSynKARE /EANBLdbICcm3YfZHC2lXDArs3nVOO4MsLvQcOdL4ov+3mBVkXG1AQqEyUr5VS5qSc 9ZZdKGEKfa9X4hsjmfDe5fBlQ3MSiBRhrA7+FhF0=
Date: Tue, 12 May 2020 07:01:04 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZWLO7DYCUSHQHTVD54Y2GSBEVBNHHCGFYIAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/review/410072365@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebaac20344e2_12883fcff78cd9602605d3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CdinHlACdeZgQbIZudkFNQXEdjQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 14:01:07 -0000

----==_mimepart_5ebaac20344e2_12883fcff78cd9602605d3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke commented on this pull request.



> @@ -1069,6 +1069,15 @@ to cease using the connection IDs when requested can result in connection
 failures, as the issuing endpoint might be unable to continue using the
 connection IDs with the active connection.
 
+An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST
+NOT forget a connection ID without retiring it, though MAY choose to treat
+having too many connection IDs in need of retirement as a connection error of

done

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547#discussion_r423757308
----==_mimepart_5ebaac20344e2_12883fcff78cd9602605d3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinduke</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3547#discussion_r423757308">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1069,6 +1069,15 @@ to cease using the connection IDs when requested can result in connection
 failures, as the issuing endpoint might be unable to continue using the
 connection IDs with the active connection.
 
+An endpoint SHOULD limit the state it commits to retiring connection IDs using
+RETIRE_CONNECTION_ID by limiting the number of connection IDs that it tracks for
+retirement to at least twice the active_connection_id_limit. An endpoint MUST
+NOT forget a connection ID without retiring it, though MAY choose to treat
+having too many connection IDs in need of retirement as a connection error of
</pre>
<p>done</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3547#discussion_r423757308">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6ASRSTFIUXY3ZN5IDRRFJCBANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYFJUFGRSY62UAXLDLRRFJCBA5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBYTKLI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547#discussion_r423757308",
"url": "https://github.com/quicwg/base-drafts/pull/3547#discussion_r423757308",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebaac20344e2_12883fcff78cd9602605d3--


From nobody Tue May 12 07:08:52 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 BBF263A0A52 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 07:08:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 IQVQgoGfOXxY for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 07:08:49 -0700 (PDT)
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 8CEA83A0A03 for <quic-issues@ietf.org>; Tue, 12 May 2020 07:08:49 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 398F1282C6A for <quic-issues@ietf.org>; Tue, 12 May 2020 07:08:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589292528; bh=NoSbBdTrJb5iNChhCq0KjgwjxfMSM7hhvD6F0iySj64=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=I8oHHECqwzDCpruMntUOSJhSKCjjaBk1rEM3GMD6gY0H7jO3NIV/2J1Ep2xM5/t5S QDRo3ozSX+Tc9Dvd4mJ4Dz7PJ6XaRdH3WPkD/a/oILundPasJHu5ujO9mfc0S8kTjm NeT5B0qN+cPhuwfh4qQLBpFVekYJZPmVn2ZW2oJE=
Date: Tue, 12 May 2020 07:08:48 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/push/5059917086@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebaadf02b561_413a3fbd4cecd9684599c1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zrhHQxu7-c4kMGlEQOBXFm29yRI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 14:08:51 -0000

----==_mimepart_5ebaadf02b561_413a3fbd4cecd9684599c1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke pushed 1 commit.

47424338c35fc15cc7e022f8077887b45a7ade6c  ekr's suggestions


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547/files/442f5774a16899063d2f3fbae6c46802a6ec86b9..47424338c35fc15cc7e022f8077887b45a7ade6c

----==_mimepart_5ebaadf02b561_413a3fbd4cecd9684599c1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinduke" class="user-mention">@martinduke</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/47424338c35fc15cc7e022f8077887b45a7ade6c">4742433</a>  ekr&#39;s suggestions</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3547/files/442f5774a16899063d2f3fbae6c46802a6ec86b9..47424338c35fc15cc7e022f8077887b45a7ade6c">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYB2XAYOK6OKUPKIKDRRFJ7BANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZQW2P6SYUQT5ZFLRTRRFJ7BA5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4TINBQHA3DSNKQOVZWQIZVGA2TSOJRG4YDQNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547/files/442f5774a16899063d2f3fbae6c46802a6ec86b9..47424338c35fc15cc7e022f8077887b45a7ade6c",
"url": "https://github.com/quicwg/base-drafts/pull/3547/files/442f5774a16899063d2f3fbae6c46802a6ec86b9..47424338c35fc15cc7e022f8077887b45a7ade6c",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebaadf02b561_413a3fbd4cecd9684599c1--


From nobody Tue May 12 07:48:10 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 DB5B53A0ABE for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 07:48:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.634
X-Spam-Level: 
X-Spam-Status: No, score=-1.634 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, HTML_OBFUSCATE_10_20=0.093, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 UyzXqc2cfdr5 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 07:48:07 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A88873A0A99 for <quic-issues@ietf.org>; Tue, 12 May 2020 07:48:07 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 969B28C05A5 for <quic-issues@ietf.org>; Tue, 12 May 2020 07:48:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589294886; bh=bmqmv+Rr1Pyeek3xDSDbKBXSTsdSMseusOuBP9d9U2o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bQOjm2B4lauLleI53zCMfkiH7UdJ12mqTHu3Z2PQAo+1+fiRzIrehc/W257fwKOqG qRvf+qmdJXm5W+KkhhNzgtgeVkfUy26DA2Ts/NZCAHT/iZaircRCmXpwjru6vx3XeY F7ZGyhqWLchkPk9RXZJwk+PvsmAuogrQE5ZvqAAo=
Date: Tue, 12 May 2020 07:48:06 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6MMBTK6IY5DBZPL554Y2MCNEVBNHHCFNKKLA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3526/627392539@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3526@github.com>
References: <quicwg/base-drafts/issues/3526@github.com>
Subject: Re: [quicwg/base-drafts] QUIC PTO is too conservative, causing a measurable regression in tail latency (#3526)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebab72687859_66403f82930cd960106321"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6dHtgFRcplvJAkwV53eirrNKwK8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 14:48:09 -0000

----==_mimepart_5ebab72687859_66403f82930cd960106321
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The most recent set of experiments indicate that my above suggestion of arming for max(left_edge + SRTT+4*RTTVar, right_edge + 1.5*SRTT) is a very slight improvement for some metrics, but it looks to be in the noise for most metrics.

We did find SRTT+2*RTTVar is as good or better than SRTT+4*RTTVar for all application metrics, with a very small difference in retransmit rates(probably because PTO can send new data).

I'd be very curious to see what @mjoras finds in his testing, but I'm increasingly inclined to close this with no action.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3526#issuecomment-627392539
----==_mimepart_5ebab72687859_66403f82930cd960106321
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The most recent set of experiments indicate that my above suggestion of arming for max(left_edge + SRTT+4<em>RTTVar, right_edge + 1.5</em>SRTT) is a very slight improvement for some metrics, but it looks to be in the noise for most metrics.</p>
<p>We did find SRTT+2<em>RTTVar is as good or better than SRTT+4</em>RTTVar for all application metrics, with a very small difference in retransmit rates(probably because PTO can send new data).</p>
<p>I'd be very curious to see what <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/mjoras/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mjoras">@mjoras</a> finds in his testing, but I'm increasingly inclined to close this with no action.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3526#issuecomment-627392539">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZFEU2ZAVREDBP6MCDRRFOSNANCNFSM4LMHRHIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6LHXZJX6VVJWWWNE3RRFOSNA5CNFSM4LMHRHIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVSUAGY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment-627392539",
"url": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment-627392539",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebab72687859_66403f82930cd960106321--


From nobody Tue May 12 08:04:14 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 30BB83A0AEA for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 08:04:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.211
X-Spam-Level: 
X-Spam-Status: No, score=-1.211 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 3gnJbj_a4neH for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 08:04:12 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2E6CB3A0AE6 for <quic-issues@ietf.org>; Tue, 12 May 2020 08:04:12 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 715A18C10F5 for <quic-issues@ietf.org>; Tue, 12 May 2020 08:04:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589295851; bh=HIValxrnlQwRHERhpVS5x6ninlqxJ/yl8DPScKJfoxo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KUR9aNnjJ0/SjC2MQ/vQDglRRwYxG3g8Y7Z0FCdo8XDWPvwmZJb1YWeqaZ8DYstGS 4zOQ5SYwC2YVWXnb3ABXOIV83SWyt5o5O47suogcxwSW8XWANIyOt6+d4UxPvvfHzZ 7LEACO6p68tyZns2NByXqVFOCiUfGh3mPqnNnNlk=
Date: Tue, 12 May 2020 08:04:11 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZC5JR35AEFWVDMJHN4Y2N6XEVBNHHCJQODSM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3646/review/410137094@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3646@github.com>
References: <quicwg/base-drafts/pull/3646@github.com>
Subject: Re: [quicwg/base-drafts] Another diagram discrepancy (#3646)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebabaeb62c4f_61023f9632ccd960282568"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/f0R5tIsOujOSmBl8NBtJfZsl-o0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 15:04:13 -0000

----==_mimepart_5ebabaeb62c4f_61023f9632ccd960282568
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3646#pullrequestreview-410137094
----==_mimepart_5ebabaeb62c4f_61023f9632ccd960282568
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3646#pullrequestreview-410137094">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2FVZGFG6EQY3K4B7DRRFQOXANCNFSM4M63FLHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SOXLDRVR2Y5VWF4DRRFQOXA5CNFSM4M63FLHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBZDEBQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3646#pullrequestreview-410137094",
"url": "https://github.com/quicwg/base-drafts/pull/3646#pullrequestreview-410137094",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebabaeb62c4f_61023f9632ccd960282568--


From nobody Tue May 12 10:42:58 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 B72AD3A0816 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 10:42:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 50C3ufv4rC96 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 10:42:55 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 350D03A0841 for <quic-issues@ietf.org>; Tue, 12 May 2020 10:42:54 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 13BE15200AE for <quic-issues@ietf.org>; Tue, 12 May 2020 10:42:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589305374; bh=1nFrINsGcbCKfZrlrbc8PzPgm5S05VLYOiJFZGv6t9w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XzQ3B0SUGDWdm4UMDuBxh6+V68jBdJNUMUn/RJRhlV89+WOmDbSNjV7tcUaf29iy8 4MZMNLPuODDTfMqgqzl8Ln+EXMI/+uVDjJ1+IH5IUk0EjtSIot4fuEPRgdyRKLvclp bfPJCawPBM+NRIBCNL4auEHh2QGmAvXch/lWTbeE=
Date: Tue, 12 May 2020 10:42:54 -0700
From: Christian Huitema <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2BB43G3VMZKZQNYDV4Y3AR5EVBNHHCIEMPUI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3595/c627491836@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3595@github.com>
References: <quicwg/base-drafts/pull/3595@github.com>
Subject: Re: [quicwg/base-drafts] Prohibit TLS 1.3 middlebox compatibility mode (#3595)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebae01e4821_273a3fd8104cd95c1577c6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: huitema
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KoPJsHhzVmkf4jmP9NoyvAnjRTI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 17:42:57 -0000

----==_mimepart_5ebae01e4821_273a3fd8104cd95c1577c6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I observe that implementation of this PR is causing interop failures during tests. Some implementations have been updated, some have not been. I recently updated Picoquic to use the latest version of Picotls, and the results are mixed: Handshake with Quant and Quickly that were failing before the update are now succeeding; handshakes with Quiche that were succeeding are now failing. This is clearly a case of spec confusion, with some stacks rushing to test this PR and some sticking to the stated spec. How about clearing that confusion, updating the spec and releasing draft-28?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3595#issuecomment-627491836
----==_mimepart_5ebae01e4821_273a3fd8104cd95c1577c6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I observe that implementation of this PR is causing interop failures during tests. Some implementations have been updated, some have not been. I recently updated Picoquic to use the latest version of Picotls, and the results are mixed: Handshake with Quant and Quickly that were failing before the update are now succeeding; handshakes with Quiche that were succeeding are now failing. This is clearly a case of spec confusion, with some stacks rushing to test this PR and some sticking to the stated spec. How about clearing that confusion, updating the spec and releasing draft-28?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3595#issuecomment-627491836">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4LIZA4D3OPMSABMZDRRGDB5ANCNFSM4MOSTQXQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZHZGSHVSSE5L2IEHDRRGDB5A5CNFSM4MOSTQX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVTMH7A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3595#issuecomment-627491836",
"url": "https://github.com/quicwg/base-drafts/pull/3595#issuecomment-627491836",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebae01e4821_273a3fd8104cd95c1577c6--


From nobody Tue May 12 10:49:36 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 9106E3A085C for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 10:49:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 dtgU3qXB5858 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 10:49:33 -0700 (PDT)
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 3BCA83A0848 for <quic-issues@ietf.org>; Tue, 12 May 2020 10:49:26 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 78D67282933 for <quic-issues@ietf.org>; Tue, 12 May 2020 10:49:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589305765; bh=mhxxGJ0yJRpg233bFAPN8UP/ldJVCfoalFFW+7F/rZ4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zgyybVrAKekCCawKi+yGrvCRKml4ZI2pcs1fDGu4TX6k4RslN2xl8oWyNuhNmbG10 cDmsLfr+9fN9HLvL0xbqx8+DCoKZNk4f+MP9Mzsldd8b9ioyt4WUx3s3uMEV0h/Owu /xyj9ks9ccYJTSQ2CFx4oVrsbSvvmq/d62T+6f5U=
Date: Tue, 12 May 2020 10:49:25 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK52TKT5L5KRPFAEY354Y3BKLEVBNHHCIEMPUI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3595/c627495179@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3595@github.com>
References: <quicwg/base-drafts/pull/3595@github.com>
Subject: Re: [quicwg/base-drafts] Prohibit TLS 1.3 middlebox compatibility mode (#3595)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebae1a569404_4d4f3f7f70ecd96434486c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2y6CysE6nl02B1b7SoXZIkzBJww>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 17:49:35 -0000

----==_mimepart_5ebae1a569404_4d4f3f7f70ecd96434486c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@huitema that is the plan as soon as the chairs declare consensus.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3595#issuecomment-627495179
----==_mimepart_5ebae1a569404_4d4f3f7f70ecd96434486c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/huitema/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/huitema">@huitema</a> that is the plan as soon as the chairs declare consensus.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3595#issuecomment-627495179">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2EI76OL23WUFDEZLLRRGD2LANCNFSM4MOSTQXQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3P34GI27XSQMW7L5DRRGD2LA5CNFSM4MOSTQX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVTNCCY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3595#issuecomment-627495179",
"url": "https://github.com/quicwg/base-drafts/pull/3595#issuecomment-627495179",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebae1a569404_4d4f3f7f70ecd96434486c--


From nobody Tue May 12 11:49:46 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 8520C3A093E for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 11:49:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.178
X-Spam-Level: 
X-Spam-Status: No, score=-2.178 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 sNjmzbKMgJmG for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 11:49:43 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 856C53A093D for <quic-issues@ietf.org>; Tue, 12 May 2020 11:49:43 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 50BCF6A2031 for <quic-issues@ietf.org>; Tue, 12 May 2020 11:49:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589309382; bh=t1R+h9Qd8S+ryRVG2eDmZxD+6zXM3vb3anYSlMzgxyQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Y6jC6PEoIbATV8vBi3ouTP3wFFtr8MAqNTnezG+s+x3b6ru8VRznSdgbmkzRYxnxt Dx3Xx4pINMiQjt5icRqwMITZtweeUtMgogRbt1ojh8IoyJTbav1CoFyftFP9dYjAAK gYihs67/B4kGtWbhE3x9ibcsQ/9lWZuYbQYt2o7M=
Date: Tue, 12 May 2020 11:49:42 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3LRFUHDWWN2UXB7UV4Y3IMNEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/410327743@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebaefc641921_2c623f87640cd96c1491df"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/m3XpFnWIqG3Vp3JNfa_cTv1jbSM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 18:49:44 -0000

----==_mimepart_5ebaefc641921_2c623f87640cd96c1491df
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi approved this pull request.

Thanks for all the edits!



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-410327743
----==_mimepart_5ebaefc641921_2c623f87640cd96c1491df
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> approved this pull request.</p>

<p>Thanks for all the edits!</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-410327743">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5KGVHIMMN57ETR5LTRRGK4NANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4JBXQAQMAQVLJZYWTRRGK4NA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODB2RVPY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-410327743",
"url": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-410327743",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebaefc641921_2c623f87640cd96c1491df--


From nobody Tue May 12 15:07:16 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 2A6803A0C39 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:07:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 7yWoZhotXLa7 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:07:13 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CEFCB3A0C34 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:07:13 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 137FA8C00E2 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:07:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589321232; bh=LSGv2cGKECXKPOSgfx6jHaa8+2wtii4m45HjknfFZao=; h=Date:From:To:Subject:From; b=eQZUS0s8Kou8TJHOvcpj/KXPFAaIrRhHc7BZuWxzgnqLc25VjYpWTZkBj276wXaku 5gF1jPBSOMBbV2dfeNkProuOGo1cwIIbNccyytm3bYwErlPabXs+yJMtWlctwXspZv v8pKjVufM7/AxCVRt88ghDY+lUknL8oDeJ6zL69s=
Date: Tue, 12 May 2020 15:07:12 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/821dff-ee4343@github.com>
Subject: [quicwg/base-drafts] fc0342: Another one
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/omwKwIH1P4H83gGxfwb4WwV7JxM>
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: Tue, 12 May 2020 22:07:15 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: fc03421115f6786cda02b9d21dfd44264091ecde
      https://github.com/quicwg/base-drafts/commit/fc03421115f6786cda02b9d21dfd44264091ecde
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Another one


  Commit: ee4343f39007ed49c2bdd1829bb3190ebe08eea1
      https://github.com/quicwg/base-drafts/commit/ee4343f39007ed49c2bdd1829bb3190ebe08eea1
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3646 from quicwg/transport/another-one

Another diagram discrepancy


Compare: https://github.com/quicwg/base-drafts/compare/821dff86b0f2...ee4343f39007


From nobody Tue May 12 15:07:21 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 9198F3A0C34 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:07:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 z0DZ-6XgT8m4 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:07:14 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7590C3A0C38 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:07:14 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 5A66C9604FF for <quic-issues@ietf.org>; Tue, 12 May 2020 15:07:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589321233; bh=fSSC3LRjbjObb6Sc3cHG9mlmh5UKq3YSZpBh+WCTm7w=; h=Date:From:To:Subject:From; b=HUIq8cMyQiMlFTZqOH6Iy9Jgxptr0sh2MrYEYME3do4CFNEyJhZ9ue/908evppw+Y HGye7hDl+qVfnOOKaldpOsEs1kM9DI0YaYeFsVE4BwjnSMJ+6UHLgWsFxihZLXMeO+ FHRLlcfMxA5oYCFo8jaKeglLG4G+zicEtf03XW64=
Date: Tue, 12 May 2020 15:07:13 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/transport/another-one/fc0342-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/i_O8AoWiEpcZZHguPGKFEhbgYLg>
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: Tue, 12 May 2020 22:07:16 -0000

  Branch: refs/heads/transport/another-one
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 12 15:07:25 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 957B53A0C38 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:07:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 M9QsvQRx2jt7 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:07:23 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 23A873A0C34 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:07:23 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 0B56466041C for <quic-issues@ietf.org>; Tue, 12 May 2020 15:07:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589321242; bh=J4PknFKIj6jMRamJlGNc8VozCt8tg4j48TnPTyj95Cc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XIfChqD+7PY29gBMgomU58/9Jzy9BtwvlDwIUKN4+3gxCp9kum4u7D1wNNAi/f4Jr fodMH4xmL4Sl8HeFSghisfN+eFJaJPMTgOE3g8j5yNZela+nRzCZr5jyf6YvJllSpd hM5qFeN0dA4tA9bdLmS5+ruylyorb8EwGKb7LdrY=
Date: Tue, 12 May 2020 15:07:21 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5G3J6AQK74OODLFP54Y37RTEVBNHHCJQODSM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3646/issue_event/3329512184@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3646@github.com>
References: <quicwg/base-drafts/pull/3646@github.com>
Subject: Re: [quicwg/base-drafts] Another diagram discrepancy (#3646)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb1e19f0757_66693fe8112cd95c43422"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CdbgzKA1WGtfXiIhW-n4YK0dkUw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 22:07:25 -0000

----==_mimepart_5ebb1e19f0757_66693fe8112cd95c43422
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3646 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3646#event-3329512184
----==_mimepart_5ebb1e19f0757_66693fe8112cd95c43422
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="616678291" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3646" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3646/hovercard" href="https://github.com/quicwg/base-drafts/pull/3646">#3646</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3646#event-3329512184">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK34PBHUUFANFLCXGXTRRHCBTANCNFSM4M63FLHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY3CSG6S7YXOH5T6G3RRHCBTA5CNFSM4M63FLHKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYZ2FF6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3646#event-3329512184",
"url": "https://github.com/quicwg/base-drafts/pull/3646#event-3329512184",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb1e19f0757_66693fe8112cd95c43422--


From nobody Tue May 12 15:07:31 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 7E61B3A0C38 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:07:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 9QkECr1bzqCg for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:07:26 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3B04F3A0C3E for <quic-issues@ietf.org>; Tue, 12 May 2020 15:07:26 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 8CB678C0448 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:07:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589321245; bh=xH6gGL8CPwd8SUJpbFub115nuWpfwWx7YL+k6+gmQrc=; h=Date:From:To:Subject:From; b=IwXXV/fHMwqHwz6h12xIJ/UB5+6ygOKEkHryHMjddqJXhxRLLbBXDpJGCAceI2KGJ 6Y1zXZo/8beHV95x3G6mqvIBQGJZZKpk2INuPOTWgQ35T8tbENJHTvN3GoOH1M+hDw 4ABNnKTjchZGayPhPGUE2bPYBLPfBz3AxAK9T6E4=
Date: Tue, 12 May 2020 15:07:25 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/ee4343-bfc263@github.com>
Subject: [quicwg/base-drafts] 7c61e5: One more semicolon
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4DxJK5JbykOEdAOqM76Scyu8T5Q>
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: Tue, 12 May 2020 22:07:28 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7c61e509e4aa78475f3db55845d4082669dd8af6
      https://github.com/quicwg/base-drafts/commit/7c61e509e4aa78475f3db55845d4082669dd8af6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  One more semicolon


  Commit: bfc26350519a349fec1db57495fc9a9e9fa33eb7
      https://github.com/quicwg/base-drafts/commit/bfc26350519a349fec1db57495fc9a9e9fa33eb7
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3644 from quicwg/more-semicolon

One more semicolon


Compare: https://github.com/quicwg/base-drafts/compare/ee4343f39007...bfc26350519a


From nobody Tue May 12 15:07:38 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 E49C13A0C38 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:07:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 jz-qDhelx4O5 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:07:35 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CE4283A0C34 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:07:35 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 31361520CB7 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:07:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589321255; bh=E21jLYWCuy6xm68wntIXBfdXaTdUAKbQYRcZtLif1mM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Oun9r7sB6FpkKNLTEm70y++dpov74+hrPDk4s2AMuvCGVSNOhsCaXorjTN2t4DlG2 3m+TT02wbJfdeiSDjbNX+6IxMOLxW9tSUjpYuEE4jQCC/PuIFhippNBKx2Dw4tJjBA ijE/Jv+wjDqckWo8cuZdO3KTpPgu1JVawG9v4cBo=
Date: Tue, 12 May 2020 15:07:35 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ASEBX5BGI4VO26XN4Y37SPEVBNHHCJO7GZI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3644/issue_event/3329512687@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3644@github.com>
References: <quicwg/base-drafts/pull/3644@github.com>
Subject: Re: [quicwg/base-drafts] One more semicolon (#3644)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb1e2720f1f_4d343fde214cd9681145c4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/29dhsUhqiRPO2sXEFGuGjUwMi3s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 22:07:37 -0000

----==_mimepart_5ebb1e2720f1f_4d343fde214cd9681145c4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3644 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3644#event-3329512687
----==_mimepart_5ebb1e2720f1f_4d343fde214cd9681145c4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="616294090" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3644" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3644/hovercard" href="https://github.com/quicwg/base-drafts/pull/3644">#3644</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3644#event-3329512687">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7FFPYVBUFVIQKZWT3RRHCCPANCNFSM4M6MZWHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7DFGZZCK52LF5K2VLRRHCCPA5CNFSM4M6MZWHKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYZ2FJ3Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3644#event-3329512687",
"url": "https://github.com/quicwg/base-drafts/pull/3644#event-3329512687",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb1e2720f1f_4d343fde214cd9681145c4--


From nobody Tue May 12 15:08:03 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 776C83A0C3A for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:08:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.178
X-Spam-Level: 
X-Spam-Status: No, score=-2.178 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 vFZIyDfPqXBQ for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:08:00 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 10C293A0C38 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:08:00 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 04136E003E for <quic-issues@ietf.org>; Tue, 12 May 2020 15:07:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589321279; bh=N/pWUnsNXOrmzazaeAfS2uSEFhneeyoAtzs01igaxmY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SZXCELCg4U9jjv7KBl9Ql9iFNWZBXDBnJ05tnGmpNe1fA988hAwG4OlYTt/mGzsax hm/oIrt6SPvmEWhYmnhxpOOL0SQ0c7bQRvjsPeEpwLjMRgB9q85JQ3ulNapOOZsepc TM7IjbMcxPG58SN8NXDJ5wzos76YkOwdIQpqBRkc=
Date: Tue, 12 May 2020 15:07:58 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6GXNB3YYKMFCIWWTV4Y37T5EVBNHHCJFQILU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3633/627624500@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3633@github.com>
References: <quicwg/base-drafts/issues/3633@github.com>
Subject: Re: [quicwg/base-drafts] Minor editorical issue in QPACK draft (#3633)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb1e3ee7cea_5c363fe4746cd96c4657f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fCFgPWvyrTBI1Ve6pmGRwg5PHbA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 22:08:01 -0000

----==_mimepart_5ebb1e3ee7cea_5c363fe4746cd96c4657f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think some of the diagrams (2-4) were imported from HPACK and modified, but figure 1 is original to QPACK.  I agree we should make it consistent.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3633#issuecomment-627624500
----==_mimepart_5ebb1e3ee7cea_5c363fe4746cd96c4657f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I think some of the diagrams (2-4) were imported from HPACK and modified, but figure 1 is original to QPACK.  I agree we should make it consistent.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3633#issuecomment-627624500">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5QDQVNL5LHLDAPDE3RRHCD5ANCNFSM4M3BSWTA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYFMGPNFHZ3CK23JYDRRHCD5A5CNFSM4M3BSWTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVUMUNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3633#issuecomment-627624500",
"url": "https://github.com/quicwg/base-drafts/issues/3633#issuecomment-627624500",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb1e3ee7cea_5c363fe4746cd96c4657f--


From nobody Tue May 12 15:08:08 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 5CC133A0C38 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:08:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 DwW4zr7emMaT for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:08:05 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CB3B23A0C42 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:08:04 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 39E5F2C0E7B for <quic-issues@ietf.org>; Tue, 12 May 2020 15:08:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589321283; bh=XyXAUTYx7q76EFCJkQJNeGE5eSo2pGqy4Papwyc37EQ=; h=Date:From:To:Subject:From; b=umTkd6rphsNfb9iCRhkJZXJWiJgQzxVk8412JMuKIdttrQOwK7iR41hfYaPNM3b1a fQDehx8PP4zzJIAsqVkOS16Pvue5LhtXyCOxMU5/FXKS+Xdh4piwvKf9G2pyC7phN6 yhHVg/rpO/07vGPFwSIbdGzHsngZldLfG+lWeGdw=
Date: Tue, 12 May 2020 15:08:03 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/03af08-28d53a@github.com>
Subject: [quicwg/base-drafts] 28d53a: Script updating gh-pages from ee4343f3. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_3hd7seVnjvaXjPX_iI_0aj6_y4>
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: Tue, 12 May 2020 22:08:07 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 28d53a0ecaf502f991feaf04a5658ecfa442efb9
      https://github.com/quicwg/base-drafts/commit/28d53a0ecaf502f991feaf04a5658ecfa442efb9
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from ee4343f3. [ci skip]



From nobody Tue May 12 15:08:16 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 1DEB83A0C34 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:08:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 AyvWqkQdycTE for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:08:14 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1C2283A0C38 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:08:14 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 907871204FF for <quic-issues@ietf.org>; Tue, 12 May 2020 15:08:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589321293; bh=mRIimS824qtxv0OclwghHH3KAlldl7+cC2VSduRXqS4=; h=Date:From:To:Subject:From; b=rYkc3LnWPclcvvJlPuykZ2UCDQxS3atcnw1XoYYuV38OvDb1OEqWDsW+lb2gDPVJ1 bKe36YaQT/nxMdThdkMQmcWthf5obk3HxSJT2q57eVuPu83cnwvoc26q2nIQ/9zT9d iokeWLroWF5ISL2H6JaOcn/u81up2JZtIT5eZt1k=
Date: Tue, 12 May 2020 15:08:13 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/28d53a-0315cc@github.com>
Subject: [quicwg/base-drafts] 0315cc: Script updating archive at 2020-05-12T22:07:54Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/P3_53xczblZFP4DNH895puIO4-c>
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: Tue, 12 May 2020 22:08:15 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0315ccc7b583cb6dd93dcbd6fcc28bfd6a2202ce
      https://github.com/quicwg/base-drafts/commit/0315ccc7b583cb6dd93dcbd6fcc28bfd6a2202ce
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-12T22:07:54Z. [ci skip]



From nobody Tue May 12 15:08:41 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 06AC73A0C3A for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:08:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 jUeA8J6RboiZ for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:08:39 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E54E53A0C38 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:08:38 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 5B16B6E0029 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:08:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589321317; bh=bJydLTQLP97Np+DYlvDiAY0tmkbb8C1HrTG+OfCG6mk=; h=Date:From:To:Subject:From; b=tYVnyMRKLQbdvGsoA/ux7yeven/6uIrh1UXyYsBIFpWaNdUBMozcPh8JVOeNicDMW Ix9JoCI0X3rrMrNlKlWfcJlBbXtjlJL3/NETmascmHMxzADDA1NKz1KNPZTscFec2T qGOYbmRURj/MvtkxOI21plXwic1nTNoHxMvPh/6E=
Date: Tue, 12 May 2020 15:08:37 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0315cc-9c0e01@github.com>
Subject: [quicwg/base-drafts] 9c0e01: Script updating gh-pages from bfc26350. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3TJcPjyuIyctsnQhHSA7lXN3hlc>
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: Tue, 12 May 2020 22:08:40 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9c0e016e5388f74c6c82a11b7be4e2d4ad40c807
      https://github.com/quicwg/base-drafts/commit/9c0e016e5388f74c6c82a11b7be4e2d4ad40c807
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from bfc26350. [ci skip]



From nobody Tue May 12 15:18:13 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 9BCCE3A0C5A for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:18:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 v2jcHBGbmfGz for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:18:11 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 199993A0C5F for <quic-issues@ietf.org>; Tue, 12 May 2020 15:17:47 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id BD62412124C for <quic-issues@ietf.org>; Tue, 12 May 2020 15:17:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589321866; bh=NmioVvPNXK9sVpUJNbYMehnMEwX8yqLgu93R0OLFUKA=; h=Date:From:To:Subject:From; b=VDB2YPfEbZEmsfelE/av+YCMl0Sl59WfGYL2789XphFrL/mYLbAv0fgKckmoMvZhb ig1e9ikP0FgczpeI5Rt3s+8+QyrOQvyoqdbacYZt5nrcWWFMzIQej5ntMSSLdUh1q4 2x3mgengArb3FMj9j/1uaArbI32ppEnzPmQKhh4s=
Date: Tue, 12 May 2020 15:17:46 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/more-semicolon/7c61e5-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FfOtwsJqDlsZY-KAoePn11MI8yk>
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: Tue, 12 May 2020 22:18:13 -0000

  Branch: refs/heads/more-semicolon
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 12 15:18:19 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 C42713A0C3C for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:18:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.178
X-Spam-Level: 
X-Spam-Status: No, score=-2.178 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 MhrUtKT1pXEL for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:18:11 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2AA993A0C3B for <quic-issues@ietf.org>; Tue, 12 May 2020 15:17:57 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id E09B16A032A for <quic-issues@ietf.org>; Tue, 12 May 2020 15:17:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589321875; bh=axNVTqQXcVl+cibwPm0ozL5YsZPK1WyhBlq8Kf2+EJ4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=x7vxkCXHlTCrh4A7cc87fsrMuVURm41QegHO7kNz+JidT7P6tVQz0zerOW7toF/uz To2sfEdr2QmygiVakA5PCkzldJ4S7Et1fcVI+GD+i54Y+5RXweGBvWWeEogCQ5Rays 8olLorrqRc3HMn1py518jSfdFXXEqTBPy3b7uJBU=
Date: Tue, 12 May 2020 15:17:55 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3HYVDITVQJGLB7AMN4Y4AZHEVBNHHCJKIRDE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3638/627628371@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3638@github.com>
References: <quicwg/base-drafts/issues/3638@github.com>
Subject: Re: [quicwg/base-drafts] max_udp_payload_size during the handshake (#3638)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb2093d01b3_7bbf3ff7d4ccd95c1264f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UpKQCDXzvztd-p5rUzLJPgTO1es>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 22:18:14 -0000

----==_mimepart_5ebb2093d01b3_7bbf3ff7d4ccd95c1264f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree with @martinthomson : I'm happy with clarifying that this will look like an MTU issue.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3638#issuecomment-627628371
----==_mimepart_5ebb2093d01b3_7bbf3ff7d4ccd95c1264f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I agree with <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> : I'm happy with clarifying that this will look like an MTU issue.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3638#issuecomment-627628371">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK42DYAZ7YKKKA4N2STRRHDJHANCNFSM4M4SN3PA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7M55WGNUTWOZP6WXTRRHDJHA5CNFSM4M4SN3PKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVUNSUY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3638#issuecomment-627628371",
"url": "https://github.com/quicwg/base-drafts/issues/3638#issuecomment-627628371",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb2093d01b3_7bbf3ff7d4ccd95c1264f--


From nobody Tue May 12 15:19:28 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 52D463A0C58 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:19:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 EXYIwTPfbOdp for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:19:24 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B7C1E3A0C3C for <quic-issues@ietf.org>; Tue, 12 May 2020 15:19:24 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 045D4521F26 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:19:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589321964; bh=NHi3LAZF0rF/aogzgtbObOgki23AtlE/pY4XuKLdtUU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jDy/is52Ew+nZO7tnOkpM2xyuADAETrkAZ/eMSSmWucHGH/SsChbBvkOMyjuNwP3s 1gsxXify9TVFpUmn2GVzCYOKKqs2vfzwtyshOMTj9l8MysLhYo4k8PD6NwbHqduUpr jeRs6GyMBT3oDqWG59Ms4nzxHyKpxn3f0CtE2Rmg=
Date: Tue, 12 May 2020 15:19:23 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3FNJ6C75RL4ODA5A54Y4A6XEVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/review/410463031@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb20ebe84ae_66823fe8112cd95c1173ca"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/x6Dj6Nj63MlgaG50Mc7iFrY4HgQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 22:19:26 -0000

----==_mimepart_5ebb20ebe84ae_66823fe8112cd95c1173ca
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +will stay within the limit.  An endpoint that receives more connection IDs than
+its advertised active_connection_id_limit MUST close the connection with an
+error of type CONNECTION_ID_LIMIT_ERROR.

Ahh, good.  But not quite.  You have to subtract any retired connection IDs from that.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643#discussion_r424066470
----==_mimepart_5ebb20ebe84ae_66823fe8112cd95c1173ca
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3643#discussion_r424066470">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +will stay within the limit.  An endpoint that receives more connection IDs than
+its advertised active_connection_id_limit MUST close the connection with an
+error of type CONNECTION_ID_LIMIT_ERROR.
</pre>
<p>Ahh, good.  But not quite.  You have to subtract any retired connection IDs from that.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3643#discussion_r424066470">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5A7SCTAGIC4H7ODRDRRHDOXANCNFSM4M6L6D2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYRAIRNOOW45MYTHNLRRHDOXA5CNFSM4M6L6D2KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODB3SWNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3643#discussion_r424066470",
"url": "https://github.com/quicwg/base-drafts/pull/3643#discussion_r424066470",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb20ebe84ae_66823fe8112cd95c1173ca--


From nobody Tue May 12 15:19:35 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 36BEB3A0C5C for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:19:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.652
X-Spam-Level: 
X-Spam-Status: No, score=-1.652 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 lFbzv-Kz1mII for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:19:31 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 29AD23A0C3C for <quic-issues@ietf.org>; Tue, 12 May 2020 15:19:31 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 7554F1C0C4B for <quic-issues@ietf.org>; Tue, 12 May 2020 15:19:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589321970; bh=34bEVm7JypBU+E0D0aVUq6E+qu5VqFpNtu5lRE54SoE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DhjSZlrYZTkgMfX4zkB8ztPSzGD1eosRLlc+QrhLMoRfocok0faw6S1Whuz3DlTkw ijtSg2TR3+rlNHl43/gvzD9FsbR6qRzGNSqE/+rAoiPuUxJmmimMJt9WugCMYs01Fj w2qhkUeEqx6+WWDep4r3t9f7Q9d5dhf8LUVmSwjQ=
Date: Tue, 12 May 2020 15:19:30 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3HJMPA5EECVRCAYA54Y4A7FEVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/410445521@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb20f266388_1f513f84d8acd9641406fd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BXSjZATKHa5MFbuALLH_3MP0ut4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 22:19:33 -0000

----==_mimepart_5ebb20f266388_1f513f84d8acd9641406fd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.

I think the new MUST could be adjusted to be less confusing.

> @@ -1084,9 +1084,10 @@ Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
 be used again and requests that the peer replace it with a new connection ID
 using a NEW_CONNECTION_ID frame.
 
-As discussed in {{migration-linkability}}, endpoints limit the use of a
-connection ID to a single network path where possible. Endpoints SHOULD retire
-connection IDs when no longer actively using the network path on which the
+As discussed in {{migration-linkability}}, endpoints MUST limit the use of a

There's an exception to this MUST down below that's fairly clear about it's purpose.  Given that, this new MUST seems contradictory unless some caveats are added?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-410445521
----==_mimepart_5ebb20f266388_1f513f84d8acd9641406fd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<p>I think the new MUST could be adjusted to be less confusing.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r424052172">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1084,9 +1084,10 @@ Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
 be used again and requests that the peer replace it with a new connection ID
 using a NEW_CONNECTION_ID frame.
 
-As discussed in {{migration-linkability}}, endpoints limit the use of a
-connection ID to a single network path where possible. Endpoints SHOULD retire
-connection IDs when no longer actively using the network path on which the
+As discussed in {{migration-linkability}}, endpoints MUST limit the use of a
</pre>
<p>There's an exception to this MUST down below that's fairly clear about it's purpose.  Given that, this new MUST seems contradictory unless some caveats are added?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-410445521">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4FJDARPOJ76CW7ED3RRHDPFANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7R53ARECI2DNWWMALRRHDPFA5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODB3ONUI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-410445521",
"url": "https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-410445521",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb20f266388_1f513f84d8acd9641406fd--


From nobody Tue May 12 15:22:48 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 7D35E3A0C58 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:22:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 LhVJ_QorXJG0 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:22:46 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 536183A0C45 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:22:46 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 7E96AC61206 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:22:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589322165; bh=SURM1DgWdnwQg62EkNkQSI3ZOvk3g8NQ9xCwuGYPB1Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tmrsGn1BNQr8uhPpFuJyu1G4o0DRUsu+DuwsYYFhn1J6KEHFE4XQ6NZ7a2JZTfDvV rNL1tC1guTxFWQClcMYwqodvGNaQs0Q+wGbEJls4V7GXBuxsowtpHuZkA91OMqVpaG VC3T0CBS7VZ2r9D2ZxfeRDupuVVjCIp8P4dSzISU=
Date: Tue, 12 May 2020 15:22:45 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6XGJ4LLMNSM6SLE3N4Y4BLLEVBNHHCIEMPUI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3595/c627630283@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3595@github.com>
References: <quicwg/base-drafts/pull/3595@github.com>
Subject: Re: [quicwg/base-drafts] Prohibit TLS 1.3 middlebox compatibility mode (#3595)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb21b56e47d_1f723f84d8acd96410980"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qB0WlFLf4Y12OTA1U34FHm_Oqnk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 22:22:47 -0000

----==_mimepart_5ebb21b56e47d_1f723f84d8acd96410980
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Yep. The consensus call for this ends tomorrow and there seems to be no push back so far...

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3595#issuecomment-627630283
----==_mimepart_5ebb21b56e47d_1f723f84d8acd96410980
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Yep. The consensus call for this ends tomorrow and there seems to be no push back so far...</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3595#issuecomment-627630283">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4AXHYLEE46QJED35DRRHD3LANCNFSM4MOSTQXQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SR37TA72OUCOQGSDRRHD3LA5CNFSM4MOSTQX2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVUOBSY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3595#issuecomment-627630283",
"url": "https://github.com/quicwg/base-drafts/pull/3595#issuecomment-627630283",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb21b56e47d_1f723f84d8acd96410980--


From nobody Tue May 12 15:30:47 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 DBD6C3A0C5C for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:30:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 ZfnEsvRDv5P3 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:30:39 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 92A343A0C45 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:30:39 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 23578282C52 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:30:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589322638; bh=O71KvTrTWNJBe9mgUyEGU79ofJs+o0WAUquaPHh9g7I=; h=Date:From:To:Subject:From; b=l8LrNwFFET6atpAKvCu3xfrGwFve4zyFhrOHDvu7eKtvWcanKghC6HbcUsHe7yduG wmlKttNJ9ANT4VqLDVKqIULZJ16RpSysDCJh/BZytkeA4RWZvUSlfeOE9axh9Q0lAs a5FYPBCwwPI+evADqk2jL898JPDjqAIpbHebAcIE=
Date: Tue, 12 May 2020 15:30:38 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/period-rttvar/000000-3ea9d0@github.com>
Subject: [quicwg/base-drafts] 3ea9d0: Restore missing period on rttvar definition
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AEZ7nmpiV5VTDhp-1dhtW6qDaZs>
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: Tue, 12 May 2020 22:30:46 -0000

  Branch: refs/heads/period-rttvar
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3ea9d07054dd5e39c247bca0505dd34c188afbea
      https://github.com/quicwg/base-drafts/commit/3ea9d07054dd5e39c247bca0505dd34c188afbea
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Restore missing period on rttvar definition



From nobody Tue May 12 15:31:20 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 874DC3A0C5C for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:31:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.723
X-Spam-Level: 
X-Spam-Status: No, score=-1.723 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 WoAltaCs9ccO for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:31:17 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C3D9E3A0C45 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:31:17 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id EE7376E0327 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:31:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589322676; bh=BJiM7UZskivQAcEt9kgs6jZvbn+nTyy8184amov+YUM=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Pnd+SSWukHE5JfsLs18OPYi6hb5hkQKKH90olFdRMoUVsftYmiQVLukFCYDTGheBC BjMYDUd750zjZiJAWNO/x/880rCKLGMZF6OUDYU0xQ3KOQekQWqoPDHkoIerBEbbMe H88hBSTAT+wbkzZWJJTQavfqywrOdAMY0iSO1750=
Date: Tue, 12 May 2020 15:31:16 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK26NMWUZW4JEEEORYF4Y4CLJEVBNHHCJRWBCA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3647@github.com>
Subject: [quicwg/base-drafts] Restore missing period on rttvar definition (#3647)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb23b4df57c_619b3fa49aacd964950cc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2e2JUk5R-K2_vh-6HH6EnabZXAA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 22:31:20 -0000

----==_mimepart_5ebb23b4df57c_619b3fa49aacd964950cc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3647

-- Commit Summary --

  * Restore missing period on rttvar definition

-- File Changes --

    M draft-ietf-quic-recovery.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3647.patch
https://github.com/quicwg/base-drafts/pull/3647.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3647

----==_mimepart_5ebb23b4df57c_619b3fa49aacd964950cc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3647'>https://github.com/quicwg/base-drafts/pull/3647</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Restore missing period on rttvar definition</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3647/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3647.patch'>https://github.com/quicwg/base-drafts/pull/3647.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3647.diff'>https://github.com/quicwg/base-drafts/pull/3647.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3647">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYK6SYBL7REB2FFLHDRRHE3JANCNFSM4M7HFJOA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5CUUYA2CTDVOB2KLTRRHE3JA5CNFSM4M7HFJOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JGGYEIA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3647",
"url": "https://github.com/quicwg/base-drafts/pull/3647",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebb23b4df57c_619b3fa49aacd964950cc--


From nobody Tue May 12 15:31: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 96A893A0C61 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:31:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 t0WJc-vWLFId for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:31:53 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5F25A3A0C5C for <quic-issues@ietf.org>; Tue, 12 May 2020 15:31:53 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 88EBE6E0912 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:31:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589322712; bh=KWE2M4ohg/I6zhVHZrMjvcvZYkI6N5S0PhR59A80hjk=; h=Date:From:To:Subject:From; b=tlm6/Ks4OTb7L4xvwOspBHiMm9CCWSVYu4Dr7qTnqoo8JhJPQZAJv/wxR6dAmefbq ZkqTpELwFa6Ei6lBcZynbNYLjz3ojXS3quHGWPzx20LalWRpdBNnQtx8bhxtw/pKwM kiLeMIM4V7YE5e37+zXCo+jntnAD96HIKKM9Wm6Q=
Date: Tue, 12 May 2020 15:31:52 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/9c0e01-8b9180@github.com>
Subject: [quicwg/base-drafts] 8b9180: Script updating gh-pages from 3ea9d070. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KY2XrnzXKiwazQae8Rs8TC-BbC8>
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: Tue, 12 May 2020 22:31:55 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8b918031d46ad22ec333398275091dd95ef9a3e1
      https://github.com/quicwg/base-drafts/commit/8b918031d46ad22ec333398275091dd95ef9a3e1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M index.html
    A period-rttvar/draft-ietf-quic-http.html
    A period-rttvar/draft-ietf-quic-http.txt
    A period-rttvar/draft-ietf-quic-invariants.html
    A period-rttvar/draft-ietf-quic-invariants.txt
    A period-rttvar/draft-ietf-quic-qpack.html
    A period-rttvar/draft-ietf-quic-qpack.txt
    A period-rttvar/draft-ietf-quic-recovery.html
    A period-rttvar/draft-ietf-quic-recovery.txt
    A period-rttvar/draft-ietf-quic-tls.html
    A period-rttvar/draft-ietf-quic-tls.txt
    A period-rttvar/draft-ietf-quic-transport.html
    A period-rttvar/draft-ietf-quic-transport.txt
    A period-rttvar/index.html

  Log Message:
  -----------
  Script updating gh-pages from 3ea9d070. [ci skip]



From nobody Tue May 12 15:47:46 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 707673A09F4 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:47:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 lb1ID9pTRFLI for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:47:44 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 583753A09CA for <quic-issues@ietf.org>; Tue, 12 May 2020 15:47:44 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 6C8F82C0CAA for <quic-issues@ietf.org>; Tue, 12 May 2020 15:47:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589323663; bh=W12VwLRUQKWMR/NGW68duRhrCs2IVedE7ptetX77YPY=; h=Date:From:To:Subject:From; b=FajevNUSrbLNEnLLLm4nxLWNFaJb4b3rvCpbT+/ecRoaXitqxkpjFa9oK9neyYWHL wJfE0iQAUFETx1kTi/P0lYHEuOp+rllLq4wnWzUtZjvtGmDE9mP98J7WOFbS8HS7nb opAEJDoj57mfenQoBw6FfalNxOoZ2R1B3KUlWd84=
Date: Tue, 12 May 2020 15:47:43 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-thanks/000000-3b8ce7@github.com>
Subject: [quicwg/base-drafts] 3b8ce7: QPACK acknowledgements
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JblWiNQVID5ERHtxNsXwUkonCwg>
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: Tue, 12 May 2020 22:47:45 -0000

  Branch: refs/heads/qpack-thanks
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3b8ce70ea6bafeed0d700ee8d9c95d34186c24ea
      https://github.com/quicwg/base-drafts/commit/3b8ce70ea6bafeed0d700ee8d9c95d34186c24ea
  Author: Alan Frindell <afrind@fb.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  QPACK acknowledgements

First take - please me know if I missed someone who made a meaningful contribution.

Fixes #3278



From nobody Tue May 12 15:48:10 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 282DD3A0C68 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:48:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.654
X-Spam-Level: 
X-Spam-Status: No, score=-1.654 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 tUbbuHERfeiN for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:48:06 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 76D983A09CA for <quic-issues@ietf.org>; Tue, 12 May 2020 15:48:06 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 931162C20FF for <quic-issues@ietf.org>; Tue, 12 May 2020 15:48:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589323685; bh=ViexX59aIQadFVS+UVzCRxok2VdgJNGHsjW+OplL5Hk=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=osDrn+1Z2OmfsK1D0GXtDnE5NrLlekaM1ODJLiO+KaDgk+ifxPc/+TnbMkITGg0eX VIIALe7+UX7v/CoiD8UXeeaMj2H5MxBafTE5/B9d0QMJKXzSqJYYEn0AFAgtSLPZW5 gUcnqYV5cLxMIB6IjDmb7tnDmTtVxHgJQcvg4vug=
Date: Tue, 12 May 2020 15:48:05 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK36AMFSB4UYGD5Z5P54Y4EKLEVBNHHCJRXALY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3648@github.com>
Subject: [quicwg/base-drafts] QPACK acknowledgements (#3648)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb27a58139d_66813fdd472cd968105871"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6txNA6ESwtEsiXXTuc0AeRc196I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 22:48:08 -0000

----==_mimepart_5ebb27a58139d_66813fdd472cd968105871
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

First take - please me know if I missed someone who made a meaningful contribution.

Fixes #3278
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3648

-- Commit Summary --

  * QPACK acknowledgements

-- File Changes --

    M draft-ietf-quic-qpack.md (31)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3648.patch
https://github.com/quicwg/base-drafts/pull/3648.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3648

----==_mimepart_5ebb27a58139d_66813fdd472cd968105871
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>First take - please me know if I missed someone who made a meaningful contribution.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3278.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="529666827" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3278" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3278/hovercard" href="https://github.com/quicwg/base-drafts/issues/3278">#3278</a></p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3648'>https://github.com/quicwg/base-drafts/pull/3648</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>QPACK acknowledgements</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3648/files#diff-c3ed24528f71fade042cdefbeadbd7b9">draft-ietf-quic-qpack.md</a>
    (31)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3648.patch'>https://github.com/quicwg/base-drafts/pull/3648.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3648.diff'>https://github.com/quicwg/base-drafts/pull/3648.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3648">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZT6M4HG25O3DJOZJTRRHG2LANCNFSM4M7HN7ZA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3GSS2OTAHHBFSLDULRRHG2LA5CNFSM4M7HN7ZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JGG4BPA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3648",
"url": "https://github.com/quicwg/base-drafts/pull/3648",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebb27a58139d_66813fdd472cd968105871--


From nobody Tue May 12 15:48:35 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 0DF293A0C68 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:48:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 UNSogwmJTlsN for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:48:33 -0700 (PDT)
Received: from out-15.smtp.github.com (out-15.smtp.github.com [192.30.254.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F32E13A09F4 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:48:32 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 844B1261739 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:48:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589323712; bh=/BNYNWE8BVFRjcY2dUa1iPRIRemKXwOk6X8J0vQ3C0A=; h=Date:From:To:Subject:From; b=qgxJ3PyLImjAxqam/7iOv77AA6vpVU+NXXSm/8nk2B6fW+y3kN3R2thy4vqns6Dlq yB1HXKpWklEFT67muV+3j3cd5fAHDp/5kJTNJCILzWgb5/EoTj/oFAQF4i/lYblOMc jkhlTJ+cLwUcBnlNab6hRiD4c5Mccdq+Ia1bbmmg=
Date: Tue, 12 May 2020 15:48:32 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8b9180-09a32f@github.com>
Subject: [quicwg/base-drafts] 09a32f: Script updating gh-pages from 3b8ce70e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tVdipyXaBWGXClxUY5MQmxQ4lYw>
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: Tue, 12 May 2020 22:48:34 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 09a32f6832223348dec8d5765fbfed16603e9f47
      https://github.com/quicwg/base-drafts/commit/09a32f6832223348dec8d5765fbfed16603e9f47
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M index.html
    A qpack-thanks/draft-ietf-quic-http.html
    A qpack-thanks/draft-ietf-quic-http.txt
    A qpack-thanks/draft-ietf-quic-invariants.html
    A qpack-thanks/draft-ietf-quic-invariants.txt
    A qpack-thanks/draft-ietf-quic-qpack.html
    A qpack-thanks/draft-ietf-quic-qpack.txt
    A qpack-thanks/draft-ietf-quic-recovery.html
    A qpack-thanks/draft-ietf-quic-recovery.txt
    A qpack-thanks/draft-ietf-quic-tls.html
    A qpack-thanks/draft-ietf-quic-tls.txt
    A qpack-thanks/draft-ietf-quic-transport.html
    A qpack-thanks/draft-ietf-quic-transport.txt
    A qpack-thanks/index.html

  Log Message:
  -----------
  Script updating gh-pages from 3b8ce70e. [ci skip]



From nobody Tue May 12 15:51:25 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 6C9BF3A0C6E for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:51:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.652
X-Spam-Level: 
X-Spam-Status: No, score=-1.652 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 yD_KJ-E-VDhj for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:51:22 -0700 (PDT)
Received: from out-13.smtp.github.com (out-13.smtp.github.com [192.30.254.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 304BA3A0C6C for <quic-issues@ietf.org>; Tue, 12 May 2020 15:51:22 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id B4F09260197 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:51:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589323881; bh=xznUBFZ4t9d3/frA4BBQ5u2XhHW3H0/qPrJ+o35yFgU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CHbUt1+paahtCVCMS2JM8rCC4W54xog2Or2BIyp3h3JzdIyrmBndLRMHd3W/OKMA/ Y3VEG6ZiEDrtFjegN7WeIigkRxhn+eWOS/H4MfiwUsnYJjl3Qj8f/vugsC9fk/dnNn M1Z59Me3z5YpPj1am40XYriwgNHMy1PBQvvQsL0g=
Date: Tue, 12 May 2020 15:51:21 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7YBA7UR4BOWU6OSRF4Y4EWTEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/review/410477097@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb28696f1bc_26a23f8f0eecd95c11787d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ymemSHxEFAq5-OBTV1SE0xtUGIA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 22:51:23 -0000

----==_mimepart_5ebb28696f1bc_26a23f8f0eecd95c11787d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -897,9 +897,29 @@ congestion window, which is recommended to be the minimum of
 max_datagram_size is the current maximum size of a datagram for the connection,
 not including UDP or IP overhead.
 
-As an example of a well-known and publicly available implementation of a flow
-pacer, implementers are referred to the Fair Queue packet scheduler (fq qdisc)
-in Linux (3.11 onwards).
+Endpoints can implement pacing as they choose, as long as the rate of bytes
+sent over any interval, `t[n] - t[m]`, does not exceed a small multiple, `N`,
+of maximum value of the congestion window, `congestion_window`, averaged over
+the round trip time estimate, `smoothed_rtt`. Allowing for bursts produces the
+following relation for the total number of bytes sent over any interval:
+
+~~~
+sent@t[n] - sent@t[m]

```suggestion
number of bytes sent between t[m] and t[n]
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-410477097
----==_mimepart_5ebb28696f1bc_26a23f8f0eecd95c11787d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3630#discussi=
on_r424078083">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -897,9 +897,29 @@ congestion window, wh=
ich is recommended to be the minimum of=0D
 max_datagram_size is the current maximum size of a datagram for the conn=
ection,=0D
 not including UDP or IP overhead.=0D
 =0D
-As an example of a well-known and publicly available implementation of a=
 flow=0D
-pacer, implementers are referred to the Fair Queue packet scheduler (fq =
qdisc)=0D
-in Linux (3.11 onwards).=0D
+Endpoints can implement pacing as they choose, as long as the rate of by=
tes=0D
+sent over any interval, `t[n] - t[m]`, does not exceed a small multiple,=
 `N`,=0D
+of maximum value of the congestion window, `congestion_window`, averaged=
 over=0D
+the round trip time estimate, `smoothed_rtt`. Allowing for bursts produc=
es the=0D
+following relation for the total number of bytes sent over any interval:=
=0D
+=0D
+~~~=0D
+sent@t[n] - sent@t[m]=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-sent@t[n] - sent@t[m]=0D
+number of bytes sent between t[m] and t[n]=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3630#pullrequestreview-410477097">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KZLJCNDYJWQATONWMDRRHHGTANCNFSM4M2ELDDA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK2OOXITQBG6AJVKUEDRRHHGTA5CNFSM4=
M2ELDDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODB3WEKI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestrev=
iew-410477097",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview=
-410477097",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebb28696f1bc_26a23f8f0eecd95c11787d--


From nobody Tue May 12 15:55:04 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 844D63A0C7A for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:55:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 SZw4JlWa2xmc for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:55:00 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7A6853A0C73 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:55:00 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 0486F121273 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:55:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589324100; bh=BbKPsZQxPO5zNbQDQvzxNVTzJCrmOKNy/rVM2katd0k=; h=Date:From:To:Subject:From; b=q3ncYET5UJsJnT5KsM1Izu/VIUwMayeZPNIVclKX0tFTczEmY4xdg4dYomhvp3ijG H7l32SyK4iGA/GI3VRPqCxftzspd8HGSciIa8vY8cAGWqstFhZa9GAsWGZwo7qa3GB hNi9/+7ztScJ/B+1fYM8s0ge6Q9EZ07PLBwYccrE=
Date: Tue, 12 May 2020 15:54:59 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/bfc263-b3a870@github.com>
Subject: [quicwg/base-drafts] 3ea9d0: Restore missing period on rttvar definition
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HaiMMiUSC1R6FkBv4eBaY66DucU>
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: Tue, 12 May 2020 22:55:02 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3ea9d07054dd5e39c247bca0505dd34c188afbea
      https://github.com/quicwg/base-drafts/commit/3ea9d07054dd5e39c247bca0505dd34c188afbea
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Restore missing period on rttvar definition


  Commit: b3a870e491a56287c3f1b861bd60581de53e8e87
      https://github.com/quicwg/base-drafts/commit/b3a870e491a56287c3f1b861bd60581de53e8e87
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3647 from quicwg/period-rttvar

Restore missing period on rttvar definition


Compare: https://github.com/quicwg/base-drafts/compare/bfc26350519a...b3a870e491a5


From nobody Tue May 12 15:55:07 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 719DC3A0C73 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:55:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 Kxgrf2rfh9vm for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:55:01 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D516D3A0C74 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:55:00 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id E5C5C8C002D for <quic-issues@ietf.org>; Tue, 12 May 2020 15:54:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589324099; bh=V1suvHeARu9fRkV7yynk4E3vTMingsZsX3jMf0Tu6Bo=; h=Date:From:To:Subject:From; b=wS4lISQCdxe/RntdEcec3YxW0I+HvP7ZGAi8QUu0U5N7pR6Oyz09/4746llJof2Qg JpAlBhOLLYOEELiXPvsoRRzUO43wWwNIKRNLCJrs655Srs4GvbYPheczmR7K1ftobK NhHBfQGr9JFsQypNUqm+5P/jRjfLhSZnSM2EzIdM=
Date: Tue, 12 May 2020 15:54:59 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/period-rttvar/3ea9d0-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BDWlcxgfETWEXn8Zqss1-Do4Jzk>
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: Tue, 12 May 2020 22:55:02 -0000

  Branch: refs/heads/period-rttvar
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 12 15:55:12 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 002C03A0C73 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:55:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 CD7FJxc4a1FK for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:55:03 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E19D93A0C74 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:55:02 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 282242C0FA8 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:55:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589324102; bh=JC3bD2B0Msc3fm6j4wtSpHD2ErTzPwgaj3m+9OQnYcM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=N6WsHb74fVYMhRpxELmrT64U1nx7N2fxY72neprW9xYekgoiEfTLtC66gxAfewfzG J8Z19qwgNDBy3U14zjXWNoHaALevcCWbAmDZW8nt87Qrr4t+68rTXuuvtIoSizoIeb 9GHg/WbduLtRzLp2svh4U/XMLR+VjsMvko0mrPDo=
Date: Tue, 12 May 2020 15:55:02 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK36LAMPKFJU44Y446N4Y4FENEVBNHHCJRWBCA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3647/review/410478728@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3647@github.com>
References: <quicwg/base-drafts/pull/3647@github.com>
Subject: Re: [quicwg/base-drafts] Restore missing period on rttvar definition (#3647)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb2946199f0_a8b3fa3d32cd95c139728"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iKWElJOhUE9NpI3bWZv9xFQ0PWQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 22:55:04 -0000

----==_mimepart_5ebb2946199f0_a8b3fa3d32cd95c139728
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3647#pullrequestreview-410478728
----==_mimepart_5ebb2946199f0_a8b3fa3d32cd95c139728
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3647#pullrequestreview-410478728">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZOLHQNFKQIS4N5MEDRRHHUNANCNFSM4M7HFJOA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4RENPVPKN7ODNADC3RRHHUNA5CNFSM4M7HFJOKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODB3WRCA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3647#pullrequestreview-410478728",
"url": "https://github.com/quicwg/base-drafts/pull/3647#pullrequestreview-410478728",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb2946199f0_a8b3fa3d32cd95c139728--


From nobody Tue May 12 15:55:15 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 E20F33A0C74 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:55:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.178
X-Spam-Level: 
X-Spam-Status: No, score=-2.178 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 hXLxom9fF9ve for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:55:09 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ABEC43A0C70 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:55:09 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 5FDBD120308 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:55:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589324109; bh=2qhJwwYVqXR2iCQEOfpV+DoVN0LXGNkCFjDfOFc4SYg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MfLpFckHe6qGL04i+GdvtcCFcLzqz9Q+VVk0NjJbes7rumDayUf2XENNFYUciVSDv 024XAyUVrtcf2UmZqHXTQbp1Ehmuj/XGqZ3LmQh2qLXi86YnNoz+l2Ckrkxcmu9x9Y Hn1+x7LHMb+eYiNtXaYaqXYSDfcoupZHATIfELzA=
Date: Tue, 12 May 2020 15:55:09 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5UWQ6DKIPT4DWPEFF4Y4FE3EVBNHHCJRWBCA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3647/issue_event/3329635094@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3647@github.com>
References: <quicwg/base-drafts/pull/3647@github.com>
Subject: Re: [quicwg/base-drafts] Restore missing period on rttvar definition (#3647)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb294d1b211_40123ff2400cd95c29428b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mzsRevMX_wvbKaO4PETfYg7q-vQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 22:55:11 -0000

----==_mimepart_5ebb294d1b211_40123ff2400cd95c29428b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3647 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3647#event-3329635094
----==_mimepart_5ebb294d1b211_40123ff2400cd95c29428b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="617005328" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3647" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3647/hovercard" href="https://github.com/quicwg/base-drafts/pull/3647">#3647</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3647#event-3329635094">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7JDMC5QQ4PBIMXASDRRHHU3ANCNFSM4M7HFJOA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYBF7AA5WJ5FLNTSUTRRHHU3A5CNFSM4M7HFJOKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYZ3DGFQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3647#event-3329635094",
"url": "https://github.com/quicwg/base-drafts/pull/3647#event-3329635094",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb294d1b211_40123ff2400cd95c29428b--


From nobody Tue May 12 15:55: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 ADC073A0C74 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:55:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Y-v-WJFjhlkU for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:55:52 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9C5983A0C70 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:55:52 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id A9D37660E36 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:55:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589324151; bh=iSFILSw8o2oFQI1een6x8tOOTfJmrn6YMwPeQZZhwhM=; h=Date:From:To:Subject:From; b=p0QYw/q9Lao1FQQlJeos1XFznxVFCIPii40WOFLfKhUVaSTYvoqBIhTrXwsvyCqt2 YmUDstXhiZVPqWvCeyihUm2Cd6mCLuAo4g6ojDZ2YTNuCE95tPpnct8N6Q4ka59qDz JxIpdSi8ahKh1nC+TVEgor1gb4Y1D16iOhxMqG2o=
Date: Tue, 12 May 2020 15:55:51 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/09a32f-103c38@github.com>
Subject: [quicwg/base-drafts] 103c38: Script updating gh-pages from b3a870e4. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/M0MuF-LxGkVj92-MPqaBcbsozUs>
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: Tue, 12 May 2020 22:55:54 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 103c38238311c468f75551a292a639f26cb00149
      https://github.com/quicwg/base-drafts/commit/103c38238311c468f75551a292a639f26cb00149
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b3a870e4. [ci skip]



From nobody Tue May 12 15:56:12 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 796353A0C73 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:56:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 N9S-hz_7BBfF for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:56:08 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D8C993A0C70 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:56:08 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id E378E520512 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:56:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589324167; bh=/UgszDIxXY6V181jT0lfM713FZY+DEtuLjtCh+MZHws=; h=Date:From:To:Subject:From; b=X6L9t7BAizBzFVnf+c1zXmd0mAGYB3fyHGVRqKekISPbFgMhhHtr0n1kC0tk2pnzx q4Ru81VmxRWlzebwLGIRuKsxaMpOPIHoDyWn85UWBi6XAeymPyqKVCiMRPEHXSxmtZ /48Ir5fJpkQiFYQW0BVRofNbE1yIqzk8YgwjBK6E=
Date: Tue, 12 May 2020 15:56:07 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-table-flip/000000-7d7c3a@github.com>
Subject: [quicwg/base-drafts] 7d7c3a: [qpack] Table Flip
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HD3k5nU_ZSWlAeYoBTzUsQkhZFE>
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: Tue, 12 May 2020 22:56:10 -0000

  Branch: refs/heads/qpack-table-flip
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7d7c3a2ae18bca809f1f43e19f702614c3a3c801
      https://github.com/quicwg/base-drafts/commit/7d7c3a2ae18bca809f1f43e19f702614c3a3c801
  Author: Alan Frindell <afrind@fb.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  [qpack] Table Flip

All other tables insert on the left and drop on the right

Fixes #3633



From nobody Tue May 12 15:56:43 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 AD3103A0C74 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:56:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.651
X-Spam-Level: 
X-Spam-Status: No, score=-1.651 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 ewNXdaN37UH6 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:56:40 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5F78D3A0C70 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:56:40 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 69310E0B78 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:56:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589324199; bh=FL4MWa9sYBH81Yerp8wGVyQ+PkX5ynwkgV22E6IJ9DY=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=PM5XbryeZo09fgurSmq26skk3mnlCBA300FmwTZfhDRztFKAzfqemcKhqTdSekpyI BltHF5QhR+LRf7LpH610Mr99gCn4V56960CYf+wEhv9yvku/kXzKfc6hMIUaaAu1By yMJP60EdMKOMRv4aFEYDKKbX0nqauzRJSRuKD17Q=
Date: Tue, 12 May 2020 15:56:39 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5YER67H5ZGGFLSWV54Y4FKPEVBNHHCJRXOX4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3649@github.com>
Subject: [quicwg/base-drafts] [qpack] Table Flip (#3649)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb29a75a8db_6e573fa3c1ecd96c16554d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bmCyPn1gJPU2rbmPBFBAGb9rrKw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 22:56:42 -0000

----==_mimepart_5ebb29a75a8db_6e573fa3c1ecd96c16554d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

All other tables insert on the left and drop on the right

Fixes #3633
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3649

-- Commit Summary --

  * [qpack] Table Flip

-- File Changes --

    M draft-ietf-quic-qpack.md (16)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3649.patch
https://github.com/quicwg/base-drafts/pull/3649.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3649

----==_mimepart_5ebb29a75a8db_6e573fa3c1ecd96c16554d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>All other tables insert on the left and drop on the right</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3633.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="613812317" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3633" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3633/hovercard" href="https://github.com/quicwg/base-drafts/issues/3633">#3633</a></p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3649'>https://github.com/quicwg/base-drafts/pull/3649</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>[qpack] Table Flip</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3649/files#diff-c3ed24528f71fade042cdefbeadbd7b9">draft-ietf-quic-qpack.md</a>
    (16)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3649.patch'>https://github.com/quicwg/base-drafts/pull/3649.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3649.diff'>https://github.com/quicwg/base-drafts/pull/3649.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3649">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4GHQR7L52O4PWDN4TRRHH2PANCNFSM4M7HSBEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3H2DFMSJ4C7PUV2QDRRHH2PA5CNFSM4M7HSBEKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JGG527Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3649",
"url": "https://github.com/quicwg/base-drafts/pull/3649",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebb29a75a8db_6e573fa3c1ecd96c16554d--


From nobody Tue May 12 15:56:59 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 42F2C3A0C73 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:56:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 w4x8WurMF-z7 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 15:56:57 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 35D463A0C70 for <quic-issues@ietf.org>; Tue, 12 May 2020 15:56:57 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 4063F2C0EEB for <quic-issues@ietf.org>; Tue, 12 May 2020 15:56:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589324216; bh=v9NEKLcjFhB32zZAN3vkzdQpxvg983z1x1X2GTNVAow=; h=Date:From:To:Subject:From; b=PnGpWwuW6bzHtVnyme0Nm1G2eVaeY63/MBOPNWhPlZutLGCDcYMSwtNiiXQMkBjdB p9nr2gp7Utfi6ROLHLPv5kmm3JSkAvSGOk6/YQRyuK2+1QnoQz5fWleCmUTLBSq305 gtjFJeogIsq2D9sVXOUrL+hpMR5h2TFwZWWCaUkY=
Date: Tue, 12 May 2020 15:56:56 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/103c38-00bd72@github.com>
Subject: [quicwg/base-drafts] 00bd72: Script updating gh-pages from 7d7c3a2a. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/D52Yeim-camPahPDeadu9Z01Arw>
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: Tue, 12 May 2020 22:56:58 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 00bd72ab9e7d7ade6ae6d98329b8f982430833c1
      https://github.com/quicwg/base-drafts/commit/00bd72ab9e7d7ade6ae6d98329b8f982430833c1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M index.html
    A qpack-table-flip/draft-ietf-quic-http.html
    A qpack-table-flip/draft-ietf-quic-http.txt
    A qpack-table-flip/draft-ietf-quic-invariants.html
    A qpack-table-flip/draft-ietf-quic-invariants.txt
    A qpack-table-flip/draft-ietf-quic-qpack.html
    A qpack-table-flip/draft-ietf-quic-qpack.txt
    A qpack-table-flip/draft-ietf-quic-recovery.html
    A qpack-table-flip/draft-ietf-quic-recovery.txt
    A qpack-table-flip/draft-ietf-quic-tls.html
    A qpack-table-flip/draft-ietf-quic-tls.txt
    A qpack-table-flip/draft-ietf-quic-transport.html
    A qpack-table-flip/draft-ietf-quic-transport.txt
    A qpack-table-flip/index.html

  Log Message:
  -----------
  Script updating gh-pages from 7d7c3a2a. [ci skip]



From nobody Tue May 12 16:00:12 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 732A33A0C76 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:00:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.211
X-Spam-Level: 
X-Spam-Status: No, score=-1.211 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 qqsN9Nx_dWUS for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:00:08 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7DF933A0B1E for <quic-issues@ietf.org>; Tue, 12 May 2020 16:00:08 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 806A96A06B9 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:00:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589324407; bh=FSAO/tWVg7pgT6B39NSG0IUBonBq+FZ+7404DYGVPBc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Vv6Tm21R/MsX+NxJirIAKnWD/jLPvctRWsgOU6Oy9CSoblWI/ggLKi7XfD+Qp3zDj Svtd1fzALlModWyRy6uAJV8TFw7XhZaBw1sGPvl7dIcAnsIX+xuLpmmSte29uml3rH J0Mveay9JtL5CkdsxEAi81JCOeAirVQZFNa5UzD0=
Date: Tue, 12 May 2020 16:00:07 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3SOABPXQQ6LCSNUEF4Y4FXPEVBNHHCJRXOX4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3649/review/410480738@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3649@github.com>
References: <quicwg/base-drafts/pull/3649@github.com>
Subject: Re: [quicwg/base-drafts] [qpack] Table Flip (#3649)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb2a776ea04_6cb63ffdeeecd96c1076e0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3Kw0OuRWptuh3mj8is_22GsM4vQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 23:00:09 -0000

----==_mimepart_5ebb2a776ea04_6cb63ffdeeecd96c1076e0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3649#pullrequestreview-410480738
----==_mimepart_5ebb2a776ea04_6cb63ffdeeecd96c1076e0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@LPardue</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3649#pullrequestreview-410480738">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZQPYRNCMJZAPUEC2LRRHIHPANCNFSM4M7HSBEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2CFU7LFRUKTQOWJODRRHIHPA5CNFSM4M7HSBEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODB3XAYQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3649#pullrequestreview-410480738",
"url": "https://github.com/quicwg/base-drafts/pull/3649#pullrequestreview-410480738",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb2a776ea04_6cb63ffdeeecd96c1076e0--


From nobody Tue May 12 16:04:11 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 6353E3A0C5B for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:04:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.178
X-Spam-Level: 
X-Spam-Status: No, score=-2.178 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 fzjGTYhsLYVs for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:04:08 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4C9663A0B1E for <quic-issues@ietf.org>; Tue, 12 May 2020 16:04:08 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 5C148A00F6 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:04:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589324647; bh=CnqVDqrD0yL6Mw2vJu9HRfmBHYEwl4qE4ovK9hjhq6A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ko3YrySNTmtBMN1S8oU491NOVjIIqE463V9QyK5wtiN5mgdbI6RNy+dLLpn78X3ZD mXOoONkmJukPXVvFOE1TZ2ruuTfcI6Lkf7u5+gtPapeBxQkmiX+bCmK6lRo2/eE4uo 1u+K8Ij34+2TTc7I37JEK1K/+ptM+P1XsUR0fiF4=
Date: Tue, 12 May 2020 16:04:07 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2SUIHZCVMR2T7YGBV4Y4GGPEVBNHHCJRXALY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3648/review/410482308@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3648@github.com>
References: <quicwg/base-drafts/pull/3648@github.com>
Subject: Re: [quicwg/base-drafts] QPACK acknowledgements (#3648)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb2b674bc6f_5d8c3f89e96cd95c1492cb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LHFDrmcKokDM8PKq0zhoSDmkrcQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 23:04:09 -0000

----==_mimepart_5ebb2b674bc6f_5d8c3f89e96cd95c1492cb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue approved this pull request.

qpacknowledgements



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3648#pullrequestreview-410482308
----==_mimepart_5ebb2b674bc6f_5d8c3f89e96cd95c1492cb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@LPardue</b> approved this pull request.</p>

<p>qpacknowledgements</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3648#pullrequestreview-410482308">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6J74DZMMJA5NDUPK3RRHIWPANCNFSM4M7HN7ZA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZRWGVIGA6UGTD2EF3RRHIWPA5CNFSM4M7HN7ZKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODB3XNBA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3648#pullrequestreview-410482308",
"url": "https://github.com/quicwg/base-drafts/pull/3648#pullrequestreview-410482308",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb2b674bc6f_5d8c3f89e96cd95c1492cb--


From nobody Tue May 12 16:12:50 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 701193A0C61 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:12:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 VLXlQUMqwrc0 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:12:46 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 83E2A3A0C7F for <quic-issues@ietf.org>; Tue, 12 May 2020 16:12:31 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id C18372C0B92 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:12:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325150; bh=1XPRofwL7Ohgm4boXjCIwBCPrk2I/CsHLWo5V3eXAwQ=; h=Date:From:To:Subject:From; b=h8+vmajXdOf2Ea9Gn6OSYgJYFHiAms4q4annpQIdR0idiSWi3xI/ny0LshV+1+Euk enRWvUq1lozVd3PfDUq+DIfmq0gHw9y7U8v/6cnCk9SDfe1Lwwdc/A/Pz32n8Av7Vq r5tr8Vzyl78YhiuYbzJqwaLU3F0tBUfIjXeZCCsA=
Date: Tue, 12 May 2020 16:12:30 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/alarm-timer/000000-1dc5a8@github.com>
Subject: [quicwg/base-drafts] 1dc5a8: s/alarm/timer/
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GtpBN9--vhHCL9eNeO4sCIlF-zY>
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: Tue, 12 May 2020 23:12:48 -0000

  Branch: refs/heads/alarm-timer
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1dc5a83ad1f6bdd68c177dfa2683b0313e63db51
      https://github.com/quicwg/base-drafts/commit/1dc5a83ad1f6bdd68c177dfa2683b0313e63db51
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  s/alarm/timer/



From nobody Tue May 12 16:12:57 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 D50773A0C76 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:12:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.726
X-Spam-Level: 
X-Spam-Status: No, score=-1.726 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 EW2_y-aL6L3x for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:12:54 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 371BA3A0C61 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:12:54 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 717A1C61221 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:12:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325173; bh=1tlr9GBZfYMuozUi60N34O0hGuQEp9dOOGRb9byvuMY=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=YOqnRttjW9+yWrNAF+rcy6en5dyJfwfI8qQ4lA1iuRbiypeDstboaF1qsOnAQwvpd xflKqqtPr/lyCK998qGRngy8fhBgKUZISKt6h11wLzBFJJOIlmCNZKUMNb3IXYpN3T sOW4ahceEVPEVWhgHxLY9duAvlHdog3UCl1MywHo=
Date: Tue, 12 May 2020 16:12:53 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ5XVBCI4GC5L6E2CF4Y4HHLEVBNHHCJRYGUY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3650@github.com>
Subject: [quicwg/base-drafts] s/alarm/timer/ (#3650)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb2d75639a6_26893fae118cd9682845d5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PUh55-pP03ilt0uJUMgo1xOYZcc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 23:12:56 -0000

----==_mimepart_5ebb2d75639a6_26893fae118cd9682845d5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3650

-- Commit Summary --

  * s/alarm/timer/

-- File Changes --

    M draft-ietf-quic-recovery.md (4)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3650.patch
https://github.com/quicwg/base-drafts/pull/3650.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3650

----==_mimepart_5ebb2d75639a6_26893fae118cd9682845d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3650'>https://github.com/quicwg/base-drafts/pull/3650</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>s/alarm/timer/</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3650/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (4)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3650.patch'>https://github.com/quicwg/base-drafts/pull/3650.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3650.diff'>https://github.com/quicwg/base-drafts/pull/3650.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3650">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4CQP7LFF4RZ3LCJM3RRHJXLANCNFSM4M7H4QTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7BAUWSY4YMXHMHRKTRRHJXLA5CNFSM4M7H4QT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JGHA2TA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3650",
"url": "https://github.com/quicwg/base-drafts/pull/3650",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebb2d75639a6_26893fae118cd9682845d5--


From nobody Tue May 12 16:13:27 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 C224F3A0C6A for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:13:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 dRGjATz01Stw for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:13:25 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A39C43A0C61 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:13:25 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id E7EB76605A7 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:13:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325204; bh=wDR667epAgIp5bKPfEsL4AlMnFbxLT8GOuIIaTlOgSE=; h=Date:From:To:Subject:From; b=PC6Gt1HxFlF+XFNWqy4scYg3j6KJojM1p8VkoLSi9U68vyDFID4DeqLyFAvsJDH64 /W+JHo/CqwsyF3KtBkOpL27RBojHtdViy8xKI8IwSxyHAr+8ViORgEk3Ok2AR6x/zY sPuIJWSaFmcGQ+s/xa7tlAfFzJD6Qfs89mtsnOfU=
Date: Tue, 12 May 2020 16:13:24 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/00bd72-a4ae55@github.com>
Subject: [quicwg/base-drafts] a4ae55: Script updating gh-pages from 1dc5a83a. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MmZnZbQsOqcQAdaQA7Oc1hrThrs>
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: Tue, 12 May 2020 23:13:27 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: a4ae5539763f7510326747ad9c5f94527a2ef71c
      https://github.com/quicwg/base-drafts/commit/a4ae5539763f7510326747ad9c5f94527a2ef71c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    A alarm-timer/draft-ietf-quic-http.html
    A alarm-timer/draft-ietf-quic-http.txt
    A alarm-timer/draft-ietf-quic-invariants.html
    A alarm-timer/draft-ietf-quic-invariants.txt
    A alarm-timer/draft-ietf-quic-qpack.html
    A alarm-timer/draft-ietf-quic-qpack.txt
    A alarm-timer/draft-ietf-quic-recovery.html
    A alarm-timer/draft-ietf-quic-recovery.txt
    A alarm-timer/draft-ietf-quic-tls.html
    A alarm-timer/draft-ietf-quic-tls.txt
    A alarm-timer/draft-ietf-quic-transport.html
    A alarm-timer/draft-ietf-quic-transport.txt
    A alarm-timer/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 1dc5a83a. [ci skip]



From nobody Tue May 12 16:15:22 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 BBE023A0C6A for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:15:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.273
X-Spam-Level: 
X-Spam-Status: No, score=-3.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 VnDpJNSmdjUl for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:15:19 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 42D3F3A0C61 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:15:19 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 99F892C1C49 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:15:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325318; bh=+kyUtvAhT+AG7pBNipilAhdsNhdXUQ5T/T1Z7FVT5pQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VVMlCjXc0oBnYvZbglqNlZnjlz8I+yI1ImYsfqlpp/P0baogRYbdoh7A52C5jgAI/ 8t8LgCAK4DT2B0N+Ql8LrmyxdpNnw7+tO17eHKYGZgmKvy8pthOUXF3a1ZHqzRITcc em2YeZEQIIvk2J23ufe4Mc1ErTeLZ3iYzLZSqs2I=
Date: Tue, 12 May 2020 16:15:18 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7MCICOPRO53GU5WSF4Y4HQNEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/review/410481829@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb2e068ace2_3b973fa4902cd96c1313cd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mhfU69DLRiC0Zpc-XJDHEgZ5iGg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 23:15:21 -0000

----==_mimepart_5ebb2e068ace2_3b973fa4902cd96c1313cd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +following relation for the total number of bytes sent over any interval:
+
+~~~
+sent@t[n] - sent@t[m]
+    <= N * congestion_window * (t[m] - t[n]) / smoothed_rtt
+       + min(10 * max_datagram_size,
+             max(2 * max_datagram_size, 14720))
+~~~
+
+The inclusion of the factor, `N`, that increases the rate of sending is to
+anticipate increases in sending rate as the congestion window expands. Sending
+at a higher rate also avoids having scheduling delays reduce the send rate
+below that allowed by the congestion controller. A value of 2 ensures that
+pacing is unlikely to limit what is sent any more than the congestion
+controller.
+

```suggestion

An endpoint that does not burst packets and has even spacing between packets
might send packets spaced at intervals of:

~~~
inter-packet time = smoothed_rtt * packet_size / congestion_window / N
~~~
```

> +The inclusion of the factor, `N`, that increases the rate of sending is to
+anticipate increases in sending rate as the congestion window expands. Sending
+at a higher rate also avoids having scheduling delays reduce the send rate
+below that allowed by the congestion controller. A value of 2 ensures that
+pacing is unlikely to limit what is sent any more than the congestion
+controller.

```suggestion
The inclusion of the factor, `N`, with a value of at least 1 increases the rate
of sending. The value of `N` might be increased to avoid having scheduling
delays reduce the send rate below that allowed by the congestion controller.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-410481829
----==_mimepart_5ebb2e068ace2_3b973fa4902cd96c1313cd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3630#discussi=
on_r424082174">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +following relation for the total number o=
f bytes sent over any interval:=0D
+=0D
+~~~=0D
+sent@t[n] - sent@t[m]=0D
+    &lt;=3D N * congestion_window * (t[m] - t[n]) / smoothed_rtt=0D
+       + min(10 * max_datagram_size,=0D
+             max(2 * max_datagram_size, 14720))=0D
+~~~=0D
+=0D
+The inclusion of the factor, `N`, that increases the rate of sending is =
to=0D
+anticipate increases in sending rate as the congestion window expands. S=
ending=0D
+at a higher rate also avoids having scheduling delays reduce the send ra=
te=0D
+below that allowed by the congestion controller. A value of 2 ensures th=
at=0D
+pacing is unlikely to limit what is sent any more than the congestion=0D=

+controller.=0D
+=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-=0D
+=0D
+An endpoint that does not burst packets and has even spacing between pac=
kets=0D
+might send packets spaced at intervals of:=0D
+=0D
+~~~=0D
+inter-packet time =3D smoothed_rtt * packet_size / congestion_window / N=
=0D
+~~~=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3630#discussi=
on_r424083797">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +The inclusion of the factor, `N`, that in=
creases the rate of sending is to=0D
+anticipate increases in sending rate as the congestion window expands. S=
ending=0D
+at a higher rate also avoids having scheduling delays reduce the send ra=
te=0D
+below that allowed by the congestion controller. A value of 2 ensures th=
at=0D
+pacing is unlikely to limit what is sent any more than the congestion=0D=

+controller.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-The inclusion of the factor, `N`, that increa=
ses the rate of sending is to=0D
-anticipate increases in sending rate as the congestion window expands. S=
ending=0D
-at a higher rate also avoids having scheduling delays reduce the send ra=
te=0D
-below that allowed by the congestion controller. A value of 2 ensures th=
at=0D
-pacing is unlikely to limit what is sent any more than the congestion=0D=

-controller.=0D
+The inclusion of the factor, `N`, with a value of at least 1 increases t=
he rate=0D
+of sending. The value of `N` might be increased to avoid having scheduli=
ng=0D
+delays reduce the send rate below that allowed by the congestion control=
ler.=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3630#pullrequestreview-410481829">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K26J2U3GIMTKNS5XG3RRHKANANCNFSM4M2ELDDA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKZS5WEKYNRYCW6CVILRRHKANA5CNFSM4=
M2ELDDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODB3XJJI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestrev=
iew-410481829",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview=
-410481829",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebb2e068ace2_3b973fa4902cd96c1313cd--


From nobody Tue May 12 16:15:51 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 D26D53A0C73 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:15:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 RCJ5w96dE5qQ for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:15:48 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B7BEB3A0C6A for <quic-issues@ietf.org>; Tue, 12 May 2020 16:15:48 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id F05FD660B7C for <quic-issues@ietf.org>; Tue, 12 May 2020 16:15:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325347; bh=yEuTbhGMXr2Oi9b4XDhO6HTC1evrFnwG6YWwJN+SD5M=; h=Date:From:To:Subject:From; b=MTeXvWlfYXiJT2VFkzuKsHh11O+zWhLD+jVtUQsaGlG9bzqUI3nxXmJbrhFATH9ov w0ItcDGxePnuKAPlSRChnxeAcQrqbNoienVdDGdRxbQubiOM/jZjw1Js9mZ85rMS9G ++iBrU9ABvBQZkRptfRQswygz9pP8ys61jarQyg4=
Date: Tue, 12 May 2020 16:15:47 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/a4b888-b776f4@github.com>
Subject: [quicwg/base-drafts] b776f4: Using suggestions to edit
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Y8oyJfiSdUc4Hrv7DuwznSGnY9M>
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: Tue, 12 May 2020 23:15:50 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: b776f4d79e077017b718671b8362650a0b8e62bd
      https://github.com/quicwg/base-drafts/commit/b776f4d79e077017b718671b8362650a0b8e62bd
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Using suggestions to edit



From nobody Tue May 12 16:15:59 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 877F33A0C6A for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:15:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 3iVez24ha3CA for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:15:57 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 63DB83A0C76 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:15:57 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id ABF189603A2 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:15:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325356; bh=iOs6Jd+wt18PyurrHuX9kpNnNnGrwcKmKj7ZZ0/hdIk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Az4iSAK94okHlkLQXeJxNnfY/kViMYHQ7Z4znMsC4uC/ujXIXqB7uMTaigB7NuEy7 7dlibtGJqDjwUrAjAlLmtludV2SomeIgZnLz7RlNPHP3vsWbujY6LQ/0caXC5s3BTL UjPGurMuvUhGMJrQYGAAj9VqijStVF9I0ja7DIWs=
Date: Tue, 12 May 2020 16:15:56 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/push/5062648058@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb2e2c9d65a_116c3f99228cd96c18501c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/i8VMqABgyHuLruR3nOD5FRta29k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 23:15:59 -0000

----==_mimepart_5ebb2e2c9d65a_116c3f99228cd96c18501c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

b776f4d79e077017b718671b8362650a0b8e62bd  Using suggestions to edit


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630/files/a4b888eab05865e39b40e240bb3abf962f95de9b..b776f4d79e077017b718671b8362650a0b8e62bd

----==_mimepart_5ebb2e2c9d65a_116c3f99228cd96c18501c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/b776f4d79e077017b718671b8362650a0b8e62bd">b776f4d</a>  Using suggestions to edit</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3630/files/a4b888eab05865e39b40e240bb3abf962f95de9b..b776f4d79e077017b718671b8362650a0b8e62bd">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6QCZ2IAVLGJWWEDQ3RRHKCZANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6BLP4ZQHCZ6BXPMRDRRHKCZA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTGOBYGMYDOOKQOVZWQIZVGA3DENRUHAYDKOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630/files/a4b888eab05865e39b40e240bb3abf962f95de9b..b776f4d79e077017b718671b8362650a0b8e62bd",
"url": "https://github.com/quicwg/base-drafts/pull/3630/files/a4b888eab05865e39b40e240bb3abf962f95de9b..b776f4d79e077017b718671b8362650a0b8e62bd",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebb2e2c9d65a_116c3f99228cd96c18501c--


From nobody Tue May 12 16:16:25 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 2B6213A0C78 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:16:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.655
X-Spam-Level: 
X-Spam-Status: No, score=-1.655 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 1Qdh8hKvgOcT for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:16:22 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CD88E3A0C6A for <quic-issues@ietf.org>; Tue, 12 May 2020 16:16:21 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 1B4B48C05E1 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:16:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325381; bh=XaUlhXbfhJckr+LqHw7Y+Bzv65DBh3wN+GVrB38EMC0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OujuIlRkMIN2il3odSwAQQkfhEp5sNMs07J4pEMPMXon03At+8kzdOHUvk0E1edxq XTFtEmlwWgbocIHcwDD6QcZFFuZHIUKLbNaJxwjuI+8E6wsJLad4kV1GUEUHTnSZgC j6xi75mBsrsRtFLuwX6rR7AnlQ49UzqTN4pCojgI=
Date: Tue, 12 May 2020 16:16:21 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK56VNQYD4ZQVW4FHJF4Y4HULEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/review/410487013@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb2e45a938_22b43fbd302cd968256656"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_mcel06HS8NKSpXJlFoRLXllZ6U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 23:16:23 -0000

----==_mimepart_5ebb2e45a938_22b43fbd302cd968256656
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +number of bytes sent between t[m] and t[n]
+    <= N * congestion_window * (t[m] - t[n]) / smoothed_rtt
+       + min(10 * max_datagram_size,
+             max(2 * max_datagram_size, 14720))
+~~~
+
+The inclusion of the factor, `N`, with a value of at least 1 increases the rate
+of sending. The value of `N` might be increased to avoid having scheduling
+delays reduce the send rate below that allowed by the congestion controller.
+
+An endpoint that does not burst packets and has even spacing between packets
+might send packets spaced at intervals of:
+
+~~~
+inter-packet time = smoothed_rtt * packet_size / congestion_window / N
+~~~

```suggestion
~~~

```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-410487013
----==_mimepart_5ebb2e45a938_22b43fbd302cd968256656
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3630#discussi=
on_r424086625">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +number of bytes sent between t[m] and t[n=
]=0D
+    &lt;=3D N * congestion_window * (t[m] - t[n]) / smoothed_rtt=0D
+       + min(10 * max_datagram_size,=0D
+             max(2 * max_datagram_size, 14720))=0D
+~~~=0D
+=0D
+The inclusion of the factor, `N`, with a value of at least 1 increases t=
he rate=0D
+of sending. The value of `N` might be increased to avoid having scheduli=
ng=0D
+delays reduce the send rate below that allowed by the congestion control=
ler.=0D
+=0D
+An endpoint that does not burst packets and has even spacing between pac=
kets=0D
+might send packets spaced at intervals of:=0D
+=0D
+~~~=0D
+inter-packet time =3D smoothed_rtt * packet_size / congestion_window / N=
=0D
+~~~=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-~~~=0D
+~~~=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3630#pullrequestreview-410487013">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K6N76QNM2DZSXWPO73RRHKELANCNFSM4M2ELDDA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKZ4G3F2DOSKSKKI27TRRHKELA5CNFSM4=
M2ELDDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODB3YRZI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestrev=
iew-410487013",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview=
-410487013",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebb2e45a938_22b43fbd302cd968256656--


From nobody Tue May 12 16:16:29 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 5370A3A0C6A for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:16:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 aF_RrW9-geQM for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:16:23 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 05E233A0C73 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:16:22 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 4C52D2C1614 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:16:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325382; bh=dgEjo4y/9riitVBXp1iFNKcdSTIj+OfK6S3f7M3HscY=; h=Date:From:To:Subject:From; b=VKNMUFa4p+De27D5D/0NxCafaDCrntrN9seqDcjT7CI1GHN6FE+z2prqetgPTI06r 4hXCy0njjg7EKWepH9+nFaX3WxKHWL/ljpgqMlWL/JbX+RfKR575NoE8G0UXQQMYiv ODf5NvpngooHw2OimC9TXHIGBy01bsemFI/tmt4w=
Date: Tue, 12 May 2020 16:16:22 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/b776f4-37eaf7@github.com>
Subject: [quicwg/base-drafts] 37eaf7: Add a blank line
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/D1VwuIFckvHAPLiw0WwZoKABTrA>
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: Tue, 12 May 2020 23:16:24 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: 37eaf7e767121467227f3fbade7329a7d7b264f3
      https://github.com/quicwg/base-drafts/commit/37eaf7e767121467227f3fbade7329a7d7b264f3
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Add a blank line



From nobody Tue May 12 16:16:35 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 E1A393A0C73 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:16:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.724
X-Spam-Level: 
X-Spam-Status: No, score=-1.724 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Slx8cvfaaqtP for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:16:32 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 876143A0C6A for <quic-issues@ietf.org>; Tue, 12 May 2020 16:16:32 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id B66AD8C002F for <quic-issues@ietf.org>; Tue, 12 May 2020 16:16:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325391; bh=3MO7ZmtjsbaOw/QtbZxpa5srPoQcFKZBi357i34aBQg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BRqRfOfQA6BAC+qUT91dag1sdSMPXNk2CjYFU76MRKlYUZwmsPRk47Yzey65p2jUn h3SZBJark2jbinplJyq979hONNsxdKqgytUYD8jUOVh5zdj80ZlrpZ+QHtNyw8wicq Bz/UvLf0gXoHykxtnX2LP2Ca+A5RDgmHKKgrpWHE=
Date: Tue, 12 May 2020 16:16:31 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/push/5062649913@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb2e4f8c40e_7c023fa1506cd9602932a9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bBM1ewWjcQzmUDhSNDGkr7BDZRk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 23:16:34 -0000

----==_mimepart_5ebb2e4f8c40e_7c023fa1506cd9602932a9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

37eaf7e767121467227f3fbade7329a7d7b264f3  Add a blank line


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630/files/b776f4d79e077017b718671b8362650a0b8e62bd..37eaf7e767121467227f3fbade7329a7d7b264f3

----==_mimepart_5ebb2e4f8c40e_7c023fa1506cd9602932a9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/37eaf7e767121467227f3fbade7329a7d7b264f3">37eaf7e</a>  Add a blank line</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3630/files/b776f4d79e077017b718671b8362650a0b8e62bd..37eaf7e767121467227f3fbade7329a7d7b264f3">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK755F55XOW55AJWMRTRRHKE7ANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK67CQTZADDD76WP4DLRRHKE7A5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTGOBYGMYDOOKQOVZWQIZVGA3DENRUHE4TCMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630/files/b776f4d79e077017b718671b8362650a0b8e62bd..37eaf7e767121467227f3fbade7329a7d7b264f3",
"url": "https://github.com/quicwg/base-drafts/pull/3630/files/b776f4d79e077017b718671b8362650a0b8e62bd..37eaf7e767121467227f3fbade7329a7d7b264f3",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebb2e4f8c40e_7c023fa1506cd9602932a9--


From nobody Tue May 12 16:17:04 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 888FC3A0C74 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:17:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 dJrE5gt2JgEN for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:17:00 -0700 (PDT)
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EBE463A0A9C for <quic-issues@ietf.org>; Tue, 12 May 2020 16:17:00 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 829F626172D for <quic-issues@ietf.org>; Tue, 12 May 2020 16:17:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325420; bh=WIeKWXT6BgDSnpMbfzzYZ5+GbQSoOFnWjhzmQ4SWyWw=; h=Date:From:To:Subject:From; b=DpimyUpbBz5TnyKck5Nq5MMogBPXY0e8pSNR7/lziJgpM05cw2EpXQCYoDSuUVTnk IG4qa4qHKUdDCPoHXHM0/IHJsY7PWVKWTTI0OfnPt41KN7ylNr64OtflqzDWDn/l3D jHzFHF0F3LXCAzEJ1XBZBuMxmIqA/WeHpL3gNIQU=
Date: Tue, 12 May 2020 16:17:00 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/alarm-timer/1dc5a8-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3M6oxtigLNK-ITm8OttAJNHplHs>
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: Tue, 12 May 2020 23:17:03 -0000

  Branch: refs/heads/alarm-timer
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 12 16:17:07 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 66EDA3A0A9C for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:17:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.213
X-Spam-Level: 
X-Spam-Status: No, score=-1.213 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 vKegkasuGU7n for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:17:02 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6ED3A3A0C73 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:17:02 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 0EAED121394 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:17:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325422; bh=XZCPpw8Pt6zyAyfPtsW9aB0HK/+29Nns1FAVXwugWOc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=noHzm3/j3PUZu1aOSxDB1r06bME3SNooJDDpOs132uqjAR4phVA04I2M+UZiolDEm O13QF6/rLxQfMS2GmFAMt2Lp0N1w1gqiPnNGZAV6q6/O07Cc3BrAbxLbmY7MG7gCLu Vg5Ra6bjBYRifAVOsnnb6vTBnBePtJldRa2viBH0=
Date: Tue, 12 May 2020 16:17:01 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3SGOJBWZVFNIQPIZ54Y4HW3EVBNHHCJRYGUY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3650/review/410487271@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3650@github.com>
References: <quicwg/base-drafts/pull/3650@github.com>
Subject: Re: [quicwg/base-drafts] s/alarm/timer/ (#3650)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb2e6dbb572_40193ff2400cd95c328150"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/YpUN0vjegY2cmJBexkaqWY6_UIg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 23:17:03 -0000

----==_mimepart_5ebb2e6dbb572_40193ff2400cd95c328150
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3650#pullrequestreview-410487271
----==_mimepart_5ebb2e6dbb572_40193ff2400cd95c328150
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3650#pullrequestreview-410487271">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6G2JL5XI6PS6HEBF3RRHKG3ANCNFSM4M7H4QTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK74ZGDQEUE6MMS65JTRRHKG3A5CNFSM4M7H4QT2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODB3YTZY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3650#pullrequestreview-410487271",
"url": "https://github.com/quicwg/base-drafts/pull/3650#pullrequestreview-410487271",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb2e6dbb572_40193ff2400cd95c328150--


From nobody Tue May 12 16:17:11 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 BA7593A0C73 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:17:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 g1suKByCLxK8 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:17:00 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DA3253A0C6A for <quic-issues@ietf.org>; Tue, 12 May 2020 16:17:00 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 2ED101C0570 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:17:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325420; bh=waGVIJHf/usj7TMozYBDpG9D6VxdgXUIJXk4xsWyhHU=; h=Date:From:To:Subject:From; b=DaP08XtQlsZcRvPzhMdYckIQ9tPqLOLYI/QTGjZpA5HqtuoBlQkCopJ8af4Uc0qRQ DmErLYyOc/Ie8R3g82P82Y9VqB/C2fK04ArA/HJS9QADJ0N1+UtqscF/PEuUCHir7U rcsosESlFFHaR6DnAOW0xnIJreJ1dqjh60gFwDSw=
Date: Tue, 12 May 2020 16:17:00 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/b3a870-444638@github.com>
Subject: [quicwg/base-drafts] 1dc5a8: s/alarm/timer/
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/K3Fjq2cQL0X97Vp4sQN1Dt5yDSY>
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: Tue, 12 May 2020 23:17:04 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1dc5a83ad1f6bdd68c177dfa2683b0313e63db51
      https://github.com/quicwg/base-drafts/commit/1dc5a83ad1f6bdd68c177dfa2683b0313e63db51
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  s/alarm/timer/


  Commit: 444638c184f103962546695f78dd30adaaaeabe3
      https://github.com/quicwg/base-drafts/commit/444638c184f103962546695f78dd30adaaaeabe3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3650 from quicwg/alarm-timer

s/alarm/timer/


Compare: https://github.com/quicwg/base-drafts/compare/b3a870e491a5...444638c184f1


From nobody Tue May 12 16:17:16 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 0D43A3A0C73 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:17:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.178
X-Spam-Level: 
X-Spam-Status: No, score=-2.178 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 6JkQiv_R-B2d for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:17:09 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D03A23A0C6A for <quic-issues@ietf.org>; Tue, 12 May 2020 16:17:09 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 19E0E6E04F6 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:17:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325429; bh=04W8Zgg0WOJFZQqI7ZEsD5Ag41T70l2a31wcER/A6ZU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jbMHVlnTKy550NnJTV3Nyt9o0aVOn53WffhgNLvy0U1ksCpcG4MHv9+B7UZ6cLzZ0 eaEElu8MUEn4ay1hHMyLaXpwRkzJPCybZ+kFJOVx2rzg94Ia9Fhz0IPM+lCV58i9Be 4qZdzBIDu5XunvOCmdgrZVR9ZX5Swz9FTs+r6ZFY=
Date: Tue, 12 May 2020 16:17:09 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2J5LV4RCILMGY53Z54Y4HXLEVBNHHCJRYGUY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3650/issue_event/3329683744@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3650@github.com>
References: <quicwg/base-drafts/pull/3650@github.com>
Subject: Re: [quicwg/base-drafts] s/alarm/timer/ (#3650)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb2e75a697_5d2e3f89e96cd95c22886a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/d7mr5CKBs_GStdRB253IQeIJTrA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 23:17:11 -0000

----==_mimepart_5ebb2e75a697_5d2e3f89e96cd95c22886a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3650 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3650#event-3329683744
----==_mimepart_5ebb2e75a697_5d2e3f89e96cd95c22886a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="617023142" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3650" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3650/hovercard" href="https://github.com/quicwg/base-drafts/pull/3650">#3650</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3650#event-3329683744">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2XKEMGD2KOULIYT5TRRHKHLANCNFSM4M7H4QTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4I2MMCDW5GJD3Q7UDRRHKHLA5CNFSM4M7H4QT2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOYZ3PCIA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3650#event-3329683744",
"url": "https://github.com/quicwg/base-drafts/pull/3650#event-3329683744",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb2e75a697_5d2e3f89e96cd95c22886a--


From nobody Tue May 12 16:18:04 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 296223A0C7E for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:18:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 chK8M0yE2bPD for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:17:59 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C1D373A0C74 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:17:59 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id E63052C1988 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:17:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325478; bh=af5mNOZJpkpyjsfyz0dwkrsQEpFrYVmgZC3sKya3Xwo=; h=Date:From:To:Subject:From; b=Hjoe8PC+UX/ohtbWzIqTj0i0YKcfP2RqXqaMDNl0OVAJkVSuvF413CUtxWzyNWODh fMKQ6AET9Q94zPmBk3DWWJHV2eewc8lEatU6HJg8cH03daF3iVUHt9HdIB3xO+Zj4E Xbz/8bpJkGzjlSGX3+H95xt1Txpnj7zcg+qHKPLI=
Date: Tue, 12 May 2020 16:17:58 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a4ae55-8127d1@github.com>
Subject: [quicwg/base-drafts] 8127d1: Script updating gh-pages from 444638c1. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NzI650ga1RvG13gKk5hulYd7q-I>
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: Tue, 12 May 2020 23:18:01 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8127d1bd009ac0ec7cb847d0ba8f759a5ce949aa
      https://github.com/quicwg/base-drafts/commit/8127d1bd009ac0ec7cb847d0ba8f759a5ce949aa
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 444638c1. [ci skip]



From nobody Tue May 12 16:22:38 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 4E2CF3A0C74 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:22:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.655
X-Spam-Level: 
X-Spam-Status: No, score=-1.655 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 p1AgxEGJa-Nm for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 16:22:36 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0E5983A0C73 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:22:36 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 66CA8A0DF0 for <quic-issues@ietf.org>; Tue, 12 May 2020 16:22:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589325755; bh=LbZJ9UcCpyvq7cFwk3LhEWMMiiHGmidNlSsk4snb0Rc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DXFU3cLfzOEerVmRr6pMRQrBW9MMhH8eJk59QnpLDI+WbjuOp2tKopyjtPYiDaN2v KK3FNKwJF0TIuHsT2kdEUQHL4IjVGl2eCSC1TYVULn3/Xasbgb8pvkA5vn3FeIGI6z nk3D+xRJ7FbE8JZPWAqFtKJw9xoKOP51DjzQo108=
Date: Tue, 12 May 2020 16:22:35 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYQRU3A6TNNFR2DDIF4Y4ILXEVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/410489336@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb2fbb56a19_5c593fb92a2cd96817169b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MY1_otC4noEFo8EmY_tA18CHZ1k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 12 May 2020 23:22:37 -0000

----==_mimepart_5ebb2fbb56a19_5c593fb92a2cd96817169b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -1084,9 +1084,10 @@ Sending a RETIRE_CONNECTION_ID frame indicates that the connection ID will not
 be used again and requests that the peer replace it with a new connection ID
 using a NEW_CONNECTION_ID frame.
 
-As discussed in {{migration-linkability}}, endpoints limit the use of a
-connection ID to a single network path where possible. Endpoints SHOULD retire
-connection IDs when no longer actively using the network path on which the
+As discussed in {{migration-linkability}}, endpoints MUST limit the use of a

```suggestion
As discussed in {{migration-linkability}}, endpoints limit the use of a
```
There is an exception in the referenced text that isn't repeated here.  We don't need to repeat that, so it is best to keep this as advisory text.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#discussion_r424088541
----==_mimepart_5ebb2fbb56a19_5c593fb92a2cd96817169b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3589#discussi=
on_r424088541">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1084,9 +1084,10 @@ Sending a RETIRE_CO=
NNECTION_ID frame indicates that the connection ID will not=0D
 be used again and requests that the peer replace it with a new connectio=
n ID=0D
 using a NEW_CONNECTION_ID frame.=0D
 =0D
-As discussed in {{migration-linkability}}, endpoints limit the use of a=0D=

-connection ID to a single network path where possible. Endpoints SHOULD =
retire=0D
-connection IDs when no longer actively using the network path on which t=
he=0D
+As discussed in {{migration-linkability}}, endpoints MUST limit the use =
of a=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-As discussed in {{migration-linkability}}, en=
dpoints MUST limit the use of a=0D
+As discussed in {{migration-linkability}}, endpoints limit the use of a=0D=

</pre>=0D
=0D
<p>There is an exception in the referenced text that isn't repeated here.=
  We don't need to repeat that, so it is best to keep this as advisory te=
xt.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3589#discussion_r424088541">view it on GitHub</a>, or=
 <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK6VYZ7=
WZP6YQOPTUWLRRHK3XANCNFSM4MMG45IQ">unsubscribe</a>.<img src=3D"https://gi=
thub.com/notifications/beacon/AFTOJK37FQZXV23QBBASQ23RRHK3XA5CNFSM4MMG45I=
2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODB3Z=
D6A.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r42=
4088541",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r42408=
8541",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebb2fbb56a19_5c593fb92a2cd96817169b--


From nobody Tue May 12 17:17:49 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 6358A3A0CA4 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:17:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 fdwBVL2OXiw5 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:17:46 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 59ABA3A0C08 for <quic-issues@ietf.org>; Tue, 12 May 2020 17:17:46 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 81201C6007F for <quic-issues@ietf.org>; Tue, 12 May 2020 17:17:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589329063; bh=fB0xLVPczruNaTNfG7kik8tjq/wsyEGm/vS9vtP4N9M=; h=Date:From:To:Subject:From; b=a9/sih4YS3qMErMIxUyKlcVRf+BxTf/UAvQ6OrWWUT14qFifu7QWRBQb1lduAMDDf ueRq1xxB5EMpUPZAVWSJuEG030axj/1VbZxJBMmx/zUcrnRTkBL+23DeGmYRiB6iHG XJFdzUi1dzjwBCS77FJozTckRknLvjAgSl5fyU0U=
Date: Tue, 12 May 2020 17:17:43 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/37eaf7-757914@github.com>
Subject: [quicwg/base-drafts] 757914: Shorter figure line
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vvr4xkzITJQBo1Yzk4DSG46QgrU>
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: Wed, 13 May 2020 00:17:47 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: 75791409cdeafdfdb429024dc1ced0ed104f8648
      https://github.com/quicwg/base-drafts/commit/75791409cdeafdfdb429024dc1ced0ed104f8648
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Shorter figure line



From nobody Tue May 12 17:17:56 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 741DF3A0CA4 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:17:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.724
X-Spam-Level: 
X-Spam-Status: No, score=-1.724 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 FLmF33NfRbWw for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:17:53 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 49AFC3A0C08 for <quic-issues@ietf.org>; Tue, 12 May 2020 17:17:53 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 6A9391C099C for <quic-issues@ietf.org>; Tue, 12 May 2020 17:17:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589329072; bh=bQ2NYPIMV5AHq5140yVvJrl3FrSiv2pNwcy5zJQBYOs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OCXycGiYI4R0IbL9BGaQogoKhDtQVcXAj6K1Mpzlqt5up+7YY0LAcI9QIasQ3LbNW Uh6NQV34CLw+9sxbtSWvnDBeBNeGzWyU81yULf8cG+X7OeOcpR0C7PEp6ZUXSOC3ot uNl6pEah1GNXm3K2672yiTHwNTj1HhA70qr+k2aM=
Date: Tue, 12 May 2020 17:17:52 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/push/5062835320@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb3cb05a636_79253fb1684cd96c109553"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Ir1ExOk59bmORzbFmHBQdfxgc1E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 00:17:54 -0000

----==_mimepart_5ebb3cb05a636_79253fb1684cd96c109553
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

75791409cdeafdfdb429024dc1ced0ed104f8648  Shorter figure line


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630/files/37eaf7e767121467227f3fbade7329a7d7b264f3..75791409cdeafdfdb429024dc1ced0ed104f8648

----==_mimepart_5ebb3cb05a636_79253fb1684cd96c109553
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/75791409cdeafdfdb429024dc1ced0ed104f8648">7579140</a>  Shorter figure line</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3630/files/37eaf7e767121467227f3fbade7329a7d7b264f3..75791409cdeafdfdb429024dc1ced0ed104f8648">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZXC5AQRSRMQOVHYXLRRHRLBANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7YB73L5YUGF7P5P43RRHRLBA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTGOBYGMYDOOKQOVZWQIZVGA3DEOBTGUZTEMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630/files/37eaf7e767121467227f3fbade7329a7d7b264f3..75791409cdeafdfdb429024dc1ced0ed104f8648",
"url": "https://github.com/quicwg/base-drafts/pull/3630/files/37eaf7e767121467227f3fbade7329a7d7b264f3..75791409cdeafdfdb429024dc1ced0ed104f8648",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebb3cb05a636_79253fb1684cd96c109553--


From nobody Tue May 12 17:18:46 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 854B93A0CA4 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:18:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 gJnRCooAeGol for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:18:43 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5B9D33A0C08 for <quic-issues@ietf.org>; Tue, 12 May 2020 17:18:43 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id DBCA08C0930 for <quic-issues@ietf.org>; Tue, 12 May 2020 17:18:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589329121; bh=TgAYCAIU0gywdk+kn18ZZBLv3PdNkg5G2dLgYrWmNgM=; h=Date:From:To:Subject:From; b=gD27JWBxMQxWM1nrXGqfF0y7QoSMQMbGLAKof248FPo1/Bafp14ZhVHKBlvoGNFX+ rUxypJJcuPFBh4J0Gal4waK8ZiMJKm9v75EMSoGAOZI8bLgJP7A2WoTL3D4QFSAEfX frEthea9WhrT36AqDHB3fnbftIsU49ptohkMjedk=
Date: Tue, 12 May 2020 17:18:41 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8127d1-d33720@github.com>
Subject: [quicwg/base-drafts] d33720: Script updating gh-pages from 75791409. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ATrwEBZbAXVkn_XWBOfzW1IYiGQ>
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: Wed, 13 May 2020 00:18:45 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d33720437ef5d809c61558d7004bd04620a7716e
      https://github.com/quicwg/base-drafts/commit/d33720437ef5d809c61558d7004bd04620a7716e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-http.html
    M pacing-dfn/draft-ietf-quic-http.txt
    M pacing-dfn/draft-ietf-quic-invariants.html
    M pacing-dfn/draft-ietf-quic-invariants.txt
    M pacing-dfn/draft-ietf-quic-qpack.html
    M pacing-dfn/draft-ietf-quic-qpack.txt
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt
    M pacing-dfn/draft-ietf-quic-tls.html
    M pacing-dfn/draft-ietf-quic-tls.txt
    M pacing-dfn/draft-ietf-quic-transport.html
    M pacing-dfn/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 75791409. [ci skip]



From nobody Tue May 12 17:51:26 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 AEE973A0B0F for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:51:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 exHwMONJWaKe for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:51:24 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 928DD3A0B0A for <quic-issues@ietf.org>; Tue, 12 May 2020 17:51:24 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 8AE5EC60686 for <quic-issues@ietf.org>; Tue, 12 May 2020 17:51:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589331083; bh=BwTFF/8sIcsnMTnFbeusQo6eetwAy4NSrYoXLyTSX3g=; h=Date:From:To:Subject:From; b=AkbqnOIjENCa4TkZ3EEc9u8RpslQ+8XHE42+/y/WYRYDC3O0/oCbNA3qNKwxtHzrc 83ui7y/a+/SXVEyOv6AxZVUoBn+sYp7pC+pWWkn2qiz2l3oz198+q1REIl8iz0wiPn e5Sy/WbQBu0+BBALHO6GqzMJ5LUsI1Oqkb5T4pRU=
Date: Tue, 12 May 2020 17:51:23 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/max-udp-pmtud/000000-d08172@github.com>
Subject: [quicwg/base-drafts] d08172: Include max_udp_payload_size in packet size discus...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DRpr3QIitjtZn-8h-KZacUwRo20>
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: Wed, 13 May 2020 00:51:26 -0000

  Branch: refs/heads/max-udp-pmtud
  Home:   https://github.com/quicwg/base-drafts
  Commit: d081726ce4ab18213d9cd65fe19cbb82ef2e52e0
      https://github.com/quicwg/base-drafts/commit/d081726ce4ab18213d9cd65fe19cbb82ef2e52e0
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Include max_udp_payload_size in packet size discussion

This isn't a complete dissertation on how clients might choose to use
larger packet sizes.  In particular, it doesn't capture the whole
discussion about starting at a higher size being a way to raise the 1280
to something higher, with the requisite cost being that you might have
failures.  Deciding to put that in would be much harder.

What this does is just say that the transport parameter acts as a
further limit on packet size and that you won't know that prior to
knowing.  That means that you are guessing about the network path AND
your peer when you decide to send >1200 (to be fair, the former really
only applies for IPv4, and it's not much of a guess).

Closes #3638.



From nobody Tue May 12 17:51:59 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 6409A3A0B0F for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:51:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.268
X-Spam-Level: 
X-Spam-Status: No, score=-3.268 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 pEIzqdrgw0je for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:51:57 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0358F3A0B0A for <quic-issues@ietf.org>; Tue, 12 May 2020 17:51:56 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 159D46A07E0 for <quic-issues@ietf.org>; Tue, 12 May 2020 17:51:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589331116; bh=fr1Qd4rMpwMv/pBvoy+14S01AcfcsoekKmZFKLKmPUg=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=EJMNSWhkRww5UdgI8G8CEEWu0h/rAEH/Jf/xJIE/qXSEY4kXsY7AHev2c1I9gw1vd UwjMTH+b84T1Nq0ORXTwHsgB7cnISeoVknVJ3iKtPVtUCFRLKk5cvXF4boqg2CDj4k t2WpNh+o5oQhdO7999D1oFujuMpyxgLO+UHX8McI=
Date: Tue, 12 May 2020 17:51:56 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ554AI4XE7JHM4JX54Y4S2ZEVBNHHCJR4Q6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3651@github.com>
Subject: [quicwg/base-drafts] Include max_udp_payload_size in packet size discussion (#3651)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb44ac6ce1_49253fb7690cd9641582ad"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_Tzqn-21NYe_gjeFhFHGQKYI36E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 00:51:58 -0000

----==_mimepart_5ebb44ac6ce1_49253fb7690cd9641582ad
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This isn&#39;t a complete dissertation on how clients might choose to use
larger packet sizes.  In particular, it doesn&#39;t capture the whole
discussion about starting at a higher size being a way to raise the 1280
to something higher, with the requisite cost being that you might have
failures.  Deciding to put that in would be much harder.

What this does is just say that the transport parameter acts as a
further limit on packet size and that you won&#39;t know that prior to
knowing.  That means that you are guessing about the network path AND
your peer when you decide to send &gt;1200 (to be fair, the former really
only applies for IPv4, and it&#39;s not much of a guess).

Closes #3638.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3651

-- Commit Summary --

  * Include max_udp_payload_size in packet size discussion

-- File Changes --

    M draft-ietf-quic-transport.md (28)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3651.patch
https://github.com/quicwg/base-drafts/pull/3651.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3651

----==_mimepart_5ebb44ac6ce1_49253fb7690cd9641582ad
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This isn't a complete dissertation on how clients might choose to use<br>
larger packet sizes.  In particular, it doesn't capture the whole<br>
discussion about starting at a higher size being a way to raise the 1280<br>
to something higher, with the requisite cost being that you might have<br>
failures.  Deciding to put that in would be much harder.</p>
<p>What this does is just say that the transport parameter acts as a<br>
further limit on packet size and that you won't know that prior to<br>
knowing.  That means that you are guessing about the network path AND<br>
your peer when you decide to send &gt;1200 (to be fair, the former really<br>
only applies for IPv4, and it's not much of a guess).</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3638.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="615059737" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3638" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3638/hovercard" href="https://github.com/quicwg/base-drafts/issues/3638">#3638</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3651'>https://github.com/quicwg/base-drafts/pull/3651</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Include max_udp_payload_size in packet size discussion</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3651/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (28)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3651.patch'>https://github.com/quicwg/base-drafts/pull/3651.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3651.diff'>https://github.com/quicwg/base-drafts/pull/3651.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3651">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3BP735NVM4AESD4GTRRHVKZANCNFSM4M7JQFQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6QQT5TUFQHT5ZRMVDRRHVKZA5CNFSM4M7JQFQKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JGHSD2Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3651",
"url": "https://github.com/quicwg/base-drafts/pull/3651",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebb44ac6ce1_49253fb7690cd9641582ad--


From nobody Tue May 12 17:52:11 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 A43F03A0B0F for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:52:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 CYFhz9n25d5S for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:52:09 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 926BF3A0B0A for <quic-issues@ietf.org>; Tue, 12 May 2020 17:52:09 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id AC231960729 for <quic-issues@ietf.org>; Tue, 12 May 2020 17:52:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589331128; bh=Y0fspP+l949KZPhG72yUmAUaw0oeKzUHovGJCapW0Sg=; h=Date:From:To:Subject:From; b=JRyzDwS7kh/TJO2YMm1NGqEA1I+3RvhzPADxzMNnKNJ5dWCtYdEL0c5Zx+Qnr8g1m rsDU1RbF/x6JdPOLdNyQwEoOK6mjU3riaq2inoPmLv2YGbM7F+1kGD8N9gAfkd3x16 BbvSy/8YlVZN5OSKiNSseyUQ8jqirleuWvrE9470=
Date: Tue, 12 May 2020 17:52:08 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d33720-d9393e@github.com>
Subject: [quicwg/base-drafts] d9393e: Script updating gh-pages from d081726c. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EUOyCgAMlU6a0WWAKis2e2PTAw4>
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: Wed, 13 May 2020 00:52:11 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d9393e271579d94064ca70feafae67fff7e1a5dc
      https://github.com/quicwg/base-drafts/commit/d9393e271579d94064ca70feafae67fff7e1a5dc
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M index.html
    A max-udp-pmtud/draft-ietf-quic-http.html
    A max-udp-pmtud/draft-ietf-quic-http.txt
    A max-udp-pmtud/draft-ietf-quic-invariants.html
    A max-udp-pmtud/draft-ietf-quic-invariants.txt
    A max-udp-pmtud/draft-ietf-quic-qpack.html
    A max-udp-pmtud/draft-ietf-quic-qpack.txt
    A max-udp-pmtud/draft-ietf-quic-recovery.html
    A max-udp-pmtud/draft-ietf-quic-recovery.txt
    A max-udp-pmtud/draft-ietf-quic-tls.html
    A max-udp-pmtud/draft-ietf-quic-tls.txt
    A max-udp-pmtud/draft-ietf-quic-transport.html
    A max-udp-pmtud/draft-ietf-quic-transport.txt
    A max-udp-pmtud/index.html

  Log Message:
  -----------
  Script updating gh-pages from d081726c. [ci skip]



From nobody Tue May 12 17:54:01 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 6F9C13A0B15 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:53:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.178
X-Spam-Level: 
X-Spam-Status: No, score=-2.178 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 yfUupHp4qPb6 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:53:58 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 161EC3A0B0F for <quic-issues@ietf.org>; Tue, 12 May 2020 17:53:57 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 9DD2AE0047 for <quic-issues@ietf.org>; Tue, 12 May 2020 17:53:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589331236; bh=u0BC5++E6e+UpbOALYaQ0XZt4qVMWBdx/SXq/rsYtR8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nMsv5BxT82H53hexQClQVEnPOiWaHp4zs9yyE6ak83VTl/Uzuho1R+d84FF152rCC fBy6Mjjimqe0vN++oHDXE+NXvA5Aci1601z3PH0KWn69xgacqCI862f2T7+h4yX01j oWRcBt+SyFmWCD5q6XMQo2w/WqBV6GEAuan+6cG0=
Date: Tue, 12 May 2020 17:53:56 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6V6YXDEFPAFW3DNTV4Y4TCJEVBNHHCJRXOX4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3649/review/410517467@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3649@github.com>
References: <quicwg/base-drafts/pull/3649@github.com>
Subject: Re: [quicwg/base-drafts] [qpack] Table Flip (#3649)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb45248d902_52f63fca3e4cd9641878d1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Z1IgpA8n1oP4emD-zCcWVBdHIEc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 00:53:59 -0000

----==_mimepart_5ebb45248d902_52f63fca3e4cd9641878d1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

@martinthomson approved this pull request.=0D
=0D
This approval is conditional on you changing the title of the commit to:=0D=

=0D
(=E2=95=AF=C2=B0=E2=96=A1=C2=B0)=E2=95=AF=EF=B8=B5 =E2=94=BB=E2=94=81=E2=94=
=BB=0D
=0D
=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3649#pullrequestreview-4105174=
67=

----==_mimepart_5ebb45248d902_52f63fca3e4cd9641878d1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> approved this pull request.</p>=0D
=0D
<p>This approval is conditional on you changing the title of the commit t=
o:</p>=0D
<p>(=E2=95=AF=C2=B0=E2=96=A1=C2=B0)=E2=95=AF=EF=B8=B5 =E2=94=BB=E2=94=81=E2=
=94=BB</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3649#pullrequestreview-410517467">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K6CDG23OUK7CVYD25LRRHVSJANCNFSM4M7HSBEA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK4ZQFTPUH2NZOOMUPDRRHVSJA5CNFSM4=
M7HSBEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODB377WY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3649#pullrequestrev=
iew-410517467",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3649#pullrequestreview=
-410517467",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebb45248d902_52f63fca3e4cd9641878d1--


From nobody Tue May 12 17:59:18 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 903B83A0CCA for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:59:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 sPtXBLvmO0iX for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 17:59:16 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D22C93A0CC7 for <quic-issues@ietf.org>; Tue, 12 May 2020 17:59:15 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 195412C112F for <quic-issues@ietf.org>; Tue, 12 May 2020 17:59:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589331555; bh=eFRP+UQvxQ2hqGDbd44C0cAqKt7vfc0odL6eSbT4BsI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TP+/5M2UvMiFGE/kK0XfJIa8hDBBV7zc89TLvcTd3MPlPPVSWQL/BdEwjOC/wVMdI M8MNAftWEg9oN1PszV5Wj4SzwGDQdYbesxgB7AX7xERBeZ7+bTOyL5PrKx8CDYY8/c q5i1GRrOHAR5i6WM4K8gfDIvBskdLu7tJScw+BJ8=
Date: Tue, 12 May 2020 17:59:15 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7DHEHS2ZNNXWCY2JN4Y4TWHEVBNHHCJRXALY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3648/review/410518848@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3648@github.com>
References: <quicwg/base-drafts/pull/3648@github.com>
Subject: Re: [quicwg/base-drafts] QPACK acknowledgements (#3648)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb46633d1c_15783fcb3a4cd96c223293"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nQXivjsA64x48YDhjbYTY4BU7_U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 00:59:18 -0000

----==_mimepart_5ebb46633d1c_15783fcb3a4cd96c223293
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.



>  
-* Patrick McManus
+The compression design team did substantial work exploring the problem space and
+influencing the initial draft.  The contributions of design team members Roberto
+Peon, Martin Thomson and Dmitri Tikhonov is gratefully acknowledged.

Oxford comma

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3648#pullrequestreview-410518848
----==_mimepart_5ebb46633d1c_15783fcb3a4cd96c223293
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3648#discussion_r424115319">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt;  
-* Patrick McManus
+The compression design team did substantial work exploring the problem space and
+influencing the initial draft.  The contributions of design team members Roberto
+Peon, Martin Thomson and Dmitri Tikhonov is gratefully acknowledged.
</pre>
<p>Oxford comma</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3648#pullrequestreview-410518848">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6BH3YARBI66JNVT6TRRHWGHANCNFSM4M7HN7ZA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZYHGAFXPKTNXDXNP3RRHWGHA5CNFSM4M7HN7ZKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODB4AKQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3648#pullrequestreview-410518848",
"url": "https://github.com/quicwg/base-drafts/pull/3648#pullrequestreview-410518848",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb46633d1c_15783fcb3a4cd96c223293--


From nobody Tue May 12 18:53:58 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 496633A0B79 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 18:53:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 wTob8EVNrtu3 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 18:53:56 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 292D83A0B6C for <quic-issues@ietf.org>; Tue, 12 May 2020 18:53:55 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id BFC479602DF for <quic-issues@ietf.org>; Tue, 12 May 2020 18:53:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589334833; bh=MVJJdnWVzjoeebogXxVF800b7komIF4LTr1q63DxnSo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pq8qPXtZR8fKlCyaip4anb/4ptBYwpmH8hGakfzAvN4qJQBRg48q7mbvuJq4CgmG9 F6+pwzqws2kYgsHg7SzGS633HRaFUISX9MplBBBmke5QqQebyqaAQgymkpQkF1Sxcm yw2JdBsbQh0pQQL4tjJh4FBUylf3QomnUNJhxA1M=
Date: Tue, 12 May 2020 18:53:53 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2XVLZTYKIP6K4KSUF4Y42DDEVBNHHCJR4Q6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3651/review/410535433@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3651@github.com>
References: <quicwg/base-drafts/pull/3651@github.com>
Subject: Re: [quicwg/base-drafts] Include max_udp_payload_size in packet size discussion (#3651)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb5331b02ad_66a73fbcde4cd968441472"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WGn880cezvmhnoxL2T2X0gSnXzQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 01:53:57 -0000

----==_mimepart_5ebb5331b02ad_66a73fbcde4cd968441472
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.

Thanks for updating the adjacent text, this LGTM



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-410535433
----==_mimepart_5ebb5331b02ad_66a73fbcde4cd968441472
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>

<p>Thanks for updating the adjacent text, this LGTM</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-410535433">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4DSOL74RVHFUQGS4TRRH4TDANCNFSM4M7JQFQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY4YL6ROP7MNRR6NSTRRH4TDA5CNFSM4M7JQFQKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODB4EMCI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-410535433",
"url": "https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-410535433",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb5331b02ad_66a73fbcde4cd968441472--


From nobody Tue May 12 19:20:35 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 8E85E3A0CDD for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 19:20:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 4DbNr7LQZVnA for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 19:20:32 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6B77B3A0CDC for <quic-issues@ietf.org>; Tue, 12 May 2020 19:20:32 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 1A29CC61765 for <quic-issues@ietf.org>; Tue, 12 May 2020 19:20:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589336431; bh=iug9u1uGEMaX6CcjruWKMUG1qztM9NBxkUiijkHQfSA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UezLoqfDfWjFhnLMhcWMEcW3PxGcMOkkzXdWR4sLNkyc31XGDjv4wJGefC5NxIOkq II10juSb7Hr5QYS4WTrnLY1av0XgMg4vY83gNVUaqvmaf2HNEynHDkJ2i5pMrn+Rgw rwx6D6ok47iFl/sEXyuUG12a/3WM8U05V9hmFayc=
Date: Tue, 12 May 2020 19:20:31 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYMPC6GVVEFKVFCTXV4Y45G7EVBNHHCJR4Q6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3651/review/410543402@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3651@github.com>
References: <quicwg/base-drafts/pull/3651@github.com>
Subject: Re: [quicwg/base-drafts] Include max_udp_payload_size in packet size discussion (#3651)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb596fae2d_49213fb7690cd96448003f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dd7T1CZA2Xek3MIbZrM8mqiOxB4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 02:20:34 -0000

----==_mimepart_5ebb596fae2d_49213fb7690cd96448003f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-410543402
----==_mimepart_5ebb596fae2d_49213fb7690cd96448003f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-410543402">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYIXSX23F7KHSNPGXTRRH7W7ANCNFSM4M7JQFQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6G4J5HEWLK47OUAU3RRH7W7A5CNFSM4M7JQFQKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODB4GKKQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-410543402",
"url": "https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-410543402",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb596fae2d_49213fb7690cd96448003f--


From nobody Tue May 12 21:31:46 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 196E13A0D4E for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 21:31:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 B44RWJBk9AKo for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 21:31:44 -0700 (PDT)
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 018CD3A0D4C for <quic-issues@ietf.org>; Tue, 12 May 2020 21:31:43 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 48BA2282AD7 for <quic-issues@ietf.org>; Tue, 12 May 2020 21:31:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589344302; bh=76kwcHO32rNnlxLA2/aiYlQ4PZgLjeWmuxpCnfS3QaY=; h=Date:From:To:Subject:From; b=N4TE7vo7j4gl+Tm8HZ9aSpurcjQIs1L2JdKmZEbk44XtTQ/PwcDrCHfg4PlrIOPnS XWiekoOvCN91rbYYr+tGTzH3qAAn1C1iDygmIGWtiOxJiiEW0h6xwC9dodR1KxvDmm O0rj28R0y3os8RYU0qfg8f95L402C5rtk+YPNVjU=
Date: Tue, 12 May 2020 21:31:42 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/active-cid-limit-rpt/b61358-8c7e60@github.com>
Subject: [quicwg/base-drafts] 8c7e60: Attempt at rewording the NEW_CONNECITON_ID/Retire ...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ljyGN0jxfRJEgO39B2yr-f7lz_A>
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: Wed, 13 May 2020 04:31:45 -0000

  Branch: refs/heads/active-cid-limit-rpt
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8c7e6033f60b5064780338971de611723f3c1c09
      https://github.com/quicwg/base-drafts/commit/8c7e6033f60b5064780338971de611723f3c1c09
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Attempt at rewording the NEW_CONNECITON_ID/Retire Prior To validation rule



From nobody Tue May 12 21:31:54 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 AB4463A0D4D for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 21:31:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.724
X-Spam-Level: 
X-Spam-Status: No, score=-1.724 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 RvJkhajgKA5e for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 21:31:51 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 73FB03A0D4C for <quic-issues@ietf.org>; Tue, 12 May 2020 21:31:51 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id A87916A06CD for <quic-issues@ietf.org>; Tue, 12 May 2020 21:31:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589344310; bh=VcL/cxZVNAdl17FwwuHM5llop3vqw5Y0gazpajLpu7g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=J9umAZrUt6zMF59O0quW68p5SyFlAwMRLKM3kIBQd5NR+umsdRfu0/CS35Kf+ElgX ttf80m3n7XvwxfOTSpamzLoFXW7BCHD+11OLwMve3eSCcIoUisHMCIXvTOxYh/PtIE qi6rSB9eWnxzb/JR01Aa2uvDQg2wk4lFOQ1jxO3A=
Date: Tue, 12 May 2020 21:31:50 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/push/5063570995@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb78369875b_4f4d3fdbfb0cd96c44477"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4KHIUS1idC84F64twNpmOeL5QR0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 04:31:53 -0000

----==_mimepart_5ebb78369875b_4f4d3fdbfb0cd96c44477
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

8c7e6033f60b5064780338971de611723f3c1c09  Attempt at rewording the NEW_CONNECITON_ID/Retire Prior To validation rule


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643/files/b61358a381f7f6ce19f2432b500453aefa1ae257..8c7e6033f60b5064780338971de611723f3c1c09

----==_mimepart_5ebb78369875b_4f4d3fdbfb0cd96c44477
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/8c7e6033f60b5064780338971de611723f3c1c09">8c7e603</a>  Attempt at rewording the NEW_CONNECITON_ID/Retire Prior To validation rule</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3643/files/b61358a381f7f6ce19f2432b500453aefa1ae257..8c7e6033f60b5064780338971de611723f3c1c09">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2GXXIFINLHX5ULALTRRIPDNANCNFSM4M6L6D2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4EVILMBMQ52MEZIRLRRIPDNA5CNFSM4M6L6D2KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTMNBRHE3DEMKQOVZWQIZVGA3DGNJXGA4TSNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3643/files/b61358a381f7f6ce19f2432b500453aefa1ae257..8c7e6033f60b5064780338971de611723f3c1c09",
"url": "https://github.com/quicwg/base-drafts/pull/3643/files/b61358a381f7f6ce19f2432b500453aefa1ae257..8c7e6033f60b5064780338971de611723f3c1c09",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebb78369875b_4f4d3fdbfb0cd96c44477--


From nobody Tue May 12 21:32:03 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 00FD43A0D4D for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 21:32:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KVifRaBUy2jK for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 21:32:00 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C11203A0D4C for <quic-issues@ietf.org>; Tue, 12 May 2020 21:32:00 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 19EFBA05FF for <quic-issues@ietf.org>; Tue, 12 May 2020 21:32:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589344320; bh=UQvVf8unFyO2AeNnx/Om1Q5o3t35i5Qpy4JWcVy5OEI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BIN9UuOJWkTuR+S1yrAl2AEx9+PuWnIhqw7GyFNn2+IQN9XwHWwDhZbch3l51BJ4h MMX53BxOlvStY3wjeBUH8kQ8QqTYSEpf7k7p/xRD1pJVeNmyEgDaJWwet3y1zoRz0h UiWFZkLBn2QQFN6TwTMRoEixYzJ9gab7iqxSTVyM=
Date: Tue, 12 May 2020 21:32:00 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6RCFVGD4LGILGTLEN4Y5MUBEVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/review/410579821@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb78409a2a_6ef43fd6c8acd968973a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WSDlhJbQPxjQR_bfUqyuH_whPBw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 04:32:02 -0000

----==_mimepart_5ebb78409a2a_6ef43fd6c8acd968973a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +will stay within the limit.  An endpoint that receives more connection IDs than
+its advertised active_connection_id_limit MUST close the connection with an
+error of type CONNECTION_ID_LIMIT_ERROR.

I took another tilt at this one.  It's very awkward though.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643#discussion_r424166555
----==_mimepart_5ebb78409a2a_6ef43fd6c8acd968973a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3643#discussion_r424166555">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +will stay within the limit.  An endpoint that receives more connection IDs than
+its advertised active_connection_id_limit MUST close the connection with an
+error of type CONNECTION_ID_LIMIT_ERROR.
</pre>
<p>I took another tilt at this one.  It's very awkward though.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3643#discussion_r424166555">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK67UHKWKKAW52DS5S3RRIPEBANCNFSM4M6L6D2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5TWRMK3QZM54JDUI3RRIPEBA5CNFSM4M6L6D2KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODB4PG3I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3643#discussion_r424166555",
"url": "https://github.com/quicwg/base-drafts/pull/3643#discussion_r424166555",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebb78409a2a_6ef43fd6c8acd968973a--


From nobody Tue May 12 21:33:08 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 790C23A0D4D for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 21:33:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 az5bcvCoXpps for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 21:33:06 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6B2E43A0D3B for <quic-issues@ietf.org>; Tue, 12 May 2020 21:33:06 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 8B24E52008C for <quic-issues@ietf.org>; Tue, 12 May 2020 21:33:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589344385; bh=WYapRNguG9MraY3yVFSBoJxwY9qWfe9aIfcsrBIjctI=; h=Date:From:To:Subject:From; b=DbJEIA0QG1HlpUj7JuvXeSXTRHhRJxGGoxsOTcx6Oi97v8nZz3fD6QzNzznBfsBrb ObvvAhjc8IZVz11qsP31n54HReb9YM2ctJGPUUJDv7ZLIXITjm6XOtW1HUBeaUhNTW /sileFt0k4EYjIvPnLmBk717MWMr3CzGnjM8065s=
Date: Tue, 12 May 2020 21:33:05 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d9393e-02401c@github.com>
Subject: [quicwg/base-drafts] 02401c: Script updating gh-pages from 8c7e6033. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8GsMbzw_4a_qVkJWDhV1vBYiycg>
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: Wed, 13 May 2020 04:33:07 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 02401c98f0aa00cb7311f14d4434d1e04bfc4a79
      https://github.com/quicwg/base-drafts/commit/02401c98f0aa00cb7311f14d4434d1e04bfc4a79
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M active-cid-limit-rpt/draft-ietf-quic-http.html
    M active-cid-limit-rpt/draft-ietf-quic-http.txt
    M active-cid-limit-rpt/draft-ietf-quic-invariants.html
    M active-cid-limit-rpt/draft-ietf-quic-invariants.txt
    M active-cid-limit-rpt/draft-ietf-quic-qpack.html
    M active-cid-limit-rpt/draft-ietf-quic-qpack.txt
    M active-cid-limit-rpt/draft-ietf-quic-recovery.html
    M active-cid-limit-rpt/draft-ietf-quic-recovery.txt
    M active-cid-limit-rpt/draft-ietf-quic-tls.html
    M active-cid-limit-rpt/draft-ietf-quic-tls.txt
    M active-cid-limit-rpt/draft-ietf-quic-transport.html
    M active-cid-limit-rpt/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 8c7e6033. [ci skip]



From nobody Tue May 12 22:39:39 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 493B23A0DAF for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 22:39:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 7LEsQwmFBsrn for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 22:39:34 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2164E3A0DB1 for <quic-issues@ietf.org>; Tue, 12 May 2020 22:39:34 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id D30DC8C052B for <quic-issues@ietf.org>; Tue, 12 May 2020 22:39:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589348372; bh=X/uahj6uZ3ZPMd1LxdlkiTfYi1zF9PPteii6BS/HOaQ=; h=Date:From:To:Subject:From; b=ajfZ8LmbwT1Ov3p1w/5LLVUeAYL6RNWEaSEJ3z60hrCnx0DCRQ1tLYHLXSThGVsQA m75/CWdhtJ57obfbY2fUOSwXZFWLDbm9CUdn04BhKHZ0YBE38RhKwCWNV6SLWjMSz0 H0Kz/c95SBptY071jrFZ7cckyybNk1/tqY0VisZA=
Date: Tue, 12 May 2020 22:39:32 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/lint-args/000000-abcb20@github.com>
Subject: [quicwg/base-drafts] abcb20: Convert command-line arguments to integers
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/y5Hy9_WRQPG6Xl7XubmC4FN61UQ>
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: Wed, 13 May 2020 05:39:37 -0000

  Branch: refs/heads/lint-args
  Home:   https://github.com/quicwg/base-drafts
  Commit: abcb20da2d769c0ffe9eaeea94b10730d61e82fb
      https://github.com/quicwg/base-drafts/commit/abcb20da2d769c0ffe9eaeea94b10730d61e82fb
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M .lint.py

  Log Message:
  -----------
  Convert command-line arguments to integers

Then black did its thing.



From nobody Tue May 12 22:40:00 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 985F33A0DB1 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 22:39:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.726
X-Spam-Level: 
X-Spam-Status: No, score=-1.726 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 tf4jC1uOU6cL for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 22:39:57 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D29D43A0DAF for <quic-issues@ietf.org>; Tue, 12 May 2020 22:39:56 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 32DC5261640 for <quic-issues@ietf.org>; Tue, 12 May 2020 22:39:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589348396; bh=ndxZY3j5VJ/OQqPa004TBTo+vejNpR4l0bkkESVKVPk=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=nJxDX7U5EHw3l20Xk6d+wjV84kIfay3GHqrY6ZOdspGvg4cwDEnx5EgPN7ub3l1/t tsxJg+iQqWBMY0nAlrzrPr7OziF7ZJmE91xLp1QBeOqasKXEaTEndK7OLZIXLHnoVa lThWcuL90u8KvA/r2TepuR9TVgeyJ3zdCy8sE7Gs=
Date: Tue, 12 May 2020 22:39:55 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6T4QYBL6664E7NKOF4Y5USXEVBNHHCJSIVDI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3652@github.com>
Subject: [quicwg/base-drafts] Convert command-line arguments to integers (#3652)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebb882be0f6c_64bb3f926accd9688369"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/A6x9wNSeLvV6_n8w1ZE-eSiMbxA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 05:39:59 -0000

----==_mimepart_5ebb882be0f6c_64bb3f926accd9688369
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Then black did its thing.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3652

-- Commit Summary --

  * Convert command-line arguments to integers

-- File Changes --

    M .lint.py (6)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3652.patch
https://github.com/quicwg/base-drafts/pull/3652.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3652

----==_mimepart_5ebb882be0f6c_64bb3f926accd9688369
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Then black did its thing.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3652'>https://github.com/quicwg/base-drafts/pull/3652</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Convert command-line arguments to integers</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3652/files#diff-5b471e040f65c2bb2af9c28e331ee47e">.lint.py</a>
    (6)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3652.patch'>https://github.com/quicwg/base-drafts/pull/3652.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3652.diff'>https://github.com/quicwg/base-drafts/pull/3652.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3652">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYB224SHE23JPPQOA3RRIXCXANCNFSM4M7NWOTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7E5B7WCPJ3VOYG4H3RRIXCXA5CNFSM4M7NWOT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JGJCUNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3652",
"url": "https://github.com/quicwg/base-drafts/pull/3652",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebb882be0f6c_64bb3f926accd9688369--


From nobody Tue May 12 22:40:24 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 AC6E43A0DB1 for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 22:40:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 mEnCi58VZ5rS for <quic-issues@ietfa.amsl.com>; Tue, 12 May 2020 22:40:20 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A5DED3A0DAF for <quic-issues@ietf.org>; Tue, 12 May 2020 22:40:20 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id DBCC652003C for <quic-issues@ietf.org>; Tue, 12 May 2020 22:40:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589348419; bh=Okyu8wk/Fiy5aWvw8RuUgz8u7GExqzS8VYrjnu3+r8M=; h=Date:From:To:Subject:From; b=gCnDA/DuKfv3rWBMghGuFZnzr43AgHmaYE+/Y4bYGwTl9v0DxxNz4tq8cpbyvgPvh hE7qdikpo3H1S11K3yW3Q3CtjRIDQ7hSdR1gSSD9MbezpZ7Ti0nbdFoES9297+IShQ mIsAVjqQFdjNiBye2Q3p9f5GnYcshc/ckmTTN9u4=
Date: Tue, 12 May 2020 22:40:19 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/02401c-dcb41b@github.com>
Subject: [quicwg/base-drafts] dcb41b: Script updating gh-pages from abcb20da. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-xTxWHc7erF2lS04FS2jFLwfclw>
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: Wed, 13 May 2020 05:40:23 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: dcb41b63c9b593e8c11f049a6204e98ac5c18f95
      https://github.com/quicwg/base-drafts/commit/dcb41b63c9b593e8c11f049a6204e98ac5c18f95
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M index.html
    A lint-args/draft-ietf-quic-http.html
    A lint-args/draft-ietf-quic-http.txt
    A lint-args/draft-ietf-quic-invariants.html
    A lint-args/draft-ietf-quic-invariants.txt
    A lint-args/draft-ietf-quic-qpack.html
    A lint-args/draft-ietf-quic-qpack.txt
    A lint-args/draft-ietf-quic-recovery.html
    A lint-args/draft-ietf-quic-recovery.txt
    A lint-args/draft-ietf-quic-tls.html
    A lint-args/draft-ietf-quic-tls.txt
    A lint-args/draft-ietf-quic-transport.html
    A lint-args/draft-ietf-quic-transport.txt
    A lint-args/index.html

  Log Message:
  -----------
  Script updating gh-pages from abcb20da. [ci skip]



From nobody Wed May 13 06:08:54 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 B23EA3A0AFA for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:08:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 M9FPB4qH9VrD for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:08:51 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9598A3A0AF8 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:08:51 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 6FED26A08AF for <quic-issues@ietf.org>; Wed, 13 May 2020 06:08:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589375330; bh=JB5Q+3V1Hx2I6bF1YgGZWeYfkCxyXnh6XYB+7VogUQY=; h=Date:From:To:Subject:From; b=1OIogIwyKrH+vNd3fj5+Q99sLVmyWd1X/R/8KwDIcS3OXExm5XbQNxkPwiuwdNAoi wP93+hAL0vMS+pde6OODfrUJo2g4tu7xZbl1x30LYk/nV7OTwCR+eTZi0kohnhQ7i7 WWEE3D0fSazT3/Zix1oD59gK8amv+GPFV79DLJME=
Date: Wed, 13 May 2020 06:08:50 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/444638-48825d@github.com>
Subject: [quicwg/base-drafts] 010574: Limit sending by the anti-amplification factor
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SXGbIz-hLsU2QGOV3R9wukowFZo>
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: Wed, 13 May 2020 13:08:53 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 010574ee63c0cc9af3ed84758e91e13beffe55bf
      https://github.com/quicwg/base-drafts/commit/010574ee63c0cc9af3ed84758e91e13beffe55bf
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Limit sending by the anti-amplification factor

Fixes #3639


  Commit: c8fa3f8b1a97d520b177470fe2f57451c875c91c
      https://github.com/quicwg/base-drafts/commit/c8fa3f8b1a97d520b177470fe2f57451c875c91c
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 48825d06241bbed760a5d9e35ff60a43fbb8457c
      https://github.com/quicwg/base-drafts/commit/48825d06241bbed760a5d9e35ff60a43fbb8457c
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3640 from quicwg/ianswett-anti-amplification

Limit sending by the anti-amplification factor


Compare: https://github.com/quicwg/base-drafts/compare/444638c184f1...48825d06241b


From nobody Wed May 13 06:09:03 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 938CF3A0AFA for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:08:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 Br7TgGdJe0UU for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:08:52 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 69F7F3A0AF9 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:08:52 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 499A28C03A0 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:08:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589375331; bh=NNL2gIBCCjdRC6NaLi7Ma/5qlckzHY7JEDwMdUza55c=; h=Date:From:To:Subject:From; b=dR9t8N1NtY93J6KNjbpa1SP+6N7/0LdVCaxahWzF1hgMM5yc3ooI23EjIKP6NCdPH CAbF10SjIeQu0MqjPusVmfUmnvt4M6TB5XdLJ31UaTbJZWmTUAYuW1or2ImD/PZRRw S5NMJH5bjV0JklZ/gCcKkBTJ+MRxgGOzyAFOc9M0=
Date: Wed, 13 May 2020 06:08:51 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-anti-amplification/c8fa3f-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JqJnu-65ZrBpbq8EHsAxCg3_PAw>
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: Wed, 13 May 2020 13:08:54 -0000

  Branch: refs/heads/ianswett-anti-amplification
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed May 13 06:09:07 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 1E33E3A0B07 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:09:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 w5u_QarhSyuE for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:09:00 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C288A3A0B03 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:09:00 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 0BBED660022 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:09:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589375340; bh=FfhAKz5gQs9OsbOGee24BfvQuFkjm+BnRRXmQaoKAsQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=w9H/fiSZSNpqQxNH7YSWoPtg+ahufJ/MFjyETWSx5yOn0DV+2T3qCd2uIduCj1FXP mZYa2hicb1WGE23xwZ8kaIQhaxjA4nOxmwQiQTZ+OnVq9k5veyBJwow2AIPkkTgRVd DPaFSf730dns92DPxPVGCC3fv0wcg+CXvdkBTrdk=
Date: Wed, 13 May 2020 06:08:59 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYHRPHI43LOFMETZIF4Y7JGXEVBNHHCJL2E7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3640/issue_event/3331984328@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3640@github.com>
References: <quicwg/base-drafts/pull/3640@github.com>
Subject: Re: [quicwg/base-drafts] Limit sending by the anti-amplification factor (#3640)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebbf16bf15ce_91c3fae856cd96446906"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rQsUFx-dBU58Wh-RHZzbtbAdyaA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 13:09:02 -0000

----==_mimepart_5ebbf16bf15ce_91c3fae856cd96446906
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3640 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3640#event-3331984328
----==_mimepart_5ebbf16bf15ce_91c3fae856cd96446906
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="615466234" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3640" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3640/hovercard" href="https://github.com/quicwg/base-drafts/pull/3640">#3640</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3640#event-3331984328">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7ZVAWTD2WR23NRWMLRRKLWXANCNFSM4M5MJEGA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK74RMKCVS5UIGTPOTLRRKLWXA5CNFSM4M5MJEGKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY2NAXSA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3640#event-3331984328",
"url": "https://github.com/quicwg/base-drafts/pull/3640#event-3331984328",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebbf16bf15ce_91c3fae856cd96446906--


From nobody Wed May 13 06:09:10 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 D03623A0B0F for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:09:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.724
X-Spam-Level: 
X-Spam-Status: No, score=-1.724 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 DIqVruRvUGPs for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:09:02 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8F3923A0B0A for <quic-issues@ietf.org>; Wed, 13 May 2020 06:09:02 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id A7179A05E1 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:09:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589375341; bh=2sehtY5CkwGnKM15wlOBqn1RhGRkl4vZMyWZlVXD5UA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0WpgxzqiiHWEc0000VYr6i5ug+xDRBaJL3NQxwj87OEibT3PLTnUcFjRkxOQZMY5P FnsM35I/Y5Oe76t6AvntPUcGs+Rsl0yBr7WRuprcRENX477ZWMJ3CA/05/BePQd6Mc QIHzfs9P62vltbvowhW1KH49rGE6NADvFuv3j7Nc=
Date: Wed, 13 May 2020 06:09:01 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4G6JJ4RCT7YV6UJWN4Y7JG3EVBNHHCJKJEKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3639/issue_event/3331984476@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3639@github.com>
References: <quicwg/base-drafts/issues/3639@github.com>
Subject: Re: [quicwg/base-drafts] Server's first flight should be capped by INITCWND (#3639)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebbf16d98414_47f13fad25acd96c2220c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WpJWS8RcyGXOCr3pr8wGGqY7iHA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 13:09:04 -0000

----==_mimepart_5ebbf16d98414_47f13fad25acd96c2220c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3639 via 010574ee63c0cc9af3ed84758e91e13beffe55bf.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3639#event-3331984476
----==_mimepart_5ebbf16d98414_47f13fad25acd96c2220c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="615064662" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3639" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3639/hovercard" href="https://github.com/quicwg/base-drafts/issues/3639">#3639</a> via <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/quicwg/base-drafts/commit/010574ee63c0cc9af3ed84758e91e13beffe55bf/hovercard" href="https://github.com/quicwg/base-drafts/commit/010574ee63c0cc9af3ed84758e91e13beffe55bf"><tt>010574e</tt></a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3639#event-3331984476">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYO52UKWH2J5OEK433RRKLW3ANCNFSM4M4SWIFQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK362JAOBBXX6PH2VODRRKLW3A5CNFSM4M4SWIF2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY2NAYXA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3639#event-3331984476",
"url": "https://github.com/quicwg/base-drafts/issues/3639#event-3331984476",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebbf16d98414_47f13fad25acd96c2220c--


From nobody Wed May 13 06:09:51 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 846813A0B1D for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:09:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZXrlKpn9NB5z for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:09:49 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1CE123A0B1C for <quic-issues@ietf.org>; Wed, 13 May 2020 06:09:49 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 514962C0DAE for <quic-issues@ietf.org>; Wed, 13 May 2020 06:09:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589375388; bh=4ROrzqmV1DZGNpDGpyL/rsbziYKQG/4x4cJ8SqD7G/Y=; h=Date:From:To:Subject:From; b=so0CBYzyICNwl2TYkKaa2GzV4mvjGAj7WEkHwaM81Tg7f99Yt+/X4NRzIlWgx9Vea zUG82zq6MjT61oqRUbww7/ASc1wqD8PbteKr+x+RIu00zwX5H/m6Jfg8staYkLg5q8 nu3GUGiSS3cjkig8twNSBO5tJpeHpf/FdQs7stF8=
Date: Wed, 13 May 2020 06:09:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/dcb41b-311a5c@github.com>
Subject: [quicwg/base-drafts] 311a5c: Script updating gh-pages from 48825d06. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wEn5-q4sE7Xev7dI_2zU2FMjaPc>
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: Wed, 13 May 2020 13:09:51 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 311a5ce1d8508234e4e8649c7ef86469d784fbb9
      https://github.com/quicwg/base-drafts/commit/311a5ce1d8508234e4e8649c7ef86469d784fbb9
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 48825d06. [ci skip]



From nobody Wed May 13 06:10:04 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 7573A3A0B1A for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:10:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 5OjR3zkFnrQ9 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:10:01 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4241D3A0B19 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:10:01 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 88C832C12B8 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:10:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589375400; bh=9UaDUxHLlZhlirf0HZloKESTzneRiY/atLShj5VkV2Q=; h=Date:From:To:Subject:From; b=YwBbNlzDrdkgiVYWLQQNfDg2JDYWAgVefzc5st1extmp86ZxU1w6OJZkIwmSObNa+ fMRlNijTP2YRlrX2gVlohIGp41XYwjiNaPJMvFxdVVDvQ+i8MCI/V6xxc9yBvgY8x0 xlUadxR9FpkdTkLTypiTwIw013t8Fb/4e2SLs/cs=
Date: Wed, 13 May 2020 06:10:00 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/311a5c-95864a@github.com>
Subject: [quicwg/base-drafts] 95864a: Script updating archive at 2020-05-13T13:09:39Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AlcjiZyxzKu1MZwoBDU7akKAbRY>
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: Wed, 13 May 2020 13:10:03 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 95864a84413cab79ac590fe97c6b966a8fb5623a
      https://github.com/quicwg/base-drafts/commit/95864a84413cab79ac590fe97c6b966a8fb5623a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-13T13:09:39Z. [ci skip]



From nobody Wed May 13 06:10:52 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 C0BDF3A0B1A for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:10:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ewY5k6yH3_OV for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:10:49 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B87303A0B19 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:10:49 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 19FCD520B58 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:10:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589375449; bh=AfaKJPC55C9Qcwoalykah58/ocXNxXzhh6Ni8sBLFGo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YUG8hVpDbTuu5p7VmMBbWWpsgZRzyeQY81eWXkSvVP/tUkMN8lu3vTXYMPCeESfJV KwnNHGYbB7MEw0Vhx9x+WXm2CmkjoGpiQDDkATOTOJGgkN2XxiqXFWeOhOnHvvcbCA Okn3eO7kVdJBP2FWP6nLOaGxtwMTkp/9WzVJS+sE=
Date: Wed, 13 May 2020 06:10:49 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZTP2G64DEWSLKZODN4Y7JNTEVBNHHCJKJEKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3639/issue_event/3331992838@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3639@github.com>
References: <quicwg/base-drafts/issues/3639@github.com>
Subject: Re: [quicwg/base-drafts] Server's first flight should be capped by INITCWND (#3639)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebbf1d96146_e343fb0e9acd96816921a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XgvlF9-09FT7CEjAla1h5zqFbr4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 13:10:51 -0000

----==_mimepart_5ebbf1d96146_e343fb0e9acd96816921a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Reopened #3639.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3639#event-3331992838
----==_mimepart_5ebbf1d96146_e343fb0e9acd96816921a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Reopened <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="615064662" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3639" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3639/hovercard" href="https://github.com/quicwg/base-drafts/issues/3639">#3639</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3639#event-3331992838">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY5EHZEOEHLMXRN3KTRRKL5TANCNFSM4M4SWIFQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6DVWTLU2XCIAE3JN3RRKL5TA5CNFSM4M4SWIF2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY2NC2BQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3639#event-3331992838",
"url": "https://github.com/quicwg/base-drafts/issues/3639#event-3331992838",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebbf1d96146_e343fb0e9acd96816921a--


From nobody Wed May 13 06:10:56 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 8DC473A0B19 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:10:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 wVzhfpv52QR4 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:10:53 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 099603A0B1E for <quic-issues@ietf.org>; Wed, 13 May 2020 06:10:52 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 3F1CB8C00DB for <quic-issues@ietf.org>; Wed, 13 May 2020 06:10:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589375452; bh=jN9K9LgBLcjkadsege/XJWbTfTtcJFp2gU2yLgyW8Lo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kq+tKVkRQsrbr3LUH5RvmYs9SB7YBC7mCZdKz27EfIwUkPRXLBF7URVF5HfKzDX5a 6V5ap2ND7RVlE8ABUZi8KvePVL6vxDr1euTq+k93wlI/xJ6sUDAeIF9ZrrcDelbzT1 YBhCBZzGrUIhf6duOEDVqX9fwlH4YYu6NmSVm5uE=
Date: Wed, 13 May 2020 06:10:52 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6PVIESGRJSEEU2GW54Y7JNZEVBNHHCJKJEKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3639/627973461@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3639@github.com>
References: <quicwg/base-drafts/issues/3639@github.com>
Subject: Re: [quicwg/base-drafts] Server's first flight should be capped by INITCWND (#3639)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebbf1dc2b151_170b3fd2576cd9642094f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/74G8SA9GN25Wcl-p9RHeFcz991s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 13:10:55 -0000

----==_mimepart_5ebbf1dc2b151_170b3fd2576cd9642094f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

At the editor's meeting, we concluded that the pseudocode did not represent the current text about re-arming the PTO alarm.  I merged the first PR because I think it's a nice clarification and I'll send out a PR for the pseudocode.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3639#issuecomment-627973461
----==_mimepart_5ebbf1dc2b151_170b3fd2576cd9642094f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>At the editor's meeting, we concluded that the pseudocode did not represent the current text about re-arming the PTO alarm.  I merged the first PR because I think it's a nice clarification and I'll send out a PR for the pseudocode.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3639#issuecomment-627973461">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY45ZLPAAFP2UGXHOTRRKL5ZANCNFSM4M4SWIFQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK44DRBRD67SX5WSVATRRKL5ZA5CNFSM4M4SWIF2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVXB2VI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3639#issuecomment-627973461",
"url": "https://github.com/quicwg/base-drafts/issues/3639#issuecomment-627973461",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebbf1dc2b151_170b3fd2576cd9642094f--


From nobody Wed May 13 06:47:53 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 7AC453A08D5 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:47:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 F8jk9BGOAhwR for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:47:50 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 503483A08CB for <quic-issues@ietf.org>; Wed, 13 May 2020 06:47:49 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 1397C1C0587 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:47:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589377668; bh=4YT24xrxCR2hPeUAWssGv4eXa8oCXdinVyvH7GskKmg=; h=Date:From:To:Subject:From; b=UKEAiFhjQMhqJd90islNjSmi5YeFnvr22rgTayMmzMZqW8usvGIklQWYLdyS/77YP 49wH7ayNkdGGLiRz6r8eUPMx/5gBqNXmWVcLKpF2lqcdamjETxKtj8KJ/MZdelWIC0 vEk6V71ada9WuX4opV8z1xzoR0zcpsiMa3fP6yf4=
Date: Wed, 13 May 2020 06:47:48 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-onpacketreceived/000000-444401@github.com>
Subject: [quicwg/base-drafts] 444401: Add OnPacketReceived to pseudocode
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tjbNwkDsyrRplyk45kQVEDkkN7w>
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: Wed, 13 May 2020 13:47:52 -0000

  Branch: refs/heads/ianswett-onpacketreceived
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4444017fe3f1f1eb1baf0b00e545b8913be94c7c
      https://github.com/quicwg/base-drafts/commit/4444017fe3f1f1eb1baf0b00e545b8913be94c7c
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Add OnPacketReceived to pseudocode

Pseudocode for re-arming the PTO when "If no additional data can be sent, the server's PTO timer MUST NOT be armed until datagrams have been received from the client, because packets sent on PTO count against the anti-amplification limit. "



From nobody Wed May 13 06:48:19 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 11B813A08CB for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:48:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.651
X-Spam-Level: 
X-Spam-Status: No, score=-1.651 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 CPoCYwkPlCXC for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:48:15 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9DB983A08D5 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:48:15 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id DB5016E1F29 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:48:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589377694; bh=Hbl0WA+UyCMvC2p4c8Gp1jVeOoKraxjFtpcMWs7XElg=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Mju7R1+wVsho0hZRJ+fJdf7Ht4xDeajqHZblhTY6ezAsJ1tlVrMnS5akq/AIDmKTG HA43ZVlZ6nwDSwISzdAGoHxTrlT9rQJIDGqk88LYhAUUIz7qnq38BH0BiX1gq3vmgA RaNHrIqiQtrlmGlWXvFVRfz9EV7DIfMr6YZZBAf8=
Date: Wed, 13 May 2020 06:48:14 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2W6SJR5YSNK7HVS6V4Y7NZ5EVBNHHCJTOADM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653@github.com>
Subject: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebbfa9eca476_48b43fb582ecd96c182228"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HMTVfv4xlNDSplkN-XzFu-N2LCk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 13:48:17 -0000

----==_mimepart_5ebbfa9eca476_48b43fb582ecd96c182228
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Pseudocode for re-arming the PTO when &quot;If no additional data can be sent, the server&#39;s PTO timer MUST NOT be armed until datagrams have been received from the client, because packets sent on PTO count against the anti-amplification limit. &quot;
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3653

-- Commit Summary --

  * Add OnPacketReceived to pseudocode

-- File Changes --

    M draft-ietf-quic-recovery.md (14)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3653.patch
https://github.com/quicwg/base-drafts/pull/3653.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653

----==_mimepart_5ebbfa9eca476_48b43fb582ecd96c182228
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Pseudocode for re-arming the PTO when "If no additional data can be sent, the server's PTO timer MUST NOT be armed until datagrams have been received from the client, because packets sent on PTO count against the anti-amplification limit. "</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3653'>https://github.com/quicwg/base-drafts/pull/3653</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Add OnPacketReceived to pseudocode</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3653/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (14)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3653.patch'>https://github.com/quicwg/base-drafts/pull/3653.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3653.diff'>https://github.com/quicwg/base-drafts/pull/3653.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3653">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6K7WKU5I4FLTTBZX3RRKQJ5ANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6HCO7IR745FZWY37TRRKQJ5A5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JGNYANQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653",
"url": "https://github.com/quicwg/base-drafts/pull/3653",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebbfa9eca476_48b43fb582ecd96c182228--


From nobody Wed May 13 06:48:26 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 1E12B3A08D5 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:48:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.178
X-Spam-Level: 
X-Spam-Status: No, score=-2.178 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 CbZiUrjIgbzL for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:48:22 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D6F343A0ADA for <quic-issues@ietf.org>; Wed, 13 May 2020 06:48:22 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 3E0891C0093 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:48:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589377702; bh=+OBl1TOtyU6PLqtMKB3MDVwye7Og4gkBkGHckSJwWeY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=m2ofrg5BLcMByzfKQSVRqx4Zy5tvYGzFHNrojpbflrgNNPOllhVKGLcO0rXemn9Hy Q1XBkVWtJtLqoWMaAJ6WqVa3hGBGXrb/JC7km4DRDRHW0smuz8n5umVHqXyx+UWMCT sS0NsiHletUh+iyfzg/XRGuFoRwblS1bk5BonR+4=
Date: Wed, 13 May 2020 06:48:22 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3OFPUVBHOQFG3Z2JV4Y7N2NEVBNHHCJSIVDI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3652/review/410942152@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3652@github.com>
References: <quicwg/base-drafts/pull/3652@github.com>
Subject: Re: [quicwg/base-drafts] Convert command-line arguments to integers (#3652)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebbfaa62e354_61853fcf0d8cd9641542e5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZmD8yOl5rMIdSmp9KlQE_yXStCg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 13:48:24 -0000

----==_mimepart_5ebbfaa62e354_61853fcf0d8cd9641542e5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop approved this pull request.

Seems fine.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3652#pullrequestreview-410942152
----==_mimepart_5ebbfaa62e354_61853fcf0d8cd9641542e5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> approved this pull request.</p>

<p>Seems fine.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3652#pullrequestreview-410942152">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7YGE7AKXLNBPB6R63RRKQKNANCNFSM4M7NWOTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2RQ4JSE5ZP3FHGRI3RRKQKNA5CNFSM4M7NWOT2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODB7HVSA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3652#pullrequestreview-410942152",
"url": "https://github.com/quicwg/base-drafts/pull/3652#pullrequestreview-410942152",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebbfaa62e354_61853fcf0d8cd9641542e5--


From nobody Wed May 13 06:49:30 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 D01E13A0B54 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:49:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.269
X-Spam-Level: 
X-Spam-Status: No, score=-2.269 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 8N8UoUx1hE6v for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:49:27 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D40AF3A0B16 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:49:27 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id AB2518C0E09 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:49:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589377766; bh=4aW9FBv3yO5ihe1xu0Qu9IyKw0NFyAJr2dxkZ2aGznw=; h=Date:From:To:Subject:From; b=NJ2ifjtZ/LzrbLuLbsh5itZjU0wgh//wXvdaaWWh0DIKvYaGzfsKADTtUl6+MeqVi SnIlwRtghXOi9K8yj6qSwm3UWJjM3/JpeAkuWSrfFu82SS3/DzrADr858L/vIFLvBU y/QpZ43GHb1DqHdN0inYDdHj3praLRKTKkVojfZk=
Date: Wed, 13 May 2020 06:49:26 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-onpacketreceived/444401-2a479f@github.com>
Subject: [quicwg/base-drafts] 2a479f: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3ueKOP-NWoUwkk0FKEWGS9nuc_4>
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: Wed, 13 May 2020 13:49:29 -0000

  Branch: refs/heads/ianswett-onpacketreceived
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2a479f634819f531129ab49ae871f23ed9e13940
      https://github.com/quicwg/base-drafts/commit/2a479f634819f531129ab49ae871f23ed9e13940
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Wed May 13 06:49:38 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 4161E3A0B16 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:49:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.723
X-Spam-Level: 
X-Spam-Status: No, score=-1.723 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 Hu00wP7bwFt1 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:49:36 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E5B933A0B54 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:49:35 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id E18E9E0031 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:49:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589377774; bh=2fWuA3w8zAz0y/FBS+Qdq29dgZfNytwmy+1Revp993g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vxnmUQqVtW1E21WUsCW4BO0p9tYP5Rbs1pWCYq1YOgqkT/5vJ7OMtNWDzUiqtiXTe lbmxyL2NxGB4WIrBk6C13rxb9IeN63+UddJGJPAM98+a52f25hifixRW3OlVhzwqPZ dnp5w8OVi3wnIF48vi5nc1y1+phT2EylBIi1yq2o=
Date: Wed, 13 May 2020 06:49:34 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/push/5066160158@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebbfaeed268a_7dba3ff4492cd968138458"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Z4QS7cYPzZ4N7rsvAjRzr1WM5GA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 13:49:37 -0000

----==_mimepart_5ebbfaeed268a_7dba3ff4492cd968138458
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

2a479f634819f531129ab49ae871f23ed9e13940  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653/files/4444017fe3f1f1eb1baf0b00e545b8913be94c7c..2a479f634819f531129ab49ae871f23ed9e13940

----==_mimepart_5ebbfaeed268a_7dba3ff4492cd968138458
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/2a479f634819f531129ab49ae871f23ed9e13940">2a479f6</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3653/files/4444017fe3f1f1eb1baf0b00e545b8913be94c7c..2a479f634819f531129ab49ae871f23ed9e13940">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYHEU22PUHRXZ7HXHLRRKQO5ANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4KCGJOPPM23TLBTQ3RRKQO5A5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTOMZXGQ3DEMSQOVZWQIZVGA3DMMJWGAYTKOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653/files/4444017fe3f1f1eb1baf0b00e545b8913be94c7c..2a479f634819f531129ab49ae871f23ed9e13940",
"url": "https://github.com/quicwg/base-drafts/pull/3653/files/4444017fe3f1f1eb1baf0b00e545b8913be94c7c..2a479f634819f531129ab49ae871f23ed9e13940",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebbfaeed268a_7dba3ff4492cd968138458--


From nobody Wed May 13 06:50:09 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 BE5533A0B55 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:50:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 4ToBagOtxrFX for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:50:06 -0700 (PDT)
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 B52243A0B54 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:50:06 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 09AB4280B76 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:50:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589377806; bh=BKJrOVSyLrj7RS+jFOzowoL5pxhXJdW1LQ9E9d27qSE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=scAMGZTC42bFdTYi3jmPWXEOH8ST8mL5x1QgcAtb2/bPRPy/V67lFBemkL/S3OnX3 TLk1TVVV5jOf8E/MrIfYKXH0PBoclK0wnq26beX7oo3zR88lQbqpyRW08XJNqk79N+ Z+1hUzRURRreM1iytHfrtMUfy6SmnvrCFQpHL1Lc=
Date: Wed, 13 May 2020 06:50:05 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7UDGVRA3AUKNHV6JV4Y7OA3EVBNHHB524Q44@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3198/627999519@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3198@github.com>
References: <quicwg/base-drafts/issues/3198@github.com>
Subject: Re: [quicwg/base-drafts] HTTP/3 is lacking priorities (#3198)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebbfb0de9bac_3eaa3f9858acd96c80775"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TdyRa5OGgdgh3xqf2-WW7KtYPGs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 13:50:08 -0000

----==_mimepart_5ebbfb0de9bac_3eaa3f9858acd96c80775
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Marking as v2 and closing, per consensus call.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3198#issuecomment-627999519
----==_mimepart_5ebbfb0de9bac_3eaa3f9858acd96c80775
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Marking as v2 and closing, per consensus call.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3198#issuecomment-627999519">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4MQYCJRRVHOAFAKBLRRKQQ3ANCNFSM4JJ474UA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK746DNTNN74X7WGX73RRKQQ3A5CNFSM4JJ474UKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVXIGHY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3198#issuecomment-627999519",
"url": "https://github.com/quicwg/base-drafts/issues/3198#issuecomment-627999519",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebbfb0de9bac_3eaa3f9858acd96c80775--


From nobody Wed May 13 06:50:14 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 44A3F3A0B5B for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:50:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 kRoYIo0uoMU3 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:50:08 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9F1E33A0B54 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:50:08 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 049C4660E01 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:50:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589377807; bh=Vtun3l09MM6QjEosHVxSHoGY/1cnQmZkSWkmVfygD7o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DuCKRXy09q/acxEtkXHkkpqVUNtuekjp0DHVnJ9KYZRd++TMbW7JHXIr5Wv9nPl5H XEC0IJxx4zOfkEfxQdh46nikxAEjoOE0gEQ7m6V/Q/jU8KxgM8dLjsoQ1qwNthNIBg c98ZEPXa1fT++R7KQfLYATuxGSEZhM9U+RvccXA4=
Date: Wed, 13 May 2020 06:50:06 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZYR2ULDHW74QNBFN54Y7OA5EVBNHHB524Q44@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3198/issue_event/3332170986@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3198@github.com>
References: <quicwg/base-drafts/issues/3198@github.com>
Subject: Re: [quicwg/base-drafts] HTTP/3 is lacking priorities (#3198)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebbfb0ee9cd6_77b93fdc0e0cd9681527c7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/z9hYr3SEAvekNda0PqsDvQmU-Mw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 13:50:11 -0000

----==_mimepart_5ebbfb0ee9cd6_77b93fdc0e0cd9681527c7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3198.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3198#event-3332170986
----==_mimepart_5ebbfb0ee9cd6_77b93fdc0e0cd9681527c7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="518754535" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3198" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3198/hovercard" href="https://github.com/quicwg/base-drafts/issues/3198">#3198</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3198#event-3332170986">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7QZNMKY43O2DRXSMDRRKQQ5ANCNFSM4JJ474UA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7Z4AIMHJWPU3RBMDTRRKQQ5A5CNFSM4JJ474UKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY2OOJ2Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3198#event-3332170986",
"url": "https://github.com/quicwg/base-drafts/issues/3198#event-3332170986",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebbfb0ee9cd6_77b93fdc0e0cd9681527c7--


From nobody Wed May 13 06:50:23 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 603383A0B5A for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:50:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 NYIyvf-0vrX8 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:50:21 -0700 (PDT)
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 650A53A0B5B for <quic-issues@ietf.org>; Wed, 13 May 2020 06:50:21 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id B1E4828078B for <quic-issues@ietf.org>; Wed, 13 May 2020 06:50:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589377820; bh=bE7QJcyoiGcp+IFh3UBql5x4w+BvlTSJ/h8v8OaR/Ro=; h=Date:From:To:Subject:From; b=iSWHWK9EmDfilT4mabx4ijeOSDqR0lEHNmJpMMoDn9/iWw5eNWG4Ek4+OLRzzta0t 3eUiupnnNtCfIVqzC2CWmQkP6CFByhWoZCg3PIb71+T4zZY9JzVFHqizBvdXhHqb4r ow6vXa1pKuF9SUSrujzkgXRFlCfpMFmQXalbD+pI=
Date: Wed, 13 May 2020 06:50:20 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/95864a-d4aa41@github.com>
Subject: [quicwg/base-drafts] d4aa41: Script updating gh-pages from 2a479f63. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/z1UsRf8OKDRVq0fwoNNdUbNxbRk>
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: Wed, 13 May 2020 13:50:22 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d4aa4125e956659078ada833826718bbfa39957d
      https://github.com/quicwg/base-drafts/commit/d4aa4125e956659078ada833826718bbfa39957d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    A ianswett-onpacketreceived/draft-ietf-quic-http.html
    A ianswett-onpacketreceived/draft-ietf-quic-http.txt
    A ianswett-onpacketreceived/draft-ietf-quic-invariants.html
    A ianswett-onpacketreceived/draft-ietf-quic-invariants.txt
    A ianswett-onpacketreceived/draft-ietf-quic-qpack.html
    A ianswett-onpacketreceived/draft-ietf-quic-qpack.txt
    A ianswett-onpacketreceived/draft-ietf-quic-recovery.html
    A ianswett-onpacketreceived/draft-ietf-quic-recovery.txt
    A ianswett-onpacketreceived/draft-ietf-quic-tls.html
    A ianswett-onpacketreceived/draft-ietf-quic-tls.txt
    A ianswett-onpacketreceived/draft-ietf-quic-transport.html
    A ianswett-onpacketreceived/draft-ietf-quic-transport.txt
    A ianswett-onpacketreceived/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 2a479f63. [ci skip]



From nobody Wed May 13 06:53:52 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 251763A0B60 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:53:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 d5Gjcd-KKmhs for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:53:49 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D06943A0B5C for <quic-issues@ietf.org>; Wed, 13 May 2020 06:53:49 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id F0C2F521F22 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:53:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589378028; bh=+xBRvYhRJiWHWpc8Ijzph4Gjt6F3vA/s7gjx3P/eXe0=; h=Date:From:To:Subject:From; b=Xj1ZCvNoETmwQRAPHXrvXjA76yucqcAVWssiLb8kV0a/gYkMxuNoebYu6SjWCpnwZ /rgPKBnaeKpS6bd5HYc5uhvIx7FFi0exuueY6SiR3i/XrxGmhuHDVtiBk/6oLapDcQ L+UMPPXwGAn0Bti1lZMA2FjZGZ2e+aeLgnjSlcM0=
Date: Wed, 13 May 2020 06:53:48 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-loss-reorg/000000-3353fd@github.com>
Subject: [quicwg/base-drafts] 3353fd: Move a PTO section up
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/514CtMJNZuAXoUX8oa7NMNi1mn0>
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: Wed, 13 May 2020 13:53:51 -0000

  Branch: refs/heads/ianswett-pto-loss-reorg
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3353fd18fd5b2d8c0aabef01c155e57a5507c84b
      https://github.com/quicwg/base-drafts/commit/3353fd18fd5b2d8c0aabef01c155e57a5507c84b
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Move a PTO section up

The fact that PTO doesn't declare losses when it expires is quite important.  It at the very end of the section, so I moved it to the first part.



From nobody Wed May 13 06:54:22 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 C118E3A0B62 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:54:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.654
X-Spam-Level: 
X-Spam-Status: No, score=-1.654 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 tLG-ghlduj7H for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:54:20 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 60AAD3A0B66 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:54:20 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id A0E409610BD for <quic-issues@ietf.org>; Wed, 13 May 2020 06:54:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589378059; bh=iFtexHXy+JYVmrwjhjZnyqyDOwS87mvSq3xx1rnWxjs=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=sMat8olVAwjHw1r14plctknMUIYkZfcae9eJIriaK3n2LnBHgxgf58Aqyz2oYtFHt rPAz0ZF0kr/i76/jcUpOSwkEWZY1W5qu5nWjXFulxsFDXk3qqnGQk6NwPXp13Mfg8N O/EgTKXsCEpNNycEXMXtqFh0BeInYM3alTpGvU8Q=
Date: Wed, 13 May 2020 06:54:19 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK23TVTYO4OBAGMTEB54Y7OQXEVBNHHCJTOS2A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3654@github.com>
Subject: [quicwg/base-drafts] Move a PTO section up (#3654)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebbfc0b92856_6f023ff7684cd96c32064"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/J8Hrh8tju6ws7ah1grBBEKK_5oA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 13:54:22 -0000

----==_mimepart_5ebbfc0b92856_6f023ff7684cd96c32064
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The fact that PTO doesn&#39;t declare losses when it expires is quite important.  It at the very end of the section, so I moved it to the first part.

Also removed a section heading(pto-loss) which was never referenced.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3654

-- Commit Summary --

  * Move a PTO section up

-- File Changes --

    M draft-ietf-quic-recovery.md (15)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3654.patch
https://github.com/quicwg/base-drafts/pull/3654.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3654

----==_mimepart_5ebbfc0b92856_6f023ff7684cd96c32064
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The fact that PTO doesn't declare losses when it expires is quite important.  It at the very end of the section, so I moved it to the first part.</p>
<p>Also removed a section heading(pto-loss) which was never referenced.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3654'>https://github.com/quicwg/base-drafts/pull/3654</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Move a PTO section up</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3654/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (15)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3654.patch'>https://github.com/quicwg/base-drafts/pull/3654.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3654.diff'>https://github.com/quicwg/base-drafts/pull/3654.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3654">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5NKU56RBVSO6Q7ZOTRRKRAXANCNFSM4M7YUPDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SVAHHJEKTRRTBU6DRRKRAXA5CNFSM4M7YUPDKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JGN2LIA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3654",
"url": "https://github.com/quicwg/base-drafts/pull/3654",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebbfc0b92856_6f023ff7684cd96c32064--


From nobody Wed May 13 06:54:58 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 4AB663A0B64 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:54:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 G_D7lOpM7Kt9 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:54:55 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E96B83A0B62 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:54:54 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 47E44960E9D for <quic-issues@ietf.org>; Wed, 13 May 2020 06:54:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589378094; bh=GLShqGf1GJrXjzkXXJU13LIsnW4GM3Ui78uoJCZC9WQ=; h=Date:From:To:Subject:From; b=MqBf34YcyMMYeyWus9Tf/fpot3Nt35rbbFoFasT0In0GgdaPs+GaFrlDnMR/CwrE1 SkRu+Dm1l5gFJ68Rey7JgBycBXuAezOCqCDSSm0r91p7xbmhf+eOJuNJMOVCxGyfiN +1vzNviTZ75dF0OIohP5OM9k/6yRhY1Bw8uA7d58=
Date: Wed, 13 May 2020 06:54:54 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d4aa41-ca25ee@github.com>
Subject: [quicwg/base-drafts] ca25ee: Script updating gh-pages from 3353fd18. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BcufK039sz88aheKmoTCNXTezqg>
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: Wed, 13 May 2020 13:54:56 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ca25ee91c75c7f6035bcd57db6e780aa74b54018
      https://github.com/quicwg/base-drafts/commit/ca25ee91c75c7f6035bcd57db6e780aa74b54018
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    A ianswett-pto-loss-reorg/draft-ietf-quic-http.html
    A ianswett-pto-loss-reorg/draft-ietf-quic-http.txt
    A ianswett-pto-loss-reorg/draft-ietf-quic-invariants.html
    A ianswett-pto-loss-reorg/draft-ietf-quic-invariants.txt
    A ianswett-pto-loss-reorg/draft-ietf-quic-qpack.html
    A ianswett-pto-loss-reorg/draft-ietf-quic-qpack.txt
    A ianswett-pto-loss-reorg/draft-ietf-quic-recovery.html
    A ianswett-pto-loss-reorg/draft-ietf-quic-recovery.txt
    A ianswett-pto-loss-reorg/draft-ietf-quic-tls.html
    A ianswett-pto-loss-reorg/draft-ietf-quic-tls.txt
    A ianswett-pto-loss-reorg/draft-ietf-quic-transport.html
    A ianswett-pto-loss-reorg/draft-ietf-quic-transport.txt
    A ianswett-pto-loss-reorg/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 3353fd18. [ci skip]



From nobody Wed May 13 06:57:40 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 CA2A53A0B69 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:57:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.269
X-Spam-Level: 
X-Spam-Status: No, score=-2.269 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 XKKzwNCIyKuK for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:57:37 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8BC313A0B66 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:57:37 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 856DB6E1F5F for <quic-issues@ietf.org>; Wed, 13 May 2020 06:57:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589378256; bh=3uB6adXfvX5XnDAZeqaBlb71yWO2TGD9zHgapYR4xWk=; h=Date:From:To:Subject:From; b=JdUBHmM2KCKPPBNfDMn9TJVj3Q9zgekNaIUJIPz/ULNI7Ju83m7Qk6EzSBJUyBpVv m0KgPKpZwJquuVxLczy0V3uzHTi47NDY32PCfaduWpn7M06SPqM9LXvj2Eo66uiDk8 +1BasZay9Xo7PTsetagflujb2+pXb4QDkfNACrVI=
Date: Wed, 13 May 2020 06:57:36 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-loss-reorg/3353fd-dfcb5d@github.com>
Subject: [quicwg/base-drafts] dfcb5d: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/klUHdbsuk9n8Y_HI_quIrrT4gsg>
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: Wed, 13 May 2020 13:57:39 -0000

  Branch: refs/heads/ianswett-pto-loss-reorg
  Home:   https://github.com/quicwg/base-drafts
  Commit: dfcb5d820e42570332f217a191437fc6cdafba77
      https://github.com/quicwg/base-drafts/commit/dfcb5d820e42570332f217a191437fc6cdafba77
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Wed May 13 06:57:48 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 BB4D43A0B6A for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:57:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.726
X-Spam-Level: 
X-Spam-Status: No, score=-1.726 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 4oa6lTnbNxcR for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:57:45 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 941B03A0B69 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:57:45 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id E8A5C521ED6 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:57:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589378264; bh=2V7jygzLBrFxBKB5a0m/f/RmyXAa3Z6GoWTR+vntST0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Ow0egiWH2tbqCvtVsBNsvj4MoVYBJZzdL6UWW13+/fjI1Cp+LutFs3OMvEaM4SXZy WBYkTvfWKkPvBUkHqrMTbN5TEXIzmKIdcfnVbBFTs3zRDcIkGoW/HDJJWYu02rgNaG 1t+nh50MHLcWGm3UzeXrErD0ZQY/ouqgNyUGGM8Q=
Date: Wed, 13 May 2020 06:57:44 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3654/push/5066210449@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3654@github.com>
References: <quicwg/base-drafts/pull/3654@github.com>
Subject: Re: [quicwg/base-drafts] Move a PTO section up (#3654)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebbfcd8d8c7f_453c3fe883ccd96c57710"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BnqLi1jY9bI_UnjhggwwjGSI6-8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 13:57:47 -0000

----==_mimepart_5ebbfcd8d8c7f_453c3fe883ccd96c57710
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

dfcb5d820e42570332f217a191437fc6cdafba77  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3654/files/3353fd18fd5b2d8c0aabef01c155e57a5507c84b..dfcb5d820e42570332f217a191437fc6cdafba77

----==_mimepart_5ebbfcd8d8c7f_453c3fe883ccd96c57710
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/dfcb5d820e42570332f217a191437fc6cdafba77">dfcb5d8</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3654/files/3353fd18fd5b2d8c0aabef01c155e57a5507c84b..dfcb5d820e42570332f217a191437fc6cdafba77">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5IBW7ZPHCEXTMVGTLRRKRNRANCNFSM4M7YUPDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ZI6WEVVKSMYOXPTTRRKRNRA5CNFSM4M7YUPDKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTOMZXHA2TEMCQOVZWQIZVGA3DMMRRGA2DIOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3654/files/3353fd18fd5b2d8c0aabef01c155e57a5507c84b..dfcb5d820e42570332f217a191437fc6cdafba77",
"url": "https://github.com/quicwg/base-drafts/pull/3654/files/3353fd18fd5b2d8c0aabef01c155e57a5507c84b..dfcb5d820e42570332f217a191437fc6cdafba77",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebbfcd8d8c7f_453c3fe883ccd96c57710--


From nobody Wed May 13 06:58:58 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 E6D223A0B6C for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:58:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 uGaG-2wmyvyE for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 06:58:55 -0700 (PDT)
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F18283A0B6A for <quic-issues@ietf.org>; Wed, 13 May 2020 06:58:54 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 87E9E261742 for <quic-issues@ietf.org>; Wed, 13 May 2020 06:58:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589378334; bh=1IWExmxj+4UwwzG3q6VjqYi2/6XleA2PvhsDFr/V5qo=; h=Date:From:To:Subject:From; b=XjsIdxCWI3gqh3K5GlPMMgeN2ZkgPkZTNywmBjCvEB5b++gROuC7q8mdRCgsfJcIH UMDyzZJC2KNqDg6ZzrTfnu4lMgJauusZzOVJru0P6SwIIwr4h6WriEQZNE8MVWs/vA +9udRlfs48TPtWAgWQxqzYSFZGahBT1ANvFbTyKo=
Date: Wed, 13 May 2020 06:58:54 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ca25ee-04273c@github.com>
Subject: [quicwg/base-drafts] 04273c: Script updating gh-pages from dfcb5d82. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rCg1gHKj7E118rvMNT-Ltr0zjUU>
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: Wed, 13 May 2020 13:58:56 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 04273c67d0cc55bfae0130be64acd4a3ff7b8cc8
      https://github.com/quicwg/base-drafts/commit/04273c67d0cc55bfae0130be64acd4a3ff7b8cc8
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M ianswett-pto-loss-reorg/draft-ietf-quic-recovery.html
    M ianswett-pto-loss-reorg/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from dfcb5d82. [ci skip]



From nobody Wed May 13 08:03:00 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 D7B313A0D5D for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 08:02:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.869
X-Spam-Level: 
X-Spam-Status: No, score=-1.869 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 gSa-raTcAnuu for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 08:02:56 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9CFAF3A0D2F for <quic-issues@ietf.org>; Wed, 13 May 2020 08:02:56 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 437BB521F72 for <quic-issues@ietf.org>; Wed, 13 May 2020 08:02:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589382175; bh=NnE0dGTE46PT1eQBLHUHVP40Gwk3FjmDb/xxzt93rl4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2foCv3QGz1Fw24vCt11ZrivBFWKPRrBBzM8Uh8Rq6MQLULyFHpN3ZkL96gh5Ds2oA dNMjQxX+i/V/cm4lZpZ7gj7ZGg2bfbwwH707yaTyw8NQJLSwGg5rcKzjYBhsEhJ36T xaxGc4nVZgIxVPx8ZPSJzdEZBkyCDbVLBQSA7/Vo=
Date: Wed, 13 May 2020 08:02:55 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4E5YF4KUJEVPWRDHF4Y7WR7EVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/review/411017530@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc0c1f35ab7_58023f82494cd96016545c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nhtfMaLWt7PjDQiL1nTyeo_3xw8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 15:02:59 -0000

----==_mimepart_5ebc0c1f35ab7_58023f82494cd96016545c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> +frame that increases the number of active connection IDs - without a Retire
+Prior To field that requests retirement of enough active connections to keep the
+total number of active connection IDs within the value the endpoint advertised
+in its active_connection_id_limit transport parameter - MUST close the
+connection with an error of type CONNECTION_ID_LIMIT_ERROR.

This is hard to write, here's my best shot.

```suggestion
frame that increases the number of active connection IDs above the value
advertised in its active_connection_id_limit transport parameter without a
Retire Prior To field that requests retirement of enough active connection IDs
to stay below the limit once retired MUST close the connection with an error
of type CONNECTION_ID_LIMIT_ERROR.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411017530
----==_mimepart_5ebc0c1f35ab7_58023f82494cd96016545c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ianswett</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3643#discussi=
on_r424509230">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +frame that increases the number of active=
 connection IDs - without a Retire=0D
+Prior To field that requests retirement of enough active connections to =
keep the=0D
+total number of active connection IDs within the value the endpoint adve=
rtised=0D
+in its active_connection_id_limit transport parameter - MUST close the=0D=

+connection with an error of type CONNECTION_ID_LIMIT_ERROR.=0D
</pre>=0D
<p>This is hard to write, here's my best shot.</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-frame that increases the number of active con=
nection IDs - without a Retire=0D
-Prior To field that requests retirement of enough active connections to =
keep the=0D
-total number of active connection IDs within the value the endpoint adve=
rtised=0D
-in its active_connection_id_limit transport parameter - MUST close the=0D=

-connection with an error of type CONNECTION_ID_LIMIT_ERROR.=0D
+frame that increases the number of active connection IDs above the value=
=0D
+advertised in its active_connection_id_limit transport parameter without=
 a=0D
+Retire Prior To field that requests retirement of enough active connecti=
on IDs=0D
+to stay below the limit once retired MUST close the connection with an e=
rror=0D
+of type CONNECTION_ID_LIMIT_ERROR.=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3643#pullrequestreview-411017530">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K3Y24DEILQNWL6HE33RRKZB7ANCNFSM4M6L6D2A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK6PQKESUMNDSXUFHFTRRKZB7A5CNFSM4=
M6L6D2KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODB72COQ.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestrev=
iew-411017530",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview=
-411017530",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebc0c1f35ab7_58023f82494cd96016545c--


From nobody Wed May 13 08:36:06 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 045443A0DBB for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 08:36:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 S2mQJ2VIc_Lf for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 08:36:01 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AE1513A0DA7 for <quic-issues@ietf.org>; Wed, 13 May 2020 08:36:01 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 1E0701212BA for <quic-issues@ietf.org>; Wed, 13 May 2020 08:36:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589384161; bh=YfTYnYEX5zqCivZr4buB2Ljg2XHYqTAfSvr+QSgcEtE=; h=Date:From:To:Subject:From; b=OQQD8g86Fi4gkDp1KwsvJAlIM7+UWV4JMt7gYFWZUVlZjO6oiCy5GKc2OPbbLV/pc FEIpYLOAc7b2Uzgsa1zDHzLFbjv+ze34uoRZimwWUmB8QhqdArHiFCrx2vYkk0XmDl wX9IxFRgdsIGRqXHby91WjiJR0OnLhoiiDEtHawk=
Date: Wed, 13 May 2020 08:36:00 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-adaptive-loss/4d3e91-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kNxycskXIrQj66rEcqkSTSe0P3I>
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: Wed, 13 May 2020 15:36:04 -0000

  Branch: refs/heads/ianswett-adaptive-loss
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed May 13 08:36:51 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 007DB3A0DA4 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 08:36:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 2LuVK2SBENuS for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 08:36:02 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C86423A0DB9 for <quic-issues@ietf.org>; Wed, 13 May 2020 08:36:02 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id C7CF96A1F0D for <quic-issues@ietf.org>; Wed, 13 May 2020 08:36:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589384160; bh=stVD0+JlEQc/RUEhcNJZ7N7usiDoHrYvl2Tzb/Mn/Ss=; h=Date:From:To:Subject:From; b=jft71s6r4+tVf+IKwwMWYAMn30kWTvpccwiNqMR9N6DaklFaF3rFaXMa2/w2drwiN Cy8PphgXd1yAJmzu/Yow8NB//JegGMJAAlJEvFcRMxT56FXhjOy9b/IV8WECM7RWE8 4fcb+4LWiUceAag4+UZRZbExdTlhWlvqGoDCMKhM=
Date: Wed, 13 May 2020 08:36:00 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/48825d-beed8a@github.com>
Subject: [quicwg/base-drafts] 694774: SHOULD use adaptive thresholds
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rACkLVrbQAJu0y8efcY37aOeShA>
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: Wed, 13 May 2020 15:36:10 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 694774d0cc5c88a62d40975221f96ed622ea238d
      https://github.com/quicwg/base-drafts/commit/694774d0cc5c88a62d40975221f96ed622ea238d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-08 (Wed, 08 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  SHOULD use adaptive thresholds

Fixes #3571


  Commit: 56a5ef401e3be26ef9b984969673ffcbf016ea39
      https://github.com/quicwg/base-drafts/commit/56a5ef401e3be26ef9b984969673ffcbf016ea39
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-08 (Wed, 08 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 5dfecdf98cece40f60b04b2110e3587ecfde4828
      https://github.com/quicwg/base-drafts/commit/5dfecdf98cece40f60b04b2110e3587ecfde4828
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-08 (Wed, 08 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 464d19911876512bf66747c79c7c85f0ff911139
      https://github.com/quicwg/base-drafts/commit/464d19911876512bf66747c79c7c85f0ff911139
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-08 (Wed, 08 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 196ecf7da23afd34a11fcc024395a7aa553e74a5
      https://github.com/quicwg/base-drafts/commit/196ecf7da23afd34a11fcc024395a7aa553e74a5
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-14 (Tue, 14 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Non-normative


  Commit: ccd78939eed2efc0329fb41752dec4695d630c83
      https://github.com/quicwg/base-drafts/commit/ccd78939eed2efc0329fb41752dec4695d630c83
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-14 (Tue, 14 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 27e3e87f9d41148ba04c39bde51e3c4030126193
      https://github.com/quicwg/base-drafts/commit/27e3e87f9d41148ba04c39bde51e3c4030126193
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-18 (Sat, 18 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 089f74a748bfa3dc057071e06bf997331d5ab6cc
      https://github.com/quicwg/base-drafts/commit/089f74a748bfa3dc057071e06bf997331d5ab6cc
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-23 (Thu, 23 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 4d3e918fee5ed3468f7a4ee1e67c3f05bbe0236f
      https://github.com/quicwg/base-drafts/commit/4d3e918fee5ed3468f7a4ee1e67c3f05bbe0236f
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  QUIC could see more reordering


  Commit: beed8a8b4b1a342ecea36527c6ed85d9bfda6230
      https://github.com/quicwg/base-drafts/commit/beed8a8b4b1a342ecea36527c6ed85d9bfda6230
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3572 from quicwg/ianswett-adaptive-loss

Adaptive thresholds are useful


Compare: https://github.com/quicwg/base-drafts/compare/48825d06241b...beed8a8b4b1a


From nobody Wed May 13 08:36:54 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 CA6B83A0FD8 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 08:36:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 kehbMfzhi5hJ for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 08:36:12 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B7D763A0DBB for <quic-issues@ietf.org>; Wed, 13 May 2020 08:36:11 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 6C972660DF3 for <quic-issues@ietf.org>; Wed, 13 May 2020 08:36:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589384170; bh=tJkSCmyEpvE1RuQyg7CJHkHUXZOzwidfbRPgTkTjWiQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hwL14jmxT9KL1PeMqlrdWqY7eyodaV40bzoovmmJC9dBeMSSOAGpiuZZuHlCWKItl Bez5vavDcvnMs0IFUMygu7sVVwyo92pAgY43ByQzFMTI7W8bcdMq3S+VnAtcvgN0m+ LX5Yz030L+v1ASwaa6ePbbOQ3wd9NJIO/Qd9O0KU=
Date: Wed, 13 May 2020 08:36:10 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYY72HWB2AULAJNRN54Y72OVEVBNHHCHD36DQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3571/issue_event/3332677184@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3571@github.com>
References: <quicwg/base-drafts/issues/3571@github.com>
Subject: Re: [quicwg/base-drafts] SHOULD implement adaptive packet threshold loss detection (#3571)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc13ea5efb8_5b6d3f8f506cd9683290b9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_dpc6Um2X1LbJS4OWjXrEdz81Ww>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 15:36:20 -0000

----==_mimepart_5ebc13ea5efb8_5b6d3f8f506cd9683290b9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3571 via #3572.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3571#event-3332677184
----==_mimepart_5ebc13ea5efb8_5b6d3f8f506cd9683290b9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="596606492" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3571" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3571/hovercard" href="https://github.com/quicwg/base-drafts/issues/3571">#3571</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="596607961" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3572" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3572/hovercard" href="https://github.com/quicwg/base-drafts/pull/3572">#3572</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3571#event-3332677184">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYCSRWULWGUCUMDKUDRRK46VANCNFSM4MD6VX6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY3PFMZIPP6QAIM7X3RRK46VA5CNFSM4MD6VX6KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY2SJ4QA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3571#event-3332677184",
"url": "https://github.com/quicwg/base-drafts/issues/3571#event-3332677184",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebc13ea5efb8_5b6d3f8f506cd9683290b9--


From nobody Wed May 13 08:36:58 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 7CDFB3A0DBB for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 08:36:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 zKwd9evv1Fup for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 08:36:12 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 40E0E3A0E05 for <quic-issues@ietf.org>; Wed, 13 May 2020 08:36:12 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 6E6AC8C005B for <quic-issues@ietf.org>; Wed, 13 May 2020 08:36:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589384171; bh=G7T2x/0t387cIVhfpI/jM3iei+vkVV2ci4Un9pnuZq8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qfEJvlqv3lICgsKmEmzwhnaL8P1GubE3l8lxu/x1ByRrFa6dGC62RMSMwsiwemZy4 OGEfptB3PG6/4WSUXK756iyDndKAb1D/MBOCIni9KYJcnCqLjJ6yaow2rram6kijRk Cnmei+cDeQPerSYdFiwAkyu1ACDS8ow4+6ujvdHI=
Date: Wed, 13 May 2020 08:36:11 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6VOBWY4TUESE4F3KV4Y72OXEVBNHHCHD4D3E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3572/issue_event/3332677174@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3572@github.com>
References: <quicwg/base-drafts/pull/3572@github.com>
Subject: Re: [quicwg/base-drafts] Adaptive thresholds are useful (#3572)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc13eb5fed5_6f7c3f9c2a4cd9603070f5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MdNjTyFLxFylqzPn3Xr6bmEH2lM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 15:36:22 -0000

----==_mimepart_5ebc13eb5fed5_6f7c3f9c2a4cd9603070f5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3572 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3572#event-3332677174
----==_mimepart_5ebc13eb5fed5_6f7c3f9c2a4cd9603070f5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="596607961" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3572" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3572/hovercard" href="https://github.com/quicwg/base-drafts/pull/3572">#3572</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3572#event-3332677174">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYGXBDUTKXGN4TCECLRRK46XANCNFSM4MD6XJ5Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2DP4BT4N3GDNACTJDRRK46XA5CNFSM4MD6XJ52YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY2SJ4NQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3572#event-3332677174",
"url": "https://github.com/quicwg/base-drafts/pull/3572#event-3332677174",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebc13eb5fed5_6f7c3f9c2a4cd9603070f5--


From nobody Wed May 13 08:37:05 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 54F293A0D63 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 08:37:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 2S1AYgZqEAak for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 08:37:01 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0C4783A0DB9 for <quic-issues@ietf.org>; Wed, 13 May 2020 08:36:59 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 0494F1C0993 for <quic-issues@ietf.org>; Wed, 13 May 2020 08:36:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589384218; bh=lnzjbdPmF0By9K20nTauzCHVGr0LIRj79hWEx7EVLEc=; h=Date:From:To:Subject:From; b=H3E2RgSVqW3wYR4IMxDrlDpJoJqMEh3GaN01E4vpeSXJop/8VWe8pX+UxI0TpF8Mw nRhopxHy4ns5iWHPo/S3PCTYedPvkpVpqjVFaNEG4rKBFSZI9mIFmi4dVRH4eMAHJh yxJoEMkNwkRsBf5S9j/MOoGq9FhRwV4M2ZkGR5Vk=
Date: Wed, 13 May 2020 08:36:57 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/04273c-f342d8@github.com>
Subject: [quicwg/base-drafts] f342d8: Script updating gh-pages from beed8a8b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/pS6qxDJV_DUkOdXbfx0P745YKPA>
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: Wed, 13 May 2020 15:37:04 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f342d8efd18aaa14837f2a7ff339bf2b366448d4
      https://github.com/quicwg/base-drafts/commit/f342d8efd18aaa14837f2a7ff339bf2b366448d4
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from beed8a8b. [ci skip]



From nobody Wed May 13 09:17:39 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 B19B93A0D3D for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 09:17:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.724
X-Spam-Level: 
X-Spam-Status: No, score=-1.724 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 OkyTjGlCexU6 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 09:17:35 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C9D313A101F for <quic-issues@ietf.org>; Wed, 13 May 2020 09:17:35 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id ADE276A00AC for <quic-issues@ietf.org>; Wed, 13 May 2020 09:17:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589386654; bh=ywIaLpstTkzxOZzYTFtjDzCvkAmEWZN4aAR/D7kSDnA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=deu7TdT8qKaxVZzFs1SDnA0hC8d1dq7ea3rNxMiGCtBVfcEjX009bidl8jxX+tJAD sX4Iaia2lyFGJWcBX1wVxB6Q5bmWO1TkHkwpGPUX+9df2XwfraQIxiUrev4ObUshE4 wteYpgp2RvbWzVIXJetmF7jsNy13/QxGkhrbD0i0=
Date: Wed, 13 May 2020 09:17:34 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/push/5067078212@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc1d9e9ecda_66123f9b2cacd96815546e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: erickinnear
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SqsfTY9GWBQu2ze3GveSIRxEdq4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 16:17:38 -0000

----==_mimepart_5ebc1d9e9ecda_66123f9b2cacd96815546e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear pushed 1 commit.

a7101944f1dec2dd4d4c890e56f3029e1648545d  Remove duplicate MUST


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589/files/f7a9c3b3bb78485bc65476b894306899f70d8205..a7101944f1dec2dd4d4c890e56f3029e1648545d

----==_mimepart_5ebc1d9e9ecda_66123f9b2cacd96815546e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/erickinnear" class="user-mention">@erickinnear</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/a7101944f1dec2dd4d4c890e56f3029e1648545d">a710194</a>  Remove duplicate MUST</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3589/files/f7a9c3b3bb78485bc65476b894306899f70d8205..a7101944f1dec2dd4d4c890e56f3029e1648545d">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4ZSI3TJWKKDKEZSYTRRLBZ5ANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZNHGEL4VGHKIDKLNLRRLBZ5A5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDKOBZGM3DGOKQOVZWQIZVGA3DOMBXHAZDCMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589/files/f7a9c3b3bb78485bc65476b894306899f70d8205..a7101944f1dec2dd4d4c890e56f3029e1648545d",
"url": "https://github.com/quicwg/base-drafts/pull/3589/files/f7a9c3b3bb78485bc65476b894306899f70d8205..a7101944f1dec2dd4d4c890e56f3029e1648545d",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebc1d9e9ecda_66123f9b2cacd96815546e--


From nobody Wed May 13 11:44:58 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 BB1693A08B6 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 11:44:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 ZIjSrraVB63a for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 11:44:53 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 26BF33A079A for <quic-issues@ietf.org>; Wed, 13 May 2020 11:44:48 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 3947FC604FE for <quic-issues@ietf.org>; Wed, 13 May 2020 11:44:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589395487; bh=nRY3PZOYXqw6UPiZCCmpqAykCa+I7PwkEMCOhdJ3NpE=; h=Date:From:To:Subject:From; b=dBXFs7RvdjqvqgOltr9gXMScxLvzlWcYB7Zx+hiDkL3wkjyNZyCgRdTEIlg+vFZi8 hoGd9IDahidgpjIuTEiyFyMqBoyvgE7Svf00dmV4yDvnQknoqXDgNzLapNAjCEL0on P7R4oY6+dEhqgfV4Nj5wmvPrrxv0HD9oT8MiKAfY=
Date: Wed, 13 May 2020 11:44:47 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/beed8a-16d3b9@github.com>
Subject: [quicwg/base-drafts] 16d3b9: [qpack] Table Flip
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/A52KtALXEMG64kw5tjcg15NEJ9k>
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: Wed, 13 May 2020 18:44:56 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 16d3b9549c6da6ca27db9f23af6c826b950c24bb
      https://github.com/quicwg/base-drafts/commit/16d3b9549c6da6ca27db9f23af6c826b950c24bb
  Author: Alan Frindell <afrind@fb.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  [qpack] Table Flip

All other tables insert on the left and drop on the right

Fixes #3633



From nobody Wed May 13 11:45:04 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 1718B3A07A3 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 11:44:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.272
X-Spam-Level: 
X-Spam-Status: No, score=-2.272 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, 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, TVD_SPACE_RATIO=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 Q3CQl7O_vWWw for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 11:44:56 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CC3203A08D4 for <quic-issues@ietf.org>; Wed, 13 May 2020 11:44:49 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 1B34D282864 for <quic-issues@ietf.org>; Wed, 13 May 2020 11:44:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589395488; bh=aP2Z13fRQiMTt5ELBPyD3SB5VNwUdwig2TeRHH1rhcM=; h=Date:From:To:Subject:From; b=zmDstQcsxkoiP79gys2iWcQxFZKkPJyI2hqXrLr2Y5TM/QIAwvzq0/91LcY2+WaU0 K/KAiwv3TSN4L4aUfX9KA4L46vxpdke4b+Alf21bCWovZ3s6DRl/vDRf9aPpK81YIC nJYJc4jz3ulMllOskKgNzCrBwowCgkDTw6y5G+fc=
Date: Wed, 13 May 2020 11:44:48 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-table-flip/7d7c3a-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yF4HjZLIJtIdtoEbumzC-no-ynY>
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: Wed, 13 May 2020 18:44:57 -0000

  Branch: refs/heads/qpack-table-flip
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed May 13 11:45:11 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 632D33A0775 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 11:45:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 46R1SnhsRS9C for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 11:45:07 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 402BF3A07BC for <quic-issues@ietf.org>; Wed, 13 May 2020 11:44:57 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 80CBC520E35 for <quic-issues@ietf.org>; Wed, 13 May 2020 11:44:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589395496; bh=z0bOfs5M3is1/pCON4CWqYCQUNxuuaA8h5PPMDCssPc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BGAqlqBCx/7ZseQm2p8mVLxcl+CpVQESDwmNzdwUSsjpPpd3r5pOCJ7oqC440MBJq 5LFE0ajOQRYHgVs53v8xw+QNvny9wjhuB4QxhxmYld4Ugf8r1ampSkOES7glP4bqef 0stXWjBCaKaD2UnHv6tr6WfE4jd5macud4psGcS0=
Date: Wed, 13 May 2020 11:44:56 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3DOIYWSFM7EC2AHON4ZAQSREVBNHHCJFQILU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3633/issue_event/3333421900@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3633@github.com>
References: <quicwg/base-drafts/issues/3633@github.com>
Subject: Re: [quicwg/base-drafts] Minor editorical issue in QPACK draft (#3633)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc402871183_39283fa2ffccd9681478d0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bs0kTSKckQYDbNfaOnfKQGIJYzI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 18:45:09 -0000

----==_mimepart_5ebc402871183_39283fa2ffccd9681478d0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3633 via #3649.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3633#event-3333421900
----==_mimepart_5ebc402871183_39283fa2ffccd9681478d0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="613812317" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3633" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3633/hovercard" href="https://github.com/quicwg/base-drafts/issues/3633">#3633</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="617017023" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3649" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3649/hovercard" href="https://github.com/quicwg/base-drafts/pull/3649">#3649</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3633#event-3333421900">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK72I4XI2IJYX6GQCA3RRLTCRANCNFSM4M3BSWTA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZQYYRQLTYS7PDI6TDRRLTCRA5CNFSM4M3BSWTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY2X7WTA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3633#event-3333421900",
"url": "https://github.com/quicwg/base-drafts/issues/3633#event-3333421900",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebc402871183_39283fa2ffccd9681478d0--


From nobody Wed May 13 11:45:15 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 14F383A0775 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 11:45:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.178
X-Spam-Level: 
X-Spam-Status: No, score=-2.178 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 GPs1fBs6j22G for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 11:45:07 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 66E7F3A07ED for <quic-issues@ietf.org>; Wed, 13 May 2020 11:44:57 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id BCFD6E06E3 for <quic-issues@ietf.org>; Wed, 13 May 2020 11:44:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589395496; bh=a5MDauZ5KI5Bt6QhwJ/WfraPK6Re1KOHcTDkviZVt9M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=v7POuf5qHfJiZStl58JLQDLI6s+kIt8YUrf9N2uNA1WJYhHxq6Px7Dzi3+syepqUB Cw3YYAlOWSzkA210DHIq4UkpA+JBquZ299iVnaNbz4ag0hvN/cJUDAjKl71z56kCyg pmQ3zFIXKtVjYKzFltNMof867WhIMnwJIOLAgd7I=
Date: Wed, 13 May 2020 11:44:56 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7BPCJA5C36U36XVMV4ZAQSREVBNHHCJRXOX4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3649/issue_event/3333421891@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3649@github.com>
References: <quicwg/base-drafts/pull/3649@github.com>
Subject: Re: [quicwg/base-drafts] [qpack] Table Flip (#3649)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc4028ac067_38f33fd1d0acd9601066b7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3mxcMwnGyGyy0sow-44BonTTCUs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 18:45:11 -0000

----==_mimepart_5ebc4028ac067_38f33fd1d0acd9601066b7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3649 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3649#event-3333421891
----==_mimepart_5ebc4028ac067_38f33fd1d0acd9601066b7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="617017023" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3649" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3649/hovercard" href="https://github.com/quicwg/base-drafts/pull/3649">#3649</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3649#event-3333421891">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYKRK6TBW3N6BFPWY3RRLTCRANCNFSM4M7HSBEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7KKDRL3CUAQ6K5RHDRRLTCRA5CNFSM4M7HSBEKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY2X7WQY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3649#event-3333421891",
"url": "https://github.com/quicwg/base-drafts/pull/3649#event-3333421891",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebc4028ac067_38f33fd1d0acd9601066b7--


From nobody Wed May 13 11:45:44 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 4F7133A0779 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 11:45:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 CAC4PfvFZEfu for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 11:45:41 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EECFD3A0775 for <quic-issues@ietf.org>; Wed, 13 May 2020 11:45:40 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id B7F5CC60503 for <quic-issues@ietf.org>; Wed, 13 May 2020 11:45:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589395539; bh=o8odOLneZj7pelO6SaWJOVaq3gpapCWz75ogQBc0S2A=; h=Date:From:To:Subject:From; b=vjyi1Gsx91TFGCdUwi4kb0wRxA0NLxLw9trXrlxs+9MYiEYJ+0jx7av7PoScZVcns XqM2ulxG9kX7726blIv+HKslcqGIn7JK37r/OFMLPb0yDXtTn5M3+9NyouQwdPQc4v c1cchGpNo3R/3X+9pyxMUDrY6EYCNlnWuOspJR+8=
Date: Wed, 13 May 2020 11:45:39 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f342d8-183b58@github.com>
Subject: [quicwg/base-drafts] 183b58: Script updating gh-pages from 16d3b954. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tpx14UOPa1MqK45vcPfVJ8QE6Ek>
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: Wed, 13 May 2020 18:45:42 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 183b586e419ddf7a52804f5cbb413080cc5d8a51
      https://github.com/quicwg/base-drafts/commit/183b586e419ddf7a52804f5cbb413080cc5d8a51
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 16d3b954. [ci skip]



From nobody Wed May 13 12:01:21 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 CEED73A0BC9 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:01:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 kiV2OPYDV2Uw for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:01:12 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6A7653A0B15 for <quic-issues@ietf.org>; Wed, 13 May 2020 12:00:51 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id EED5E120499 for <quic-issues@ietf.org>; Wed, 13 May 2020 12:00:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589396451; bh=78zbcSnVD9888/EnQ9yIB7H/8Iv1mIp0Nvec0/v8R98=; h=Date:From:To:Subject:From; b=Exq1THinDtYXM8yvlrqQEiyKZqxezikoFV6ggG2oJkiI1o2QyrhXbAq7UOV4pLidf KoT0tQavbe1jC2uxvqAA+ZxJ5YGKR2AYj/J8yPK+lqpbMEcFWQzC0ssX8w9UD41ox4 BGdbqxYsCxLeSxsr43svMWYsywvFN0Bq6AeTwN1w=
Date: Wed, 13 May 2020 12:00:50 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-thanks/3b8ce7-634b2e@github.com>
Subject: [quicwg/base-drafts] 634b2e: comma drama
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PLk9cvX-vW1lXyinOmbH77mARuQ>
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: Wed, 13 May 2020 19:01:19 -0000

  Branch: refs/heads/qpack-thanks
  Home:   https://github.com/quicwg/base-drafts
  Commit: 634b2eb1b4e867c4a090b1bf67b4715b15252f4f
      https://github.com/quicwg/base-drafts/commit/634b2eb1b4e867c4a090b1bf67b4715b15252f4f
  Author: Alan Frindell <afrind@fb.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  comma drama



From nobody Wed May 13 12:01:33 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 958883A0A65 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:01:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 e-BKg6D-pn2Y for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:01:25 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4CA953A0A9C for <quic-issues@ietf.org>; Wed, 13 May 2020 12:01:00 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 89F4E96099D for <quic-issues@ietf.org>; Wed, 13 May 2020 12:00:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589396459; bh=AMOuEam/zySxh7XqKpGm/ePjbYyQZiO2oIEcNmvyiGU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=n+pjQ4vlMlx/kqaSvuGImAvO5oSVenWjKxxlirSid7nMXu2Z4IpTynJyYTctp6HYa DJFbCaQigi3DX34g/Fc37j4VaeuDVg4yP+AjLKrY4V4peDeipl0MQVVy/h14DhgX/B VaDl68eVMO0jwnCvwbGqiJ/wwC1KbEaGd3pMcEow=
Date: Wed, 13 May 2020 12:00:59 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3648/push/5067914519@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3648@github.com>
References: <quicwg/base-drafts/pull/3648@github.com>
Subject: Re: [quicwg/base-drafts] QPACK acknowledgements (#3648)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc43eb7a319_3b583fcd5decd96038905b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-JWH5HSjZ7GLZj3T74j7N1YJa7Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 19:01:31 -0000

----==_mimepart_5ebc43eb7a319_3b583fcd5decd96038905b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@afrind pushed 1 commit.

634b2eb1b4e867c4a090b1bf67b4715b15252f4f  comma drama


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3648/files/3b8ce70ea6bafeed0d700ee8d9c95d34186c24ea..634b2eb1b4e867c4a090b1bf67b4715b15252f4f

----==_mimepart_5ebc43eb7a319_3b583fcd5decd96038905b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/afrind" class="user-mention">@afrind</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/634b2eb1b4e867c4a090b1bf67b4715b15252f4f">634b2eb</a>  comma drama</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3648/files/3b8ce70ea6bafeed0d700ee8d9c95d34186c24ea..634b2eb1b4e867c4a090b1bf67b4715b15252f4f">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2W7KRFGTRMAATHQ43RRLU6XANCNFSM4M7HN7ZA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3K5WYNSDL2M2AZ7JTRRLU6XA5CNFSM4M7HN7ZKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTOMBRGM4TCOKQOVZWQIZVGA3DOOJRGQ2TCOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3648/files/3b8ce70ea6bafeed0d700ee8d9c95d34186c24ea..634b2eb1b4e867c4a090b1bf67b4715b15252f4f",
"url": "https://github.com/quicwg/base-drafts/pull/3648/files/3b8ce70ea6bafeed0d700ee8d9c95d34186c24ea..634b2eb1b4e867c4a090b1bf67b4715b15252f4f",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebc43eb7a319_3b583fcd5decd96038905b--


From nobody Wed May 13 12:03:06 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 62DCA3A0917 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:03:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 t2qwIfEEf8AI for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:02:59 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 45D883A07CB for <quic-issues@ietf.org>; Wed, 13 May 2020 12:02:29 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 433B3C60B3B for <quic-issues@ietf.org>; Wed, 13 May 2020 12:02:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589396548; bh=1GgtdHQM5szxtLSpy4J5D0fPIcJOfDQlZWivg1z+ZZY=; h=Date:From:To:Subject:From; b=RNG7aXXaY52BMIYUkfHBTkhwLQ53+HZVSYBjrlZ4pVRCD1xWZSXijA7xnZRlWM8bj WMbkxdqbFo7IWbwpx1eVFT3dZ0Xywr5OoG6+wR5c/EK6x1+VHTV4qCMzbL3qQ+ejsw PI/kZQwgMc/e++xMi6zQudWo3E1zYovewo8nfJqU=
Date: Wed, 13 May 2020 12:02:28 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/183b58-64b41f@github.com>
Subject: [quicwg/base-drafts] 64b41f: Script updating gh-pages from 634b2eb1. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/F8VG7aG-lRDLWglPtdGKtIKR43A>
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: Wed, 13 May 2020 19:03:05 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 64b41f0812ba854636761501da44494eea3bc1e9
      https://github.com/quicwg/base-drafts/commit/64b41f0812ba854636761501da44494eea3bc1e9
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M index.html
    M qpack-thanks/draft-ietf-quic-http.html
    M qpack-thanks/draft-ietf-quic-http.txt
    M qpack-thanks/draft-ietf-quic-invariants.html
    M qpack-thanks/draft-ietf-quic-invariants.txt
    M qpack-thanks/draft-ietf-quic-qpack.html
    M qpack-thanks/draft-ietf-quic-qpack.txt
    M qpack-thanks/draft-ietf-quic-recovery.html
    M qpack-thanks/draft-ietf-quic-recovery.txt
    M qpack-thanks/draft-ietf-quic-tls.html
    M qpack-thanks/draft-ietf-quic-tls.txt
    M qpack-thanks/draft-ietf-quic-transport.html
    M qpack-thanks/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 634b2eb1. [ci skip]



From nobody Wed May 13 12:04:17 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 5AE223A07CB for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:04:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 2eJhT6b_Abfw for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:04:14 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 20DE33A07C6 for <quic-issues@ietf.org>; Wed, 13 May 2020 12:04:14 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 5FC19960612 for <quic-issues@ietf.org>; Wed, 13 May 2020 12:04:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589396653; bh=jSAW3ksOptCHqjO+LLyLFA3MQc2ShWrISr4B0D9mIug=; h=Date:From:To:Subject:From; b=CZKVExZ3no0Qp9ziUzATaXuGB63o7+dhPXzGmTeiiGLukjM4h8nKQ+bQk6F8VcFki ZIxzdUvAp0K1XskyK6ZSEUJZnu7JHBbJrpyFZIr4MdI/nt/qBTL5rgcyPJ56qUnZuv e8k4Sk2ZKz/UmxRNWZNvFU1aO3mSOQGnWo3dxxis=
Date: Wed, 13 May 2020 12:04:13 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/16d3b9-e58f1b@github.com>
Subject: [quicwg/base-drafts] e58f1b: QPACK acknowledgements (#3648)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HZ_bzL008czLwUda5xvrsFvbxL4>
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: Wed, 13 May 2020 19:04:15 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: e58f1b6d472b2f5b8cf3dbd296537d4f07961c0f
      https://github.com/quicwg/base-drafts/commit/e58f1b6d472b2f5b8cf3dbd296537d4f07961c0f
  Author: afrind <afrind@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  QPACK acknowledgements (#3648)

* QPACK acknowledgements

First take - please me know if I missed someone who made a meaningful contribution.

Fixes #3278

* comma drama



From nobody Wed May 13 12:04:21 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 0D7D53A07BE for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:04:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 6MskjSIYjInZ for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:04:14 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 49D423A07C8 for <quic-issues@ietf.org>; Wed, 13 May 2020 12:04:14 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id A5CD58C0914 for <quic-issues@ietf.org>; Wed, 13 May 2020 12:04:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589396653; bh=VYBbwI9tqQA5wroQVikJFcnsXuEpkTsNjYvbF8Mque0=; h=Date:From:To:Subject:From; b=zj9NAcLVH8VHj2NDKPUon8Ka2kBrAHvYvsck5kOskbLKblPSbiEKz1Y70ABmSwVWj 05SmDWZC9AKd9/HQ48/O8rCMpvYH10Q+9PJRr94kCio9oR92LaeuR1m+cQYeUnyVFZ vZNESzH+H83M8glE6lSVjJ49Mhnuc1c1FsHPn3P4=
Date: Wed, 13 May 2020 12:04:13 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-thanks/634b2e-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/75mdvLdRSTGFKlAyhQhB7_6MpSU>
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: Wed, 13 May 2020 19:04:17 -0000

  Branch: refs/heads/qpack-thanks
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed May 13 12:04:26 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 DFC913A07C6 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:04:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Xgh90QVHc8Kg for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:04:23 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7EA463A07BE for <quic-issues@ietf.org>; Wed, 13 May 2020 12:04:23 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 8E52AA1EEE for <quic-issues@ietf.org>; Wed, 13 May 2020 12:04:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589396662; bh=SVaxkgWDHOufHvmoN/B7SoGxDZmmheU0L8SQx4RVIqY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jixnrLh2KGAvM///4vT66FtBO22pxeVVYjcqTZe7Qa3QyRDv6Ln3RPjOzdZY4tpL0 Nh+LzYkDtkbXOjRWqndCMVp2SdRLBIO6+CRIYGHkEsOYo150Tt+br56Hl/VGWxS/xd qn88e51gHOGaPEN/4a2oKcwhrMurQhsGw7ML3xSQ=
Date: Wed, 13 May 2020 12:04:22 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4N427SOHDDGF7D4ON4ZAS3NEVBNHHB7EQTBM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3278/issue_event/3333493923@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3278@github.com>
References: <quicwg/base-drafts/issues/3278@github.com>
Subject: Re: [quicwg/base-drafts] Add Contributors (#3278)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc44b67c9b6_2e9a3f9f04ccd96c3447ce"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ECn5F8Itbo08Rmp01NXyl9G70o4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 19:04:25 -0000

----==_mimepart_5ebc44b67c9b6_2e9a3f9f04ccd96c3447ce
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3278 via #3648.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3278#event-3333493923
----==_mimepart_5ebc44b67c9b6_2e9a3f9f04ccd96c3447ce
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="529666827" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3278" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3278/hovercard" href="https://github.com/quicwg/base-drafts/issues/3278">#3278</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="617013342" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3648" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3648/hovercard" href="https://github.com/quicwg/base-drafts/pull/3648">#3648</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3278#event-3333493923">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2EVM7ZQUZYDXNXMKTRRLVLNANCNFSM4JSOUQ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6XFGV7ABTPGVO5XGDRRLVLNA5CNFSM4JSOUQ6KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY2YRJIY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3278#event-3333493923",
"url": "https://github.com/quicwg/base-drafts/issues/3278#event-3333493923",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebc44b67c9b6_2e9a3f9f04ccd96c3447ce--


From nobody Wed May 13 12:04:30 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 6A3FB3A07BE for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:04:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 nqaqgeVP6Bwk for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:04:24 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 42DD23A07C8 for <quic-issues@ietf.org>; Wed, 13 May 2020 12:04:24 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 8CD7252008C for <quic-issues@ietf.org>; Wed, 13 May 2020 12:04:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589396662; bh=PwrT01+HUVoKoxQsNfUQ7wOmoFFj66flgczs6CB35j8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LImsONhHFZi0e7q0UGttpnh23pbn7HIrTYJOmWh7jdtmejhNX8vQbcO2G5u8ilMGK LT8iLNnZSZ0EAgDz9rGGoo43trRSpucSFTMwNeSo+fyuvffL9cN1cwVvDj8J+glO4o /SGKxu+OC3szWJLGKWN5RGtZ8XwoG30Rtfnhmi54=
Date: Wed, 13 May 2020 12:04:22 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4ANJWVPP7GMNH2MPV4ZAS3NEVBNHHCJRXALY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3648/issue_event/3333493915@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3648@github.com>
References: <quicwg/base-drafts/pull/3648@github.com>
Subject: Re: [quicwg/base-drafts] QPACK acknowledgements (#3648)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc44b67d8a6_244c3fcb2e8cd9601982bc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4AkIAahlldcAXNyW0F6onteBo-8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 19:04:26 -0000

----==_mimepart_5ebc44b67d8a6_244c3fcb2e8cd9601982bc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3648 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3648#event-3333493915
----==_mimepart_5ebc44b67d8a6_244c3fcb2e8cd9601982bc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="617013342" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3648" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3648/hovercard" href="https://github.com/quicwg/base-drafts/pull/3648">#3648</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3648#event-3333493915">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3VFSWGG6JOTZSOTRLRRLVLNANCNFSM4M7HN7ZA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7ZFXFBETI76A4GDCLRRLVLNA5CNFSM4M7HN7ZKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY2YRJGY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3648#event-3333493915",
"url": "https://github.com/quicwg/base-drafts/pull/3648#event-3333493915",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebc44b67d8a6_244c3fcb2e8cd9601982bc--


From nobody Wed May 13 12:05:15 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 354273A07C6 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:05:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 SQbxeVmLFOpi for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:05:13 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3058C3A07C8 for <quic-issues@ietf.org>; Wed, 13 May 2020 12:05:13 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 816D7C6049C for <quic-issues@ietf.org>; Wed, 13 May 2020 12:05:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589396712; bh=5wsvkkGvsTK0bKht58OFohu0vSKM7TaRBQ50IKdrJ1o=; h=Date:From:To:Subject:From; b=VxKjywM8QY2dly98JrYrfj0M7dprzoDpcu+wEHRfFfnUD9MaJ0JGjAzRI7X9OHSmQ Wrbo9fN+vMWDxy6B9oTvnKhtxS/xUj5rInBkuCIqgiM8WA2cTipLnlgYCtmMHZPBRy Ohc6pfQcweFRdyFs1mkUrB9a8Pw05BLEQLYRenB0=
Date: Wed, 13 May 2020 12:05:12 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/64b41f-1e2b53@github.com>
Subject: [quicwg/base-drafts] 1e2b53: Script updating gh-pages from e58f1b6d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8ulOrylWhCF8-8mAFdIqHE7FH1c>
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: Wed, 13 May 2020 19:05:14 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1e2b53ec5fce985b46a479be6d4d6be4688d597b
      https://github.com/quicwg/base-drafts/commit/1e2b53ec5fce985b46a479be6d4d6be4688d597b
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from e58f1b6d. [ci skip]



From nobody Wed May 13 12:31:00 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 1BB543A0857 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:30:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 OyFOZL0BHgYs for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 12:30:56 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 667393A0854 for <quic-issues@ietf.org>; Wed, 13 May 2020 12:30:56 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 2B3A38C1DD6 for <quic-issues@ietf.org>; Wed, 13 May 2020 12:30:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589398255; bh=CSatSP40mzHTIOyIW+S2wFvgAcpm3E3jGc9cNnqSvCU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UJIjFr+leg4TXEEKZ3AjyMb5BhWOM9glmHmMKzEaFuVJyObS6gusQ/HyKgaDHhdAo 6vlJbYui1BKo6YPxgK+r6t0kvMDbce3exRiS2MxAuQuXQqj8vvULDNeZUfMhhtSzJg Xmgzah1uZfxpdwYSD34CR8+DwX2iBoT8CnafFzLE=
Date: Wed, 13 May 2020 12:30:55 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ752J5VFVYYNBWBS54ZAV67EVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/411235113@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc4aef1bf39_1a3b3fbde8acd95c17904e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UbyzbeLUPrBopMphFLomb6I6WmA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 19:30:58 -0000

----==_mimepart_5ebc4aef1bf39_1a3b3fbde8acd95c17904e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.

Thanks for the change.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-411235113
----==_mimepart_5ebc4aef1bf39_1a3b3fbde8acd95c17904e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>

<p>Thanks for the change.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-411235113">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK67W5Z4GPSOI3MJAMTRRLYO7ANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ4UPKCLZXAF2L5NKLRRLYO7A5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCBPGKI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-411235113",
"url": "https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-411235113",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebc4aef1bf39_1a3b3fbde8acd95c17904e--


From nobody Wed May 13 15:12:00 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 998723A00C0 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:11:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 SRRTan04CHfH for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:11:57 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 415D93A00B2 for <quic-issues@ietf.org>; Wed, 13 May 2020 15:11:56 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 57ECF2C1488 for <quic-issues@ietf.org>; Wed, 13 May 2020 15:11:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589407914; bh=4/zzLFhtvaCKNr2XgEnvdx8gW+WsFHzXdSvaIpXk7r8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OUhiEfHbLOYU4PfHVFvTANjbEuvuspIGb6XkHKF/HX7ZufM/GTZ1h5ceJg/IadhVH vCZGCaLymTfEcLFvXhfxLUGMXtuYGtMnRh7T4BfaByhfV7oJKMH/ZEOMtBmeeo6IJO MSDe64rUxmFb7KCDz7ZZwsrv3cx8uBpaVbLkil/o=
Date: Wed, 13 May 2020 15:11:54 -0700
From: Kazu Yamamoto <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6X22FTHCGFW65QSTV4ZBI2VEVBNHHCJFQILU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3633/628272461@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3633@github.com>
References: <quicwg/base-drafts/issues/3633@github.com>
Subject: Re: [quicwg/base-drafts] Minor editorical issue in QPACK draft (#3633)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc70aa491f5_2d743fdf086cd9601261d8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazu-yamamoto
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UywbS8l3SGaTTagfkdOMFpmIUzk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 22:11:59 -0000

----==_mimepart_5ebc70aa491f5_2d743fdf086cd9601261d8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@afrind Thank you!

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3633#issuecomment-628272461
----==_mimepart_5ebc70aa491f5_2d743fdf086cd9601261d8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/afrind/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/afrind">@afrind</a> Thank you!</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3633#issuecomment-628272461">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYGTGML4FSG4JYWAH3RRMLKVANCNFSM4M3BSWTA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2GOBNOIWUYQOIJDR3RRMLKVA5CNFSM4M3BSWTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVZK2TI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3633#issuecomment-628272461",
"url": "https://github.com/quicwg/base-drafts/issues/3633#issuecomment-628272461",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebc70aa491f5_2d743fdf086cd9601261d8--


From nobody Wed May 13 15:53:10 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 DC28B3A0542 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:53:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 RJorGKzkITMG for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:53:07 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 940253A053F for <quic-issues@ietf.org>; Wed, 13 May 2020 15:53:07 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id F05131C0B23 for <quic-issues@ietf.org>; Wed, 13 May 2020 15:53:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589410385; bh=MbpBSNAM5NkLfz/ff1eu2GX9yHwU/IokJEKjRjspTAI=; h=Date:From:To:Subject:From; b=hy0Kl5fsZT+hxco8CjUuRI2tQrKv5uDgnNWQXlsMPx3eB/VGM1HRU62jxysTbINti PCiVMUFYX7Jq/nMndKI1i+4Ng8WHaeIvK2Gw/oivDrxPOZHL5pc8UiwDpTTcR2EeEj DydhIH4xnc5ThpZAaLPxDTp51hErf+FHfc1djb38=
Date: Wed, 13 May 2020 15:53:05 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-more-pacing/000000-c920dc@github.com>
Subject: [quicwg/base-drafts] c920dc: Another pacing algorithm
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Pmmrlb2LNPRc1HIgiRXLCRaXvbs>
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: Wed, 13 May 2020 22:53:09 -0000

  Branch: refs/heads/ianswett-more-pacing
  Home:   https://github.com/quicwg/base-drafts
  Commit: c920dc35a3d7ddeecd98b1bbe4ca686ce8f4e9d5
      https://github.com/quicwg/base-drafts/commit/c920dc35a3d7ddeecd98b1bbe4ca686ce8f4e9d5
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Another pacing algorithm

This is based on @martinthomson #3630, but my suggestions were so large I created a new PR.

Fixes #3122



From nobody Wed May 13 15:53:56 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 591E53A0544 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:53:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.268
X-Spam-Level: 
X-Spam-Status: No, score=-3.268 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 sM0B4VtPStkZ for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:53:54 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F03053A0542 for <quic-issues@ietf.org>; Wed, 13 May 2020 15:53:53 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id BBEAB6E1286 for <quic-issues@ietf.org>; Wed, 13 May 2020 15:53:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589410432; bh=9dttgfVeFWIe1avGnDudCSUX8tiFc2k1NVrgkmqCIXU=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=TWAWRj9OAOYlYbut4cbQjqlK90tGEhA3QD3fzs+959R15zO7X/1VBtzA7I3ss3dW9 NsnBFRHLZbisNcRWuYfz7UrNKKYW2i0bBA9Jh3YMoAkDRWolKRk5Z7FaMlwtWM13Me 2xi8gf9orxyLrJlBF0Oe/K7zZ8/gELCtPfefjXfg=
Date: Wed, 13 May 2020 15:53:52 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5F3OW23PIZOJVE7F54ZBNYBEVBNHHCJUXUDE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3655@github.com>
Subject: [quicwg/base-drafts] Another pacing algorithm (#3655)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc7a80a70e7_5cd23fa80e4cd95c1791d5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bFOCC0JpXSGGM5uYjmZzja6JL3E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 22:53:55 -0000

----==_mimepart_5ebc7a80a70e7_5cd23fa80e4cd95c1791d5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This is based on @martinthomson #3630, but my suggestions were so large I created a new PR.

Fixes #3122
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3655

-- Commit Summary --

  * Another pacing algorithm

-- File Changes --

    M draft-ietf-quic-recovery.md (22)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3655.patch
https://github.com/quicwg/base-drafts/pull/3655.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3655

----==_mimepart_5ebc7a80a70e7_5cd23fa80e4cd95c1791d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This is based on <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="613057001" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3630" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3630/hovercard" href="https://github.com/quicwg/base-drafts/pull/3630">#3630</a>, but my suggestions were so large I created a new PR.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3122.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="508857302" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3122" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3122/hovercard" href="https://github.com/quicwg/base-drafts/issues/3122">#3122</a></p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3655'>https://github.com/quicwg/base-drafts/pull/3655</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Another pacing algorithm</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3655/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (22)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3655.patch'>https://github.com/quicwg/base-drafts/pull/3655.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3655.diff'>https://github.com/quicwg/base-drafts/pull/3655.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3655">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5UONIK73K2DOK4GSLRRMQIBANCNFSM4NAFUZTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3K64FNGCQSECG2POLRRMQIBA5CNFSM4NAFUZT2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JGS6QMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3655",
"url": "https://github.com/quicwg/base-drafts/pull/3655",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebc7a80a70e7_5cd23fa80e4cd95c1791d5--


From nobody Wed May 13 15:55:10 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 61B223A05A0 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:55:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.269
X-Spam-Level: 
X-Spam-Status: No, score=-2.269 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 lOu73E8g868Z for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:55:07 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E7EF03A0598 for <quic-issues@ietf.org>; Wed, 13 May 2020 15:55:06 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id B6B2D8C004E for <quic-issues@ietf.org>; Wed, 13 May 2020 15:55:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589410505; bh=DbLw3pnGm8LthA9S7Sfl7zNsD1a0Rg7YIb3LWVtSBFs=; h=Date:From:To:Subject:From; b=NQil0MHvrfi/nnxkWk4DnR4PHZhVyixr5AhGfp7A3r3F+tadL/mQ2zsQ0V171W3Cp ksNESf0Boa/JGHfgfczPLisKE1HuN7Lt3o3dleCwP0LM/yp1HZw8NUm2op36T7LXi1 bFA/iGAgFYtIAjEW/I+FRlj3pcCWmkwm++YAFiPI=
Date: Wed, 13 May 2020 15:55:05 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-more-pacing/c920dc-d6ab1c@github.com>
Subject: [quicwg/base-drafts] d6ab1c: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/a15mU_kknACLXHixFQxyW7oqJI4>
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: Wed, 13 May 2020 22:55:08 -0000

  Branch: refs/heads/ianswett-more-pacing
  Home:   https://github.com/quicwg/base-drafts
  Commit: d6ab1c7712de890c7f18062ef04991476b513927
      https://github.com/quicwg/base-drafts/commit/d6ab1c7712de890c7f18062ef04991476b513927
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Wed May 13 15:55:17 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 8E1323A0598 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:55:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.726
X-Spam-Level: 
X-Spam-Status: No, score=-1.726 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 sbQteiUBv5yM for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:55:15 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 43A803A05A0 for <quic-issues@ietf.org>; Wed, 13 May 2020 15:55:15 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 33E48521151 for <quic-issues@ietf.org>; Wed, 13 May 2020 15:55:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589410514; bh=J/BOFKxnCBtKVuD5Y5Xf5Ti1OC3M70yWURwTycnGbUE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WEl+udh9XAhXSatv0u02R1dJ5y+qGYgdv2wiDrc3GuBUOAW7uuPEpnzZATz8uykF0 KkUzkp0cOyIgv12wY/bNMVjmQHJrgX5R5H7N6c7CI/Mu3BAOVJpBPXcHOCHney4AUI JN3RgsBK/23zO47GlRYxvsLtuIgMjWAglR9PxBfw=
Date: Wed, 13 May 2020 15:55:14 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3655/push/5068952356@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3655@github.com>
References: <quicwg/base-drafts/pull/3655@github.com>
Subject: Re: [quicwg/base-drafts] Another pacing algorithm (#3655)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc7ad223902_74583f856c8cd96812096c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Sqaooq5a4W0UBaz8lH8QdYXYl4A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 22:55:17 -0000

----==_mimepart_5ebc7ad223902_74583f856c8cd96812096c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

d6ab1c7712de890c7f18062ef04991476b513927  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3655/files/c920dc35a3d7ddeecd98b1bbe4ca686ce8f4e9d5..d6ab1c7712de890c7f18062ef04991476b513927

----==_mimepart_5ebc7ad223902_74583f856c8cd96812096c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/d6ab1c7712de890c7f18062ef04991476b513927">d6ab1c7</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3655/files/c920dc35a3d7ddeecd98b1bbe4ca686ce8f4e9d5..d6ab1c7712de890c7f18062ef04991476b513927">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4EIZBFIUPW44AOPLTRRMQNFANCNFSM4NAFUZTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK52CDZQD6F2LGVMSYLRRMQNFA5CNFSM4NAFUZT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTONRVGQZTGMKQOVZWQIZVGA3DQOJVGIZTKNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3655/files/c920dc35a3d7ddeecd98b1bbe4ca686ce8f4e9d5..d6ab1c7712de890c7f18062ef04991476b513927",
"url": "https://github.com/quicwg/base-drafts/pull/3655/files/c920dc35a3d7ddeecd98b1bbe4ca686ce8f4e9d5..d6ab1c7712de890c7f18062ef04991476b513927",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebc7ad223902_74583f856c8cd96812096c--


From nobody Wed May 13 15:59:43 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 0398A3A065A for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:59:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.272
X-Spam-Level: 
X-Spam-Status: No, score=-2.272 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 n38mSGD8kd83 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:59:40 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B80703A064A for <quic-issues@ietf.org>; Wed, 13 May 2020 15:59:40 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 9D616520040 for <quic-issues@ietf.org>; Wed, 13 May 2020 15:59:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589410779; bh=nshfs27QhYlNS9Lenu9APsYXsUpILG6bPLwkcl65fb8=; h=Date:From:To:Subject:From; b=H4MVhYbYdFb4ZE01jnUlaATiB5lNA6ed42uXOlhUnJccsuEqZIWP9mbGXSFK0laWz oWGOq8UzuBNd3CoCxTB4eMkIqX/50YShRDioaX5shY2RhsA72NLoggSO3SPp8yTqlJ GMtsmht3/B74DZ1FpY9cEnhITbzuqr9dYy18yJGU=
Date: Wed, 13 May 2020 15:59:39 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-more-pacing/d6ab1c-9ee95e@github.com>
Subject: [quicwg/base-drafts] 9ee95e: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2NbLyUJXdaEzPoNgjXozA9Niooo>
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: Wed, 13 May 2020 22:59:42 -0000

  Branch: refs/heads/ianswett-more-pacing
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9ee95e1bf7ed80f3dea4c7490fe3c0986aa41f24
      https://github.com/quicwg/base-drafts/commit/9ee95e1bf7ed80f3dea4c7490fe3c0986aa41f24
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Wed May 13 15:59:52 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 6A5693A065A for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:59:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.723
X-Spam-Level: 
X-Spam-Status: No, score=-1.723 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 tT1BGQcQRBh8 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 15:59:49 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BE9F43A067A for <quic-issues@ietf.org>; Wed, 13 May 2020 15:59:48 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 067D96E11BC for <quic-issues@ietf.org>; Wed, 13 May 2020 15:59:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589410788; bh=HjSh2FX/3JmXIcZ2nPNb4Fhiw/9WhqowkZAeR1UCFz0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gkte2iQY4GXZCDEeYBY6/v4k5LyXt1AEt9WWWCxn8PG+emAx2qFlYy7QkyqFlYICU irOmgTXyGY7xzY4/aun4KBEtxWWTdSPx2zSawYuTkfuz5Jq5k/Z98KyOfDT06Vj46A Rn4+0Qbqn2im8H5fqLyN8c/MltjibPTh7wGs3TLE=
Date: Wed, 13 May 2020 15:59:47 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3655/push/5068967013@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3655@github.com>
References: <quicwg/base-drafts/pull/3655@github.com>
Subject: Re: [quicwg/base-drafts] Another pacing algorithm (#3655)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc7be3ec7bb_74553f856c8cd9681675f2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EYj_6kRjG8_j6ZJaQOoQ6u6uOhU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 22:59:51 -0000

----==_mimepart_5ebc7be3ec7bb_74553f856c8cd9681675f2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

9ee95e1bf7ed80f3dea4c7490fe3c0986aa41f24  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3655/files/d6ab1c7712de890c7f18062ef04991476b513927..9ee95e1bf7ed80f3dea4c7490fe3c0986aa41f24

----==_mimepart_5ebc7be3ec7bb_74553f856c8cd9681675f2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/9ee95e1bf7ed80f3dea4c7490fe3c0986aa41f24">9ee95e1</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3655/files/d6ab1c7712de890c7f18062ef04991476b513927..9ee95e1bf7ed80f3dea4c7490fe3c0986aa41f24">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYJO34GCASJAN7UM5TRRMQ6HANCNFSM4NAFUZTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYTNYANZB63CBSS4F3RRMQ6HA5CNFSM4NAFUZT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTONRVGQZTGMKQOVZWQIZVGA3DQOJWG4YDCMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3655/files/d6ab1c7712de890c7f18062ef04991476b513927..9ee95e1bf7ed80f3dea4c7490fe3c0986aa41f24",
"url": "https://github.com/quicwg/base-drafts/pull/3655/files/d6ab1c7712de890c7f18062ef04991476b513927..9ee95e1bf7ed80f3dea4c7490fe3c0986aa41f24",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebc7be3ec7bb_74553f856c8cd9681675f2--


From nobody Wed May 13 16:01:00 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 6A5DE3A0747 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 16:00:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.272
X-Spam-Level: 
X-Spam-Status: No, score=-2.272 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 RBKeqiTfYoGj for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 16:00:57 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0FC8B3A0736 for <quic-issues@ietf.org>; Wed, 13 May 2020 16:00:57 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 335676A0442 for <quic-issues@ietf.org>; Wed, 13 May 2020 16:00:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589410856; bh=cHN9PnEkoeAIAsQtKRJ6UVDC0Muvb2jvcVQJmqxAny8=; h=Date:From:To:Subject:From; b=riIbnd7Us0++Jeoz32uL/SiyVK9k0k2paAxMEyjv3ohxlCncwMfbOIRx1R+3Q+7Vu krcMN1SS9nKcgdiMBPv8eAeqnHmZVSBvHvoYsntTscTWGBXfW32jqFYQG6sTkSuCnR oAgdTr9fRdqVmuZBSWQTpFAQR/Bh4JOzHNu/XPGk=
Date: Wed, 13 May 2020 16:00:56 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-more-pacing/9ee95e-abfdd7@github.com>
Subject: [quicwg/base-drafts] abfdd7: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Had_EKFCXk3fGkmtQq0Vs-hmIdU>
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: Wed, 13 May 2020 23:00:58 -0000

  Branch: refs/heads/ianswett-more-pacing
  Home:   https://github.com/quicwg/base-drafts
  Commit: abfdd75ba37e63e91297b8ae26071cb40304c47f
      https://github.com/quicwg/base-drafts/commit/abfdd75ba37e63e91297b8ae26071cb40304c47f
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Wed May 13 16:01:09 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 E503D3A0747 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 16:01:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.726
X-Spam-Level: 
X-Spam-Status: No, score=-1.726 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 3p6BEmrkNT_d for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 16:01:06 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4B6DF3A0736 for <quic-issues@ietf.org>; Wed, 13 May 2020 16:01:06 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 7F55CA0A3E for <quic-issues@ietf.org>; Wed, 13 May 2020 16:01:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589410864; bh=GSwbCrltobVzhaJdcZoKiI+rCdDylygAAElXzfSrN0I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PGloIeckwDn6cyriRsQRGwMbE6Ar9Yoz8ZKTzA3icQLMv3cHZehYO9tzpdjcbg1Mv dwp1gCdVO/RbF7zWaDpKjcdVyWse2c/sLbQrlrSaikQlryAcOm5KAfrOzg96Ub+b8s 6Y68qBwLtCg8j6edB/k7Cy85GtvQRykqDzxx5O4c=
Date: Wed, 13 May 2020 16:01:04 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3655/push/5068971397@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3655@github.com>
References: <quicwg/base-drafts/pull/3655@github.com>
Subject: Re: [quicwg/base-drafts] Another pacing algorithm (#3655)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc7c30702f2_7a2e3f827accd9681877ae"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bi9zm-PRW8hqgmIPoS8csIbYlTs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 23:01:08 -0000

----==_mimepart_5ebc7c30702f2_7a2e3f827accd9681877ae
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

abfdd75ba37e63e91297b8ae26071cb40304c47f  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3655/files/9ee95e1bf7ed80f3dea4c7490fe3c0986aa41f24..abfdd75ba37e63e91297b8ae26071cb40304c47f

----==_mimepart_5ebc7c30702f2_7a2e3f827accd9681877ae
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/abfdd75ba37e63e91297b8ae26071cb40304c47f">abfdd75</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3655/files/9ee95e1bf7ed80f3dea4c7490fe3c0986aa41f24..abfdd75ba37e63e91297b8ae26071cb40304c47f">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZKVM6KHM7NPUNCGA3RRMRDBANCNFSM4NAFUZTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2AHEMTBKDAZXSEFDDRRMRDBA5CNFSM4NAFUZT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTONRVGQZTGMKQOVZWQIZVGA3DQOJXGEZTSNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3655/files/9ee95e1bf7ed80f3dea4c7490fe3c0986aa41f24..abfdd75ba37e63e91297b8ae26071cb40304c47f",
"url": "https://github.com/quicwg/base-drafts/pull/3655/files/9ee95e1bf7ed80f3dea4c7490fe3c0986aa41f24..abfdd75ba37e63e91297b8ae26071cb40304c47f",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebc7c30702f2_7a2e3f827accd9681877ae--


From nobody Wed May 13 16:03:57 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 B60D73A07AD for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 16:03:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.269
X-Spam-Level: 
X-Spam-Status: No, score=-2.269 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 B3ADOX073rwQ for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 16:03:54 -0700 (PDT)
Received: from out-15.smtp.github.com (out-15.smtp.github.com [192.30.254.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D50CD3A07BD for <quic-issues@ietf.org>; Wed, 13 May 2020 16:03:45 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 684A92616E5 for <quic-issues@ietf.org>; Wed, 13 May 2020 16:03:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589411025; bh=HsCXv26+ZIjNRgDpzeX0fBuLPaPIl0MEgiJ+hrnDqYI=; h=Date:From:To:Subject:From; b=vLzI+3aRb6vQrYKjhmMjQGqVcTHC/WB0Ck/uwWGu0roQtXA5CU7kuWPHGqXl6CLei 4Nw7G1/ZN1N11e3OBoMZQLeEhcr1FsdhHNiR2JpWhX74HZ05Dg/cnlOF8od4yfS0NV nspMFCZT0JMDMa5v5wJ9cr8naMOy51BIjwJ53d5U=
Date: Wed, 13 May 2020 16:03:45 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-more-pacing/abfdd7-888ea2@github.com>
Subject: [quicwg/base-drafts] 888ea2: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/YkysiZxdS83Q6_dUiGyPf9qo87g>
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: Wed, 13 May 2020 23:03:56 -0000

  Branch: refs/heads/ianswett-more-pacing
  Home:   https://github.com/quicwg/base-drafts
  Commit: 888ea2d281773409c44bf30de4ae29ae112363d9
      https://github.com/quicwg/base-drafts/commit/888ea2d281773409c44bf30de4ae29ae112363d9
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Wed May 13 16:04:09 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 A99443A0764 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 16:04:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.726
X-Spam-Level: 
X-Spam-Status: No, score=-1.726 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 kijhoeh3IPMt for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 16:04:06 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F2FEC3A07A9 for <quic-issues@ietf.org>; Wed, 13 May 2020 16:03:53 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 443E0C605FB for <quic-issues@ietf.org>; Wed, 13 May 2020 16:03:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589411033; bh=ofQPjq5WntHHNZyPQCTQhYstZZRBrdlUAio0S5CGqAE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iUmvkDRb/sopHiCcl1pcMbBGOw+krSvJa5LmR0OK58Dl5S67kwCNoas8XxGMOm1Ow UoPuHgh8ZSN6VWRnalZiAgaIW+23D6UUy2ldSI0hGXJm4vgT33QvlrlIgXXD79bVjB TASr9blZ2jNO/ws7nggkJsqpe8NUXX0hi2cde7ug=
Date: Wed, 13 May 2020 16:03:53 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3655/push/5068980627@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3655@github.com>
References: <quicwg/base-drafts/pull/3655@github.com>
Subject: Re: [quicwg/base-drafts] Another pacing algorithm (#3655)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc7cd932cfc_326a3fcd44acd9643085c7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/65Mf7YQ7TxpfdH99eS44n6HIWA0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 13 May 2020 23:04:08 -0000

----==_mimepart_5ebc7cd932cfc_326a3fcd44acd9643085c7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

888ea2d281773409c44bf30de4ae29ae112363d9  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3655/files/abfdd75ba37e63e91297b8ae26071cb40304c47f..888ea2d281773409c44bf30de4ae29ae112363d9

----==_mimepart_5ebc7cd932cfc_326a3fcd44acd9643085c7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/888ea2d281773409c44bf30de4ae29ae112363d9">888ea2d</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3655/files/abfdd75ba37e63e91297b8ae26071cb40304c47f..888ea2d281773409c44bf30de4ae29ae112363d9">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZC4NJTTEADA75AEPDRRMRNTANCNFSM4NAFUZTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5VMA2QEIR7LQBN6FDRRMRNTA5CNFSM4NAFUZT2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTONRVGQZTGMKQOVZWQIZVGA3DQOJYGA3DENY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3655/files/abfdd75ba37e63e91297b8ae26071cb40304c47f..888ea2d281773409c44bf30de4ae29ae112363d9",
"url": "https://github.com/quicwg/base-drafts/pull/3655/files/abfdd75ba37e63e91297b8ae26071cb40304c47f..888ea2d281773409c44bf30de4ae29ae112363d9",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebc7cd932cfc_326a3fcd44acd9643085c7--


From nobody Wed May 13 17:46:42 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 17C283A089D for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 17:46:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 ZsmRiiS_VrTk for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 17:46:37 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CB50C3A089B for <quic-issues@ietf.org>; Wed, 13 May 2020 17:46:37 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 92A746E04A1 for <quic-issues@ietf.org>; Wed, 13 May 2020 17:46:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589417195; bh=rTBeKjKUtIgpIB+NqXhin06p/dnkRnFLqNava02egvw=; h=Date:From:To:Subject:From; b=D1qMkKCJvE1u9yj8RKxX1LlCXxi/OWYpcE1IUX7FawJpuDWoAE5HuxA+lDnVu8CjG 9q9g8EIDI4UO1eJdjUz+9yAdPZ4wep22XJW8bdgIxwU1rXOZUS+9QGudQmoavffj2v 7chXWTFwnfXkaVT9C5icSmY8RPajFI2X7mlLNP9M=
Date: Wed, 13 May 2020 17:46:35 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/e58f1b-dad178@github.com>
Subject: [quicwg/base-drafts] abcb20: Convert command-line arguments to integers
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jYjptvdLYqzfuMi_PV9QZu-uaOg>
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: Thu, 14 May 2020 00:46:39 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: abcb20da2d769c0ffe9eaeea94b10730d61e82fb
      https://github.com/quicwg/base-drafts/commit/abcb20da2d769c0ffe9eaeea94b10730d61e82fb
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M .lint.py

  Log Message:
  -----------
  Convert command-line arguments to integers

Then black did its thing.


  Commit: dad1786ae37811b245fcb285885188adfff797fd
      https://github.com/quicwg/base-drafts/commit/dad1786ae37811b245fcb285885188adfff797fd
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M .lint.py

  Log Message:
  -----------
  Merge pull request #3652 from quicwg/lint-args

Convert command-line arguments to integers


Compare: https://github.com/quicwg/base-drafts/compare/e58f1b6d472b...dad1786ae378


From nobody Wed May 13 17:46:54 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 5C1D43A089B for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 17:46:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 HeiPV1TN4YkI for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 17:46:37 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CA8BF3A0895 for <quic-issues@ietf.org>; Wed, 13 May 2020 17:46:37 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 92940282A6A for <quic-issues@ietf.org>; Wed, 13 May 2020 17:46:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589417195; bh=WC3x5m8fzTCa0BsS4C5KI+ELZnPAoTHpSsd1W62z5n8=; h=Date:From:To:Subject:From; b=MfWqw2hg0MeUkbnZR8qVG1JVXB+1xxek7UxMBVMx2av9EhxXunTtoceAchBEy3JcH jWlk/mf2iOGfLslTztj7owjGAM9aOZMIBpWTeq5xQ/xds3x9eMGH4adlmmD8isY1Kt 7VaORVIlRw9d7V6GH4kuvR4dL6R0AgZfVLPgYEQs=
Date: Wed, 13 May 2020 17:46:35 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/lint-args/abcb20-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/83ZgAPLutn3oOrgYRNOk_DMe57k>
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: Thu, 14 May 2020 00:46:40 -0000

  Branch: refs/heads/lint-args
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed May 13 17:46:58 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 6E20E3A089B for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 17:46:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.18
X-Spam-Level: 
X-Spam-Status: No, score=-2.18 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 4Dkb88vVuJhu for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 17:46:45 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2ADDD3A0895 for <quic-issues@ietf.org>; Wed, 13 May 2020 17:46:45 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 4EAE98C01F4 for <quic-issues@ietf.org>; Wed, 13 May 2020 17:46:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589417204; bh=t+NfHivxV5ApsPlFHo/bomhMrOhBznGIvkuzo2b2Gek=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hTKwaEobfYtKD2QHY65YBzkzXynrHfgQE//iI3Z+gqOyL0kj/EHEDuJZ1oRCWGxnJ 6daBXL6D5IGXP/OTdsOODOkhgkjKKpfHMKGYndCLcnmVXsKffzUyajTd9zpQ2lLNIs 5GswTEoPFAhP9PUdNrAwvB31JKdt1fH6ClKifXTU=
Date: Wed, 13 May 2020 17:46:44 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3JWUXG7HGZEYQBAIV4ZB27JEVBNHHCJSIVDI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3652/issue_event/3334410661@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3652@github.com>
References: <quicwg/base-drafts/pull/3652@github.com>
Subject: Re: [quicwg/base-drafts] Convert command-line arguments to integers (#3652)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc94f43f0de_452b3fd1a4ccd96c253065"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ETdr3yXuzA6XCljxlRjMqsons_U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 00:46:46 -0000

----==_mimepart_5ebc94f43f0de_452b3fd1a4ccd96c253065
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3652 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3652#event-3334410661
----==_mimepart_5ebc94f43f0de_452b3fd1a4ccd96c253065
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="617157914" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3652" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3652/hovercard" href="https://github.com/quicwg/base-drafts/pull/3652">#3652</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3652#event-3334410661">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK57KJBAAKP43VGLUW3RRM5PJANCNFSM4M7NWOTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZGZ3OM7ZITQU2QEHTRRM5PJA5CNFSM4M7NWOT2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY27RDJI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3652#event-3334410661",
"url": "https://github.com/quicwg/base-drafts/pull/3652#event-3334410661",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebc94f43f0de_452b3fd1a4ccd96c253065--


From nobody Wed May 13 17:47:30 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 145DE3A0861 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 17:47:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, 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] 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 mzfoyTmSmb34 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 17:47:27 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1B3E63A0820 for <quic-issues@ietf.org>; Wed, 13 May 2020 17:47:26 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 4970D8C05A5 for <quic-issues@ietf.org>; Wed, 13 May 2020 17:47:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589417246; bh=202ii82bzpT8R4dyvGTvHe056VZA+oEKLpgE3dZVotY=; h=Date:From:To:Subject:From; b=p5+QHWcrnudw0vQoxNERFjs45whCcK1eE27djNf5VYOTa+LUkkLycc9KzHavhcv6w y9IyTBS2IYlWDbTgl3p/DjfEoku+4HWhpGEvpe1cChBkBECz8C5VvZtESQK5PC5XVK CWLCfzMxpr2OV/NHZq9G+IJek8lMDKQCsPqaTU9c=
Date: Wed, 13 May 2020 17:47:26 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1e2b53-45c0bb@github.com>
Subject: [quicwg/base-drafts] 45c0bb: Script updating gh-pages from dad1786a. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NLav03fepxQ79lLNv_epvdhHK7k>
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: Thu, 14 May 2020 00:47:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 45c0bb97d42cbd356a3e85157197d2dcb7205304
      https://github.com/quicwg/base-drafts/commit/45c0bb97d42cbd356a3e85157197d2dcb7205304
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html
    R qpack-example-fix/draft-ietf-quic-http.html
    R qpack-example-fix/draft-ietf-quic-http.txt
    R qpack-example-fix/draft-ietf-quic-invariants.html
    R qpack-example-fix/draft-ietf-quic-invariants.txt
    R qpack-example-fix/draft-ietf-quic-qpack.html
    R qpack-example-fix/draft-ietf-quic-qpack.txt
    R qpack-example-fix/draft-ietf-quic-recovery.html
    R qpack-example-fix/draft-ietf-quic-recovery.txt
    R qpack-example-fix/draft-ietf-quic-tls.html
    R qpack-example-fix/draft-ietf-quic-tls.txt
    R qpack-example-fix/draft-ietf-quic-transport.html
    R qpack-example-fix/draft-ietf-quic-transport.txt
    R qpack-example-fix/index.html
    R resumption/draft-ietf-quic-http.html
    R resumption/draft-ietf-quic-http.txt
    R resumption/draft-ietf-quic-invariants.html
    R resumption/draft-ietf-quic-invariants.txt
    R resumption/draft-ietf-quic-qpack.html
    R resumption/draft-ietf-quic-qpack.txt
    R resumption/draft-ietf-quic-recovery.html
    R resumption/draft-ietf-quic-recovery.txt
    R resumption/draft-ietf-quic-tls.html
    R resumption/draft-ietf-quic-tls.txt
    R resumption/draft-ietf-quic-transport.html
    R resumption/draft-ietf-quic-transport.txt
    R resumption/index.html

  Log Message:
  -----------
  Script updating gh-pages from dad1786a. [ci skip]



From nobody Wed May 13 17:47:38 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 876343A0861 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 17:47:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 IxVnK3Yj-uYa for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 17:47:36 -0700 (PDT)
Received: from out-13.smtp.github.com (out-13.smtp.github.com [192.30.254.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 498883A0820 for <quic-issues@ietf.org>; Wed, 13 May 2020 17:47:36 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id CE9AF2616DC for <quic-issues@ietf.org>; Wed, 13 May 2020 17:47:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589417255; bh=h+YeUpxyO0yz54lvVnj/Iiw42xgTMrxsWmfUfVwqhNU=; h=Date:From:To:Subject:From; b=z7mARICWRGfvB38PPCzMWuiCgZsvssjckadTzJ9nBKyhp47M6DqQfzLAlu191UqAf RYoW3A3AqvQudK7ZgFY9/tSiTJW8hSnrv6rDxDSTjli85mzJ3BxNtNqx0bpy0jRmow DOq5YO/OhOLUoQJ/AW4MsLbIp1R9iZKXb6QqHbYQ=
Date: Wed, 13 May 2020 17:47:35 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/45c0bb-bae195@github.com>
Subject: [quicwg/base-drafts] bae195: Script updating archive at 2020-05-14T00:47:18Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QXWOWxmEqX7FjrNWhHRIDSpNWQg>
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: Thu, 14 May 2020 00:47:38 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: bae195afbc7a98f40336926ff8063d2449743744
      https://github.com/quicwg/base-drafts/commit/bae195afbc7a98f40336926ff8063d2449743744
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-14T00:47:18Z. [ci skip]



From nobody Wed May 13 17:58:48 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 C3DA83A08B2 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 17:58:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.273
X-Spam-Level: 
X-Spam-Status: No, score=-3.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 7TItcDux_qLg for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 17:58:45 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4FA693A08A6 for <quic-issues@ietf.org>; Wed, 13 May 2020 17:58:45 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 0705F660A02 for <quic-issues@ietf.org>; Wed, 13 May 2020 17:58:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589417924; bh=IeC6PdArkYG5nZj1ZuAj04SjCmc+laApD4vd0a7/Zn4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oNVko/PDHkfjSyCCjlKiKmaWcBcBtfqHLHpLPKiEgxgVmMRhzvG8Xpgagjm09Cj7d sWMVJ+5CFsghjbNJ5U1DCzaReB256rWwyOvDTaKAEJ2TCGzzTqxI3aLZ0Gz9l7Q5/N I5hPrqeu6KOJ9I6GGrds7UkjuTz59zg1++e5aeXs=
Date: Wed, 13 May 2020 17:58:43 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY5XHIQSTFRTDHAZYF4ZB4MHEVBNHHCJTOADM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/review/411395226@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc97c3ebdee_3b9c3fed97acd96441819"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZruX6_TWhn2xLma67r_vPskdxA0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 00:58:47 -0000

----==_mimepart_5ebc97c3ebdee_3b9c3fed97acd96441819
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.

Thanks for doing this.  I have one tweak that I think you need and maybe a tweak that you want.

The first is about the argument and what information is passed.  I think that this is just a notification from the main packet processing code, so it doesn't need to include packet processing.

The second is more involved and would involve adding more state variables.

> @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Packet
+
+When a packet is received, it may allow the server to send
+if the server was previously amplification limited.
+
+Psuedocode for OnPacketReceived follows:
+
+~~~
+OnPacketReceived(packet):
+  // If this packet unblocks the server, arm the

This is fine.  The alternative I considered was:

```
  if (server and peer address is not validated):
    was_blocked = aa_bytes_sent >= aa_bytes_received * 3
    aa_bytes_received += datagram.size()
    if was_blocked:
        SetLossDetectionTimer()
```
But this is fine.  In order for that to work, you need to have global state variables for aa_bytes_sent and aa_bytes_received, which you don't otherwise have.

> @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Packet
+
+When a packet is received, it may allow the server to send
+if the server was previously amplification limited.
+
+Psuedocode for OnPacketReceived follows:
+
+~~~
+OnPacketReceived(packet):

I would drop the argument to this.  Because this needs to be a datagram not a packet.

That means the function at the end should be called ProcessPackets(datagram) if you keep it.  But I would suggest that you don't need to do packet processing in this logic: this is just a function where the loss recovery code is told about what is happening in the main code.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-411395226
----==_mimepart_5ebc97c3ebdee_3b9c3fed97acd96441819
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<p>Thanks for doing this.  I have one tweak that I think you need and maybe a tweak that you want.</p>
<p>The first is about the argument and what information is passed.  I think that this is just a notification from the main packet processing code, so it doesn't need to include packet processing.</p>
<p>The second is more involved and would involve adding more state variables.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3653#discussion_r424811884">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Packet
+
+When a packet is received, it may allow the server to send
+if the server was previously amplification limited.
+
+Psuedocode for OnPacketReceived follows:
+
+~~~
+OnPacketReceived(packet):
+  // If this packet unblocks the server, arm the
</pre>
<p>This is fine.  The alternative I considered was:</p>
<pre><code>  if (server and peer address is not validated):
    was_blocked = aa_bytes_sent &gt;= aa_bytes_received * 3
    aa_bytes_received += datagram.size()
    if was_blocked:
        SetLossDetectionTimer()
</code></pre>
<p>But this is fine.  In order for that to work, you need to have global state variables for aa_bytes_sent and aa_bytes_received, which you don't otherwise have.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3653#discussion_r424812211">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Packet
+
+When a packet is received, it may allow the server to send
+if the server was previously amplification limited.
+
+Psuedocode for OnPacketReceived follows:
+
+~~~
+OnPacketReceived(packet):
</pre>
<p>I would drop the argument to this.  Because this needs to be a datagram not a packet.</p>
<p>That means the function at the end should be called ProcessPackets(datagram) if you keep it.  But I would suggest that you don't need to do packet processing in this logic: this is just a function where the loss recovery code is told about what is happening in the main code.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-411395226">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY4HQOGTL4QA3TSTDLRRM64HANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3P7LKAONBMNALII2DRRM64HA5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCCWJGQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-411395226",
"url": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-411395226",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebc97c3ebdee_3b9c3fed97acd96441819--


From nobody Wed May 13 18:00:33 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 70B423A08B2 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 18:00:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Paj1z1cG98Yy for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 18:00:30 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3C5C33A08AE for <quic-issues@ietf.org>; Wed, 13 May 2020 18:00:30 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id BF59896046A for <quic-issues@ietf.org>; Wed, 13 May 2020 18:00:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589418028; bh=3DnriHmM3AgLGxccwhAsKiU/4j6iLdbSGnH3MtaWi0Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0TO6AJkmj5miNGeCvxBndc7Fyi4jmlIYC+kaRAtQP5dYLIbRVPKQxOameCW3g0LtL VBnmS/02n+Qv5ENwYy9Uy7kIyYJagKimDxpU2vKN97JWX03Vb41UMdurIuOFJp4GgV LGIKjPxueVG91DCZOQ6S6MzySp+X3vJy8hiHRx1Y=
Date: Wed, 13 May 2020 18:00:28 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4ZSYXDWJCQHGXCSWV4ZB4SZEVBNHHCJTOS2A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3654/review/411396905@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3654@github.com>
References: <quicwg/base-drafts/pull/3654@github.com>
Subject: Re: [quicwg/base-drafts] Move a PTO section up (#3654)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc982cafa0b_17043f897d4cd95c7534a0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Tq9Iu8v60PJe_pwG5NmC_R2vXYw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 01:00:32 -0000

----==_mimepart_5ebc982cafa0b_17043f897d4cd95c7534a0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.

A reasonable simplification.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3654#pullrequestreview-411396905
----==_mimepart_5ebc982cafa0b_17043f897d4cd95c7534a0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>

<p>A reasonable simplification.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3654#pullrequestreview-411396905">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4SHC52FRM5B7SCYTTRRM7CZANCNFSM4M7YUPDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYR7WUKQOJ575RZTI3RRM7CZA5CNFSM4M7YUPDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCCWWKI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3654#pullrequestreview-411396905",
"url": "https://github.com/quicwg/base-drafts/pull/3654#pullrequestreview-411396905",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebc982cafa0b_17043f897d4cd95c7534a0--


From nobody Wed May 13 18:07:32 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 C40D53A08EA for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 18:07:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.272
X-Spam-Level: 
X-Spam-Status: No, score=-3.272 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 sjnobdB49vQO for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 18:07:25 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B83663A090E for <quic-issues@ietf.org>; Wed, 13 May 2020 18:07:22 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id AD6B9A0E31 for <quic-issues@ietf.org>; Wed, 13 May 2020 18:07:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589418441; bh=pFcmxs7LSzdgppUjKuWwnbiT8BAjEGWcjes+qX0iCHs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vk6RkjlHS3gRb9XEc74MMKt+5ZpMGzctHUOvp6ugBT4Nu90lcSErNp/1e8vLT7DE2 sOXR3k5bydn5bijm+JatTMuW2oxb+w4Tedh9pxetYsqkd3KrBZ9Lxufd5vV/KhN3j6 79ZSjtkPqBG2hsaEKn14bMAcG33Ky5/F9jk26JLY=
Date: Wed, 13 May 2020 18:07:21 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK54NQHUDHANMEDHAXV4ZB5MTEVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/review/411398917@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc99c99d840_7fba3fd8768cd9601073ab"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/k1pl-OwqQ7ZCyK-qU5K1IRw9uuE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 01:07:27 -0000

----==_mimepart_5ebc99c99d840_7fba3fd8768cd9601073ab
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +will stay within the limit.  An endpoint that receives a NEW_CONNECTION_ID
+frame that increases the number of active connection IDs - without a Retire
+Prior To field that requests retirement of enough active connections to keep the
+total number of active connection IDs within the value the endpoint advertised
+in its active_connection_id_limit transport parameter - MUST close the
 connection with an error of type CONNECTION_ID_LIMIT_ERROR.

Maybe this is better:

```suggestion
will stay within the limit.  A NEW_CONNECTION_ID frame might cause an endpoint
might add some active connection IDs and retire others based on the value of the
Retire Prior To field.  After processing a NEW_CONNECTION_ID frame and adding a
retiring active connection IDs, if the number of active connections exceeds the
value advertised in its active_connection_id_limit transport parameter, an
endpoint MUST close the connection with an error of type
CONNECTION_ID_LIMIT_ERROR.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411398917
----==_mimepart_5ebc99c99d840_7fba3fd8768cd9601073ab
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3643#discussi=
on_r424815000">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +will stay within the limit.  An endpoint =
that receives a NEW_CONNECTION_ID=0D
+frame that increases the number of active connection IDs - without a Ret=
ire=0D
+Prior To field that requests retirement of enough active connections to =
keep the=0D
+total number of active connection IDs within the value the endpoint adve=
rtised=0D
+in its active_connection_id_limit transport parameter - MUST close the=0D=

 connection with an error of type CONNECTION_ID_LIMIT_ERROR.=0D
</pre>=0D
<p>Maybe this is better:</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-will stay within the limit.  An endpoint that=
 receives a NEW_CONNECTION_ID=0D
-frame that increases the number of active connection IDs - without a Ret=
ire=0D
-Prior To field that requests retirement of enough active connections to =
keep the=0D
-total number of active connection IDs within the value the endpoint adve=
rtised=0D
-in its active_connection_id_limit transport parameter - MUST close the=0D=

-connection with an error of type CONNECTION_ID_LIMIT_ERROR.=0D
+will stay within the limit.  A NEW_CONNECTION_ID frame might cause an en=
dpoint=0D
+might add some active connection IDs and retire others based on the valu=
e of the=0D
+Retire Prior To field.  After processing a NEW_CONNECTION_ID frame and a=
dding a=0D
+retiring active connection IDs, if the number of active connections exce=
eds the=0D
+value advertised in its active_connection_id_limit transport parameter, =
an=0D
+endpoint MUST close the connection with an error of type=0D
+CONNECTION_ID_LIMIT_ERROR.=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3643#pullrequestreview-411398917">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K5LLMMAEUEKYBYEUCDRRM74TANCNFSM4M6L6D2A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK2QCA2QCQ7SIP7CF6DRRM74TA5CNFSM4=
M6L6D2KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCCXGBI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestrev=
iew-411398917",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview=
-411398917",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebc99c99d840_7fba3fd8768cd9601073ab--


From nobody Wed May 13 18:14:53 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 B3EE63A08E8 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 18:14:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 jnVaVcoYQTzX for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 18:14:50 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 548DB3A08E7 for <quic-issues@ietf.org>; Wed, 13 May 2020 18:14:50 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 4588C2817CB for <quic-issues@ietf.org>; Wed, 13 May 2020 18:14:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589418889; bh=JADhb8838eZ5UiC4w8jMM/UobOb689dppHD+YNPlMZQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=luzTNG0NGRYYs0r4k63kdbzpCgObUpO3Qbb+oCGgWQ04tIp0KBV0zOpTtXM/xG30a /HSRdxCiDcFvorTNO0Lz/mS8CsE8ja7SqhEFei44v9AdQv9PhJVgjbT5y06nDWp/BV N9WK1WCgjDxTwyT/6Cjh2zGO6aICdgzLzbaokD2Y=
Date: Wed, 13 May 2020 18:14:49 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6KONS5BSDLVNOGS5N4ZB6ITEVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/c628328222@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc9b8936740_1ebb3fafe34cd95c103823"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gGsqHbyIEhaj_98FtMkhffnUbDY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 01:14:52 -0000

----==_mimepart_5ebc9b8936740_1ebb3fafe34cd95c103823
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr, you asked that this be blocked by requesting changes.  That means that you volunteered to re-review too :)  Can you take another look to verify that the recent fixes address your concerns?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#issuecomment-628328222
----==_mimepart_5ebc9b8936740_1ebb3fafe34cd95c103823
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ekr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ekr">@ekr</a>, you asked that this be blocked by requesting changes.  That means that you volunteered to re-review too :)  Can you take another look to verify that the recent fixes address your concerns?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#issuecomment-628328222">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7KI6TFCPCR5NENGVLRRNAYTANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3OBBTZHJUN4YYJAUDRRNAYTA5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEVZYOHQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#issuecomment-628328222",
"url": "https://github.com/quicwg/base-drafts/pull/3589#issuecomment-628328222",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebc9b8936740_1ebb3fafe34cd95c103823--


From nobody Wed May 13 18:31:10 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 94B653A0B80 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 18:31:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.273
X-Spam-Level: 
X-Spam-Status: No, score=-3.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 I9eS9Cbcu3pQ for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 18:31:02 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DB66E3A0AFF for <quic-issues@ietf.org>; Wed, 13 May 2020 18:30:56 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 962538C1007 for <quic-issues@ietf.org>; Wed, 13 May 2020 18:30:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589419855; bh=pkbQE6lTawRQ7Hc5sRlGBbLMpYE/lidhIe5NVyUhLeA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hdjJpmGs/xHLxcoFmT1GqrBNScwBx75Zg+3MswMcxc5ZLRJxZrEy39hjWDsQb1Dky f0JSi4c0HRwmPsG4Y75vdZ++1/1icEVbiwMYngb+cB6bSp1cZDQ1MxgSTGeFyG0aDD spvpevnWOQrG2Lw4DNP2LJ4T7OKDZuHF3WfTxm4g=
Date: Wed, 13 May 2020 18:30:55 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3SUOAFGM6A3MOWGYV4ZCAE7EVBNHHCJUXUDE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3655/review/411402379@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3655@github.com>
References: <quicwg/base-drafts/pull/3655@github.com>
Subject: Re: [quicwg/base-drafts] Another pacing algorithm (#3655)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebc9f4f879a3_6e5c3f92ad0cd96816456c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FZ1YQOFZRqONNVoYe_Do94xPwG8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 01:31:09 -0000

----==_mimepart_5ebc9f4f879a3_6e5c3f92ad0cd96816456c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.

I'm ok with either this or the other one.

> +exceed a small multiple, `pacing_gain`, of the congestion window. Larger
+bursts can reduce CPU utilization at the risk of increased retransmits rates.

This last sentence seems a little disconnected from the rest.  A small tweak might might help:

```suggestion
exceed a small multiple, `pacing_gain`, of the congestion window. Endpoints can
trade off sending packets in bursts, which might be done to reduce CPU
utilization, against even pacing, which has a lower risk of inducing packet
loss.
```

> +A `pacing_gain` multiplier greater than 1 allows senders to increase the rate
+of sending. The value of `pacing_gain` might be larger in slow start than
+congestion avoidance to ensure the sender is able to double its congestion
+window every round trip.

There are two reasons.  As the window increases, the rate increases, so you only really need this gain to a) anticipate future increases and b) avoid having scheduling delays eat into your send rate.

The future increases thing is worth noting.  Pacing causes packets to be spaced out over time, and you won't be able to realize an increase in congestion window until an entire round trip has passed if pacing_gain is 1.  Whereas if pacing_gain is matched to the rate of increase in the window, you are already sending at the increased rate, so you never have to worry about the pacer being the cause of you not sending enough.

@janaiyengar argued that you don't need to worry about this effect.  I think that it's worth compensating for, at least partially.  With pacing, increases to the window will be continuous, or at least multiple times per round trip time, so the degree to which your pacer drags your send rate down is based on the rate of updates (i.e., ACKs) you get.

This is a stair-step function bounded by a straight line (well, a logarithm, but just change conceptually to a log vertical scale).  The steps happen as you get ACKs (or timer pops), so the amount you shade is bounded by how often the updates are.  You get closer to shading the area under the line if you update more often.  The realization here is that you can shade a similar area if you are willing to shade above the line :)  If you set pacing_gain == multiplicative increase, you are not keeping the steps below the diagonal, you are putting them on top by assuming that you will get an increase.  Choosing a value between 1 and m hedges a little.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3655#pullrequestreview-411402379
----==_mimepart_5ebc9f4f879a3_6e5c3f92ad0cd96816456c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<p>I'm ok with either this or the other one.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3655#discussi=
on_r424818016">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +exceed a small multiple, `pacing_gain`, o=
f the congestion window. Larger=0D
+bursts can reduce CPU utilization at the risk of increased retransmits r=
ates.=0D
</pre>=0D
<p>This last sentence seems a little disconnected from the rest.  A small=
 tweak might might help:</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-exceed a small multiple, `pacing_gain`, of th=
e congestion window. Larger=0D
-bursts can reduce CPU utilization at the risk of increased retransmits r=
ates.=0D
+exceed a small multiple, `pacing_gain`, of the congestion window. Endpoi=
nts can=0D
+trade off sending packets in bursts, which might be done to reduce CPU=0D=

+utilization, against even pacing, which has a lower risk of inducing pac=
ket=0D
+loss.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3655#discussi=
on_r424819881">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +A `pacing_gain` multiplier greater than 1=
 allows senders to increase the rate=0D
+of sending. The value of `pacing_gain` might be larger in slow start tha=
n=0D
+congestion avoidance to ensure the sender is able to double its congesti=
on=0D
+window every round trip.=0D
</pre>=0D
<p>There are two reasons.  As the window increases, the rate increases, s=
o you only really need this gain to a) anticipate future increases and b)=
 avoid having scheduling delays eat into your send rate.</p>=0D
<p>The future increases thing is worth noting.  Pacing causes packets to =
be spaced out over time, and you won't be able to realize an increase in =
congestion window until an entire round trip has passed if pacing_gain is=
 1.  Whereas if pacing_gain is matched to the rate of increase in the win=
dow, you are already sending at the increased rate, so you never have to =
worry about the pacer being the cause of you not sending enough.</p>=0D
<p><a class=3D"user-mention" data-hovercard-type=3D"user" data-hovercard-=
url=3D"/users/janaiyengar/hovercard" data-octo-click=3D"hovercard-link-cl=
ick" data-octo-dimensions=3D"link_type:self" href=3D"https://github.com/j=
anaiyengar">@janaiyengar</a> argued that you don't need to worry about th=
is effect.  I think that it's worth compensating for, at least partially.=
  With pacing, increases to the window will be continuous, or at least mu=
ltiple times per round trip time, so the degree to which your pacer drags=
 your send rate down is based on the rate of updates (i.e., ACKs) you get=
.</p>=0D
<p>This is a stair-step function bounded by a straight line (well, a loga=
rithm, but just change conceptually to a log vertical scale).  The steps =
happen as you get ACKs (or timer pops), so the amount you shade is bounde=
d by how often the updates are.  You get closer to shading the area under=
 the line if you update more often.  The realization here is that you can=
 shade a similar area if you are willing to shade above the line :)  If y=
ou set pacing_gain =3D=3D multiplicative increase, you are not keeping th=
e steps below the diagonal, you are putting them on top by assuming that =
you will get an increase.  Choosing a value between 1 and m hedges a litt=
le.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3655#pullrequestreview-411402379">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K7DSLAQIQTDEPWDXWLRRNCU7ANCNFSM4NAFUZTQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK5XFLUWERKL3D6RSATRRNCU7A5CNFSM4=
NAFUZT2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCCYBCY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3655#pullrequestrev=
iew-411402379",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3655#pullrequestreview=
-411402379",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebc9f4f879a3_6e5c3f92ad0cd96816456c--


From nobody Wed May 13 19:27:03 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 25FDB3A092A for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:27:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 PByMhF4R0TOL for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:26:59 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 800773A0927 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:26:59 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 5C1576E0DB3 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:26:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589423218; bh=qhYSwZvwT5S64tWoS8MNRAqavbI6wY1QOVgJGqXNjfc=; h=Date:From:To:Subject:From; b=1j1RF8ATFA+5xMheXSMmr/VDQaetsWScKTwyK135gNGRHYgyo8C1UdsV0nTqMo3s5 F/b3iQ++Pd3AGqvBQi9zajAnCc235LNXrVt2JQoZ051dYLVD5jDTzFLMmyd2P3o0g8 set655E42tBb1wrbsPW/Rux3wDYE3OP6DYEL4Mzo=
Date: Wed, 13 May 2020 19:26:58 -0700
From: martinduke <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/master/38132c-09a092@github.com>
Subject: [quicwg/load-balancers] 9329fe: invariants discussion
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/atwsIilRjP-EKDCsUwHEroTLzfk>
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: Thu, 14 May 2020 02:27:01 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/load-balancers
  Commit: 9329fe5b12bd2180a47665db6cef367c778fb405
      https://github.com/quicwg/load-balancers/commit/9329fe5b12bd2180a47665db6cef367c778fb405
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  invariants discussion


  Commit: 4e3d9c0ad9086dacf6d58854e9e3aa595e8a28b4
      https://github.com/quicwg/load-balancers/commit/4e3d9c0ad9086dacf6d58854e9e3aa595e8a28b4
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  fix typo


  Commit: 09a09252204907901f4fdb8b8055dfb091bab5e2
      https://github.com/quicwg/load-balancers/commit/09a09252204907901f4fdb8b8055dfb091bab5e2
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  Merge pull request #21 from quicwg/invariants

Add discussion of QUIC invariants


Compare: https://github.com/quicwg/load-balancers/compare/38132cf34147...09a092522049


From nobody Wed May 13 19:27:17 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 5BFC53A0922 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:27:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 7CAEdxmP-zEO for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:27:01 -0700 (PDT)
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 05E953A0929 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:27:00 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 67F56282C5F for <quic-issues@ietf.org>; Wed, 13 May 2020 19:26:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589423218; bh=74QTpXdBW1rpoOVzPgu+C/eVY4xWju+7FGud03U0eQo=; h=Date:From:To:Subject:From; b=qxeEhklTyvc9qXAQLg8aDhcIm1P/95z7XT7tlGrMvfbKT5HAGY7AiUMCtt4E4/VER ODqruVrHXMmMOr31BGQ4Ngh06VAAA6jivKD0XZRnSLYlHYMGk5PAln+ZegEZLc2gNd BM9Utm4G9S3uspEkxoTgLX7qE1JL26Xa2LzdfZOg=
Date: Wed, 13 May 2020 19:26:58 -0700
From: martinduke <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/invariants/4e3d9c-000000@github.com>
Subject: [quicwg/load-balancers]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vXnIY0aNnPjMSz4xMo43vX5Oq_w>
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: Thu, 14 May 2020 02:27:02 -0000

  Branch: refs/heads/invariants
  Home:   https://github.com/quicwg/load-balancers


From nobody Wed May 13 19:35:44 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 09C8F3A0932 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:35:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 mg4OXGlPQ1Vv for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:35:41 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EE0E83A092B for <quic-issues@ietf.org>; Wed, 13 May 2020 19:35:40 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 0197F280938 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:35:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589423740; bh=ooBGxCkXJnFqne+r9S6R4JPrgK6Un7rQcxlMmExxwpw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HsUh6O4Pl7EAjc/d1/2nHH6OIcs5r337/l2jXfvNKFeknk+R5TTMkK25rdxRDrspU QK+y0/KO7vSCdWU7hmZjqcwP77E+ckH0YFhkFVq9noSoe0We48R2M/t1UdwnCBMuIj Wi2p21FLgcjuCuVd2HCotx8G5vFH1+zOH/cLAUMk=
Date: Wed, 13 May 2020 19:35:39 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7DMSPZ6BXRPR7DOJ54ZCHXXEVBNHHCJTOS2A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3654/review/411425663@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3654@github.com>
References: <quicwg/base-drafts/pull/3654@github.com>
Subject: Re: [quicwg/base-drafts] Move a PTO section up (#3654)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcae7be59ed_311b3fd804ecd9682590a3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cdQQiV3HBs3zZCM42sgN2L3dQn8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 02:35:42 -0000

----==_mimepart_5ebcae7be59ed_311b3fd804ecd9682590a3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3654#pullrequestreview-411425663
----==_mimepart_5ebcae7be59ed_311b3fd804ecd9682590a3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3654#pullrequestreview-411425663">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYEVUTB4RWTBG5ZBWLRRNKHXANCNFSM4M7YUPDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZT7VUIFP3EDGTGUJLRRNKHXA5CNFSM4M7YUPDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCC5W7Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3654#pullrequestreview-411425663",
"url": "https://github.com/quicwg/base-drafts/pull/3654#pullrequestreview-411425663",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcae7be59ed_311b3fd804ecd9682590a3--


From nobody Wed May 13 19:40:04 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 649C73A092B for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:40:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.869
X-Spam-Level: 
X-Spam-Status: No, score=-1.869 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 2bD6cVNZecue for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:40:00 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B7A3E3A0834 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:40:00 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 272A6A06CA for <quic-issues@ietf.org>; Wed, 13 May 2020 19:39:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589423999; bh=ci1edDtvbucMgVzZDO3MDUHbL1zpjUGuESaSy80LSjg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Db8VHOaHKdf8IWtCc5MZWG6h/X+9IItsrnaO8Ey09rP6Y1dgELIYsExpMgDZ0RBGl 6xRHBFRtOPQ+iaCWMqI6PH3DLyXpfklArlFXX6itKmfnS8Iu7CXySmGpWxiYPSOVaS lImiotq9k/A7bPhv+h+QJC6WCRtI4t/AifojCoWY=
Date: Wed, 13 May 2020 19:39:59 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4VMUZ7W3EAOLILXC54ZCIH7EVBNHHCJTOADM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/review/411426042@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcaf7f1718d_2fe43ff3f96cd96430873e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vvRsGmD_WzYk9pn5zneUo5r-Oc4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 02:40:03 -0000

----==_mimepart_5ebcaf7f1718d_2fe43ff3f96cd96430873e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

@marten-seemann commented on this pull request.=0D
=0D
=0D
=0D
> @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:=0D
      SetLossDetectionTimer()=0D
 ~~~=0D
 =0D
+## On Receiving a Packet=0D
+=0D
+When a packet is received, it may allow the server to send=0D
+if the server was previously amplification limited.=0D
+=0D
+Psuedocode for OnPacketReceived follows:=0D
=0D
Pseudo, not psuedo. =0D
=0D
> @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:=0D
      SetLossDetectionTimer()=0D
 ~~~=0D
 =0D
+## On Receiving a Packet=0D
+=0D
+When a packet is received, it may allow the server to send=0D
+if the server was previously amplification limited.=0D
+=0D
+Psuedocode for OnPacketReceived follows:=0D
+=0D
+~~~=0D
+OnPacketReceived(packet):=0D
+  // If this packet unblocks the server, arm the=0D
+  // timer to ensure forward progress resumes=0D
+  if (server was at anti-amplification limit):=0D
+    SetLossDetectionTimer()=0D
+  DecryptAndProcessFrames()=0D
=0D
This doesn=E2=80=99t seem to belong in recovery. I think you=E2=80=99re t=
rying to point out that even undecryptable packets unblock the server, ri=
ght?=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-4114260=
42=

----==_mimepart_5ebcaf7f1718d_2fe43ff3f96cd96430873e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@marten-seemann</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3653#discussi=
on_r424837911">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1142,6 +1142,21 @@ Pseudocode for OnPa=
cketSent follows:=0D
      SetLossDetectionTimer()=0D
 ~~~=0D
 =0D
+## On Receiving a Packet=0D
+=0D
+When a packet is received, it may allow the server to send=0D
+if the server was previously amplification limited.=0D
+=0D
+Psuedocode for OnPacketReceived follows:=0D
</pre>=0D
<p>Pseudo, not psuedo.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3653#discussi=
on_r424838580">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1142,6 +1142,21 @@ Pseudocode for OnPa=
cketSent follows:=0D
      SetLossDetectionTimer()=0D
 ~~~=0D
 =0D
+## On Receiving a Packet=0D
+=0D
+When a packet is received, it may allow the server to send=0D
+if the server was previously amplification limited.=0D
+=0D
+Psuedocode for OnPacketReceived follows:=0D
+=0D
+~~~=0D
+OnPacketReceived(packet):=0D
+  // If this packet unblocks the server, arm the=0D
+  // timer to ensure forward progress resumes=0D
+  if (server was at anti-amplification limit):=0D
+    SetLossDetectionTimer()=0D
+  DecryptAndProcessFrames()=0D
</pre>=0D
<p>This doesn=E2=80=99t seem to belong in recovery. I think you=E2=80=99r=
e trying to point out that even undecryptable packets unblock the server,=
 right?</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3653#pullrequestreview-411426042">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K44Z65DC5J3BLMS26LRRNKX7ANCNFSM4M7YPO6Q">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK6X5BFED6RJ6COA3YDRRNKX7A5CNFSM4=
M7YPO62YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCC5Z6Q.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestrev=
iew-411426042",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview=
-411426042",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebcaf7f1718d_2fe43ff3f96cd96430873e--


From nobody Wed May 13 19:49:48 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 442113A0934 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:49:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.869
X-Spam-Level: 
X-Spam-Status: No, score=-1.869 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 3uGb0PrFOpy0 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:49:27 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 988733A0933 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:49:27 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id EC67DA047A for <quic-issues@ietf.org>; Wed, 13 May 2020 19:49:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589424566; bh=/aiFiOT6vckExWfnf2naEkHduJwFKDaixQggH1Wvv0I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lqDEWO5RC8DLzs0EtM/Tql6LEivtHjMqf9Hko2MIsv/Amn2Fqef4xxUyQ4qtRDRbF 1ww5zZIPwhFwqj/cHShre6f10LIG136pAj5THV4TDNp7ufxywpqkl67bTaxDshmUXB fD81/+7PTvxOfk3XiYJOpbuqEjnpiQx2WVuKoazY=
Date: Wed, 13 May 2020 19:49:26 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6TJUSAKUQOBDHGDV54ZCJLNEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/review/411429547@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcb1b6dd5f6_bf63ff67a8cd95c6057ca"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4bmIQPccd-ksdNMUx8WVElEO_r8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 02:49:29 -0000

----==_mimepart_5ebcb1b6dd5f6_bf63ff67a8cd95c6057ca
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> @@ -897,9 +897,33 @@ congestion window, which is recommended to be the minimum of
 max_datagram_size is the current maximum size of a datagram for the connection,
 not including UDP or IP overhead.
 
-As an example of a well-known and publicly available implementation of a flow
-pacer, implementers are referred to the Fair Queue packet scheduler (fq qdisc)
-in Linux (3.11 onwards).
+Endpoints can implement pacing as they choose, as long as the rate of bytes

I think this is all too much prescription. I suggest you move this up above the previous paragraph, and lead into the burst paragraphs like so: 

"Endpoints can implement pacing as they choose. A perfectly paced sender spreads bytes exactly evenly over time. For a window-based congestion controller, such as the one in this document, that rate can be computed by averaging the congestion window over the round-trip time. More precisely, `pacing rate = N * congestion_window / smoothed_rtt`, where using a small N (for example, 1.25) protects the sender from short-term variations in round-trip time or from scheduler delays.

Further practical considerations, such as packetization, scheduling delays, and computational efficiency, can cause a sender to deviate from this rate over time periods that are much shorter than a round-trip time. Sending multiple packets into the network without any delay ..."

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-411429547
----==_mimepart_5ebcb1b6dd5f6_bf63ff67a8cd95c6057ca
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3630#discussion_r424840911">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -897,9 +897,33 @@ congestion window, which is recommended to be the minimum of
 max_datagram_size is the current maximum size of a datagram for the connection,
 not including UDP or IP overhead.
 
-As an example of a well-known and publicly available implementation of a flow
-pacer, implementers are referred to the Fair Queue packet scheduler (fq qdisc)
-in Linux (3.11 onwards).
+Endpoints can implement pacing as they choose, as long as the rate of bytes
</pre>
<p>I think this is all too much prescription. I suggest you move this up above the previous paragraph, and lead into the burst paragraphs like so:</p>
<p>"Endpoints can implement pacing as they choose. A perfectly paced sender spreads bytes exactly evenly over time. For a window-based congestion controller, such as the one in this document, that rate can be computed by averaging the congestion window over the round-trip time. More precisely, <code>pacing rate = N * congestion_window / smoothed_rtt</code>, where using a small N (for example, 1.25) protects the sender from short-term variations in round-trip time or from scheduler delays.</p>
<p>Further practical considerations, such as packetization, scheduling delays, and computational efficiency, can cause a sender to deviate from this rate over time periods that are much shorter than a round-trip time. Sending multiple packets into the network without any delay ..."</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-411429547">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK73LGKSITYX7SUBJCDRRNL3NANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK75I3W4OZHW5K3BAPDRRNL3NA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCC6VKY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-411429547",
"url": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-411429547",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcb1b6dd5f6_bf63ff67a8cd95c6057ca--


From nobody Wed May 13 19:51:33 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 12DFD3A0934 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:51:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.273
X-Spam-Level: 
X-Spam-Status: No, score=-3.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 B5EObKpaB6Gm for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:51:30 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4A18D3A0933 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:51:30 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 90CFB5211DC for <quic-issues@ietf.org>; Wed, 13 May 2020 19:51:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589424689; bh=E7Ec9iLBDKuLhLfrvgcXOhwfi2ySE+dIlpTC+5JThqo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xmUq5NU9zHRCd4K8Ju/nZXUPrCIs5TghJjonvkaRohjTjbUSlWnz4AT6l5MjF7xfl SCrNw70W/kMtWtcSGToMdpny/yjs6wBJ9s/rckOjwc5TLoezFPTHd2apaBYPBQDsx7 I51aFcDfEwVh2IivP+nV3niiLBcJxgGLbwKljXAc=
Date: Wed, 13 May 2020 19:51:29 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7HP6WHABSEM52OBVV4ZCJTDEVBNHHCJUXUDE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3655/review/411420877@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3655@github.com>
References: <quicwg/base-drafts/pull/3655@github.com>
Subject: Re: [quicwg/base-drafts] Another pacing algorithm (#3655)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcb23180dfb_bfd3ff67a8cd95c29884"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/oue2NoeQq_engfMPflAJwDk5F4c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 02:51:32 -0000

----==_mimepart_5ebcb23180dfb_bfd3ff67a8cd95c29884
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.

This is again too prescriptive to me. I've made a big suggestion to #3630 instead.

> +A `pacing_gain` multiplier greater than 1 allows senders to increase the rate
+of sending. The value of `pacing_gain` might be larger in slow start than
+congestion avoidance to ensure the sender is able to double its congestion
+window every round trip.

To clarify what I said: pacing rate is cwnd/rtt (approximately, for window-based senders). In this world, on each ack, the cwnd increases, and your pacing rate therefore increases. At the end of the first RTT in slow start, your window is 2x the IW, and your pacing rate is 2 x IW / rtt. That is as it should be. Now, to compensate for border conditions, it's a good idea to use a multiplier, and that does not need to be any more than a small delta (say 1.25), and it doesn't need to be higher for slow start.

At any rate, this is way more than you need to be saying in this definition.

> +Timers are not ideal, so intervals will need to be adjusted to ensure the
+average pacing rate is maintained.  Not doing so will result in a decrease
+in average sending rate when timers consistently fire late.

I think what you want to say is that timers usually run with some granularity. I _think_ what you're trying to say is that timers might fire late and that future computations will need to account for that. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3655#pullrequestreview-411420877
----==_mimepart_5ebcb23180dfb_bfd3ff67a8cd95c29884
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> commented on this pull request.</p>

<p>This is again too prescriptive to me. I've made a big suggestion to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="613057001" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3630" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3630/hovercard" href="https://github.com/quicwg/base-drafts/pull/3630">#3630</a> instead.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3655#discussion_r424833543">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; +A `pacing_gain` multiplier greater than 1 allows senders to increase the rate
+of sending. The value of `pacing_gain` might be larger in slow start than
+congestion avoidance to ensure the sender is able to double its congestion
+window every round trip.
</pre>
<p>To clarify what I said: pacing rate is cwnd/rtt (approximately, for window-based senders). In this world, on each ack, the cwnd increases, and your pacing rate therefore increases. At the end of the first RTT in slow start, your window is 2x the IW, and your pacing rate is 2 x IW / rtt. That is as it should be. Now, to compensate for border conditions, it's a good idea to use a multiplier, and that does not need to be any more than a small delta (say 1.25), and it doesn't need to be higher for slow start.</p>
<p>At any rate, this is way more than you need to be saying in this definition.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3655#discussion_r424834327">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; +Timers are not ideal, so intervals will need to be adjusted to ensure the
+average pacing rate is maintained.  Not doing so will result in a decrease
+in average sending rate when timers consistently fire late.
</pre>
<p>I think what you want to say is that timers usually run with some granularity. I <em>think</em> what you're trying to say is that timers might fire late and that future computations will need to account for that.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3655#pullrequestreview-411420877">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK35C3VX2CBVUXDKQHLRRNMDDANCNFSM4NAFUZTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4OZYMLEVMRHZFGXXDRRNMDDA5CNFSM4NAFUZT2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCC4RTI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3655#pullrequestreview-411420877",
"url": "https://github.com/quicwg/base-drafts/pull/3655#pullrequestreview-411420877",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcb23180dfb_bfd3ff67a8cd95c29884--


From nobody Wed May 13 19:52:45 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 2DF0B3A093A for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:52:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 ImmdY6EqtINn for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:52:43 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ED3143A0939 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:52:42 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 4E9878C0FB8 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:52:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589424762; bh=cnNDJYS4LLqmpmLGeo0DHMSNC3dTDhUbp7kKuH4oeAk=; h=Date:From:To:Subject:From; b=OpXB65D77iOTP1NFdJLcFMNV9FoN5xsx2B94LFBm7C+XC+SbUZaswyGdQSTbLocyJ 8uQlGEBqjHpkQQeDfUhUuQqJ7MRa80l/Kvj5t02guU9NsoLUnEvcJSLmzHAPxlipUS kpGj06+3gM+2bXZB4o9RmIRng32XCwLgL3vH0TRc=
Date: Wed, 13 May 2020 19:52:42 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/dad178-5ddcfd@github.com>
Subject: [quicwg/base-drafts] 3353fd: Move a PTO section up
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DZXC1llR39Z2vvMT2hotAhlIOY4>
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: Thu, 14 May 2020 02:52:44 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3353fd18fd5b2d8c0aabef01c155e57a5507c84b
      https://github.com/quicwg/base-drafts/commit/3353fd18fd5b2d8c0aabef01c155e57a5507c84b
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Move a PTO section up

The fact that PTO doesn't declare losses when it expires is quite important.  It at the very end of the section, so I moved it to the first part.


  Commit: dfcb5d820e42570332f217a191437fc6cdafba77
      https://github.com/quicwg/base-drafts/commit/dfcb5d820e42570332f217a191437fc6cdafba77
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 5ddcfde12293d813dbf8fe2e4e94edc18c0f2fc1
      https://github.com/quicwg/base-drafts/commit/5ddcfde12293d813dbf8fe2e4e94edc18c0f2fc1
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3654 from quicwg/ianswett-pto-loss-reorg

Move a PTO section up


Compare: https://github.com/quicwg/base-drafts/compare/dad1786ae378...5ddcfde12293


From nobody Wed May 13 19:52:51 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 C80243A0946 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:52:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.272
X-Spam-Level: 
X-Spam-Status: No, score=-2.272 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, 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, TVD_SPACE_RATIO=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 WvvrppIL3mmD for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:52:44 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3E9B43A0939 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:52:44 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 2FAD4C60488 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:52:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589424763; bh=KWbHOE69OM1jAelcmaEn+CszV+tDQqydZpf1qvj3y/I=; h=Date:From:To:Subject:From; b=NtTXoit1e7selzMTIHSLbZmXlF+lkIHx3gW6wdNHXHGcpZqzVrRZNrrvtodmgfIeK FSfUA+MRawxJi9BcuIgkuFOvhl1JdH5fVVk1xTHjNOrcp9edejeY6H8zq6A3YEECZL n89f6gQZdIfFFHYNQgStdjVaRU9pOPwX8J99SMG4=
Date: Wed, 13 May 2020 19:52:43 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pto-loss-reorg/dfcb5d-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qfJyfBFrduWTg8pkB1_KSiovWMk>
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: Thu, 14 May 2020 02:52:47 -0000

  Branch: refs/heads/ianswett-pto-loss-reorg
  Home:   https://github.com/quicwg/base-drafts


From nobody Wed May 13 19:53:03 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 948433A0937 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:53:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.18
X-Spam-Level: 
X-Spam-Status: No, score=-2.18 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 aMCrXMIY_8vC for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:53:00 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7013B3A0934 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:53:00 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 5759D660A3D for <quic-issues@ietf.org>; Wed, 13 May 2020 19:52:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589424779; bh=NE31/f0OkZuUs6KXYJ5u1hazdGeFnxcz0/RVNAxWxAY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qIWO4slZfX51Hl8NqmubwqQ32tsiYp7Z1nTIcYdn05dFuYW+buTlx+vHHHU7jLWjw hnYqxzUyR09ccsmjv+1PG9W35stJQ8trA1pUf5qJf5fBHvGjXQzNlNmpOoQMoHQdBD OBFI7nhJak5QnQAJE7yz0K/3X99HbIHUNuyVEFY4=
Date: Wed, 13 May 2020 19:52:59 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2BJEAXA2W37PB5EEN4ZCJYXEVBNHHCJTOS2A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3654/issue_event/3334634115@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3654@github.com>
References: <quicwg/base-drafts/pull/3654@github.com>
Subject: Re: [quicwg/base-drafts] Move a PTO section up (#3654)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcb28b46f3d_23113f8368acd96c25903e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UkhBjc9DGAuexJDIpf4grcXrZho>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 02:53:02 -0000

----==_mimepart_5ebcb28b46f3d_23113f8368acd96c25903e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3654 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3654#event-3334634115
----==_mimepart_5ebcb28b46f3d_23113f8368acd96c25903e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="617468624" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3654" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3654/hovercard" href="https://github.com/quicwg/base-drafts/pull/3654">#3654</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3654#event-3334634115">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYOXNSNWCBTZRDMGYTRRNMIXANCNFSM4M7YUPDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK45D7W7U2337HFMY73RRNMIXA5CNFSM4M7YUPDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY3BHVAY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3654#event-3334634115",
"url": "https://github.com/quicwg/base-drafts/pull/3654#event-3334634115",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcb28b46f3d_23113f8368acd96c25903e--


From nobody Wed May 13 19:53:41 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 19F7F3A0934 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:53:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 V-SbAHP3Krzs for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 19:53:38 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1DB3A3A0933 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:53:38 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 70D36282078 for <quic-issues@ietf.org>; Wed, 13 May 2020 19:53:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589424817; bh=NsnXLj5D1t9tPAF9benZFuNgEmKwef9OCQQXG+5OffU=; h=Date:From:To:Subject:From; b=HXAUZOXh+GanFNdnDrfavXHnvqHYcVIyBjNcawA+4ZxIb0erwKW+AA2xrhpuet4dC dnJ/AfyiEsOi87DsWfC1ekQZbvK21AX8dxc0TFeod20YA+LgPUlfLXVzAvhYys4UII jSndxwobC3FQDANQbqbgm2lzOGFmgx8/LyrvOmcI=
Date: Wed, 13 May 2020 19:53:37 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/bae195-c1ee32@github.com>
Subject: [quicwg/base-drafts] c1ee32: Script updating gh-pages from 5ddcfde1. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LbnreEDwJvsX1GwHRSFMaS0WVuw>
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: Thu, 14 May 2020 02:53:39 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c1ee32eb923db4e43c47bfc99098f52d2367ac17
      https://github.com/quicwg/base-drafts/commit/c1ee32eb923db4e43c47bfc99098f52d2367ac17
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 5ddcfde1. [ci skip]



From nobody Wed May 13 20:00:48 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 BA4033A093E for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:00:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.272
X-Spam-Level: 
X-Spam-Status: No, score=-3.272 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 AVsL-9ybo57E for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:00:42 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A48023A093D for <quic-issues@ietf.org>; Wed, 13 May 2020 20:00:42 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id CBA7E6611BD for <quic-issues@ietf.org>; Wed, 13 May 2020 20:00:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589425241; bh=oxOUEcuPcMlcCdc/GTv8Lqiw6DsWpHvN9FlnTWmVZ0k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wdCCpachDpGldOPpVHvTzqIBuV7b/wZb9sw+KXUL/i20uOJ6hVpxeijBk5vdqkZ3Z cXbVTeeWkGmE0K0A4AP+xqwi25UNYtx6c5929u5Z8GWmFla25KQzWzpiXXhjPIZ97V Fu41Gi9tzYJ7ROoHxCDNh64T05SNBHQuIq2MA6uA=
Date: Wed, 13 May 2020 20:00:41 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK767CCC6GSWUAXRDQV4ZCKVTEVBNHHCJTOADM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/review/411432230@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcb459bbb96_19093fc2c1acd960374563"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZAAfqSZLEgDk7780VIUtXg2szTU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 03:00:46 -0000

----==_mimepart_5ebcb459bbb96_19093fc2c1acd960374563
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Packet
+
+When a packet is received, it may allow the server to send
+if the server was previously amplification limited.
+
+Psuedocode for OnPacketReceived follows:
+
+~~~
+OnPacketReceived(packet):
+  // If this packet unblocks the server, arm the
+  // timer to ensure forward progress resumes
+  if (server was at anti-amplification limit):
+    SetLossDetectionTimer()
+  DecryptAndProcessFrames()

Yeah, I think this should be in the comments above.

> @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Packet
+
+When a packet is received, it may allow the server to send
+if the server was previously amplification limited.
+
+Psuedocode for OnPacketReceived follows:
+
+~~~
+OnPacketReceived(packet):
+  // If this packet unblocks the server, arm the
+  // timer to ensure forward progress resumes

```suggestion
  // PTO timer to avoid deadlock.
```

> @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Packet
+
+When a packet is received, it may allow the server to send
+if the server was previously amplification limited.
+
+Psuedocode for OnPacketReceived follows:
+
+~~~
+OnPacketReceived(packet):

+1. You don't need to process packets  in here, just say up above that this function is called even if the received packet is undecryptable.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-411432230
----==_mimepart_5ebcb459bbb96_19093fc2c1acd960374563
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3653#discussi=
on_r424843224">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1142,6 +1142,21 @@ Pseudocode for OnPa=
cketSent follows:=0D
      SetLossDetectionTimer()=0D
 ~~~=0D
 =0D
+## On Receiving a Packet=0D
+=0D
+When a packet is received, it may allow the server to send=0D
+if the server was previously amplification limited.=0D
+=0D
+Psuedocode for OnPacketReceived follows:=0D
+=0D
+~~~=0D
+OnPacketReceived(packet):=0D
+  // If this packet unblocks the server, arm the=0D
+  // timer to ensure forward progress resumes=0D
+  if (server was at anti-amplification limit):=0D
+    SetLossDetectionTimer()=0D
+  DecryptAndProcessFrames()=0D
</pre>=0D
<p>Yeah, I think this should be in the comments above.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3653#discussi=
on_r424843336">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1142,6 +1142,21 @@ Pseudocode for OnPa=
cketSent follows:=0D
      SetLossDetectionTimer()=0D
 ~~~=0D
 =0D
+## On Receiving a Packet=0D
+=0D
+When a packet is received, it may allow the server to send=0D
+if the server was previously amplification limited.=0D
+=0D
+Psuedocode for OnPacketReceived follows:=0D
+=0D
+~~~=0D
+OnPacketReceived(packet):=0D
+  // If this packet unblocks the server, arm the=0D
+  // timer to ensure forward progress resumes=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-  // timer to ensure forward progress resumes=
=0D
+  // PTO timer to avoid deadlock.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3653#discussi=
on_r424843664">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1142,6 +1142,21 @@ Pseudocode for OnPa=
cketSent follows:=0D
      SetLossDetectionTimer()=0D
 ~~~=0D
 =0D
+## On Receiving a Packet=0D
+=0D
+When a packet is received, it may allow the server to send=0D
+if the server was previously amplification limited.=0D
+=0D
+Psuedocode for OnPacketReceived follows:=0D
+=0D
+~~~=0D
+OnPacketReceived(packet):=0D
</pre>=0D
<p>+1. You don't need to process packets  in here, just say up above that=
 this function is called even if the received packet is undecryptable.</p=
>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3653#pullrequestreview-411432230">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K4ZFFIB6WXS4GDPZZ3RRNNFTANCNFSM4M7YPO6Q">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK3XXVLD3GLHVKKKRPTRRNNFTA5CNFSM4=
M7YPO62YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCC7KJQ.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestrev=
iew-411432230",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview=
-411432230",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebcb459bbb96_19093fc2c1acd960374563--


From nobody Wed May 13 20:04:30 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 23D0D3A0942 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:04:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.866
X-Spam-Level: 
X-Spam-Status: No, score=-1.866 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 WFCRUazLakQk for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:04:27 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 612C73A093E for <quic-issues@ietf.org>; Wed, 13 May 2020 20:04:27 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 6DB091C0EA0 for <quic-issues@ietf.org>; Wed, 13 May 2020 20:04:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589425466; bh=x2F52YJjX3xYw4O90XRAHt+Gs7tmuahNfGUcIjejiYg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RERdyB543ZzuMZYVr8hV59hnwtYavNlBbnvXGHyEeD7imaBQhI+OwqjNOEuDkhPrO G8njJoq8m5iXBL4dtHY3JYY9fet9E4ygxLGrU6kV3TMh51g3PHtcIapjOWpNRlZw+q QPjNRhd1vNIpBKs9eYxnGVTtuCHTF6AHlniOwaXw=
Date: Wed, 13 May 2020 20:04:26 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZJRO7IMSR52CKWO354ZCLDVEVBNHHCJR4Q6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3651/review/411433899@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3651@github.com>
References: <quicwg/base-drafts/pull/3651@github.com>
Subject: Re: [quicwg/base-drafts] Include max_udp_payload_size in packet size discussion (#3651)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcb53a5dfce_18db3fe735ccd95c344594"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ipXLEejwNxrvLtFxt-ZsIe_J8sc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 03:04:29 -0000

----==_mimepart_5ebcb53a5dfce_18db3fe735ccd95c344594
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



>  
 The server MUST also limit the number of bytes it sends before validating the
 address of the client; see {{address-validation}}.
 
 
 ## Path Maximum Transmission Unit (PMTU)
 
-The PMTU is the maximum size of the entire IP packet including the IP header,
-UDP header, and UDP payload.  The UDP payload includes the QUIC packet header,
-protected payload, and any authentication fields. The PMTU can depend upon the
-current path characteristics.  Therefore, the current largest UDP payload an
-implementation will send is referred to as the QUIC maximum packet size.
+The Path Maximum Transmission Unit (PMTU) is the maximum size of the entire IP
+packet including the IP header, UDP header, and UDP payload.  The UDP payload
+includes the QUIC packet header, protected payload, and any authentication
+fields.  The PMTU can depend upon the current path characteristics.  Therefore,

```suggestion
fields.  The PMTU can depend upon current path characteristics.  Therefore,
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-411433899
----==_mimepart_5ebcb53a5dfce_18db3fe735ccd95c344594
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3651#discussi=
on_r424844601">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 The server MUST also limit the number of bytes it sends before validatin=
g the=0D
 address of the client; see {{address-validation}}.=0D
 =0D
 =0D
 ## Path Maximum Transmission Unit (PMTU)=0D
 =0D
-The PMTU is the maximum size of the entire IP packet including the IP he=
ader,=0D
-UDP header, and UDP payload.  The UDP payload includes the QUIC packet h=
eader,=0D
-protected payload, and any authentication fields. The PMTU can depend up=
on the=0D
-current path characteristics.  Therefore, the current largest UDP payloa=
d an=0D
-implementation will send is referred to as the QUIC maximum packet size.=
=0D
+The Path Maximum Transmission Unit (PMTU) is the maximum size of the ent=
ire IP=0D
+packet including the IP header, UDP header, and UDP payload.  The UDP pa=
yload=0D
+includes the QUIC packet header, protected payload, and any authenticati=
on=0D
+fields.  The PMTU can depend upon the current path characteristics.  The=
refore,=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-fields.  The PMTU can depend upon the current=
 path characteristics.  Therefore,=0D
+fields.  The PMTU can depend upon current path characteristics.  Therefo=
re,=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3651#pullrequestreview-411433899">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KY35RIUBRWSU3USEV3RRNNTVANCNFSM4M7JQFQA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK7MNV5YX5IQ6FUQQK3RRNNTVA5CNFSM4=
M7JQFQKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCC7XKY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3651#pullrequestrev=
iew-411433899",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview=
-411433899",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebcb53a5dfce_18db3fe735ccd95c344594--


From nobody Wed May 13 20:09:28 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 68CE23A099A for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:09:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.655
X-Spam-Level: 
X-Spam-Status: No, score=-1.655 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 al2s0xdjHgVf for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:09:21 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B8D693A0B25 for <quic-issues@ietf.org>; Wed, 13 May 2020 20:09:20 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 09D2F960C12 for <quic-issues@ietf.org>; Wed, 13 May 2020 20:09:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589425760; bh=jDbu4DDmVI8vqKILkU4R/6v5mnUcfM1xI+5R0lUhybI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fU7kl28tmvY8ySU3fm/WS1uWMp+r6C6Tp1XLodi9YHGFzvYDXCRV0347/pu6g0Jfk rZEHD+iVoLAw3S2SsY+LlyiBVnBcnyKEYRmBlPQCKnMi4EPHam5eV13OKg/aQzzUif 0SOStoK7Ryb5Vlab42LN5VLfMFZOcKAUZQ/5eVQA=
Date: Wed, 13 May 2020 20:09:19 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4TG5ZIDRWZUI5U6454ZCLV7EVBNHHCJR4Q6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3651/review/411435329@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3651@github.com>
References: <quicwg/base-drafts/pull/3651@github.com>
Subject: Re: [quicwg/base-drafts] Include max_udp_payload_size in packet size discussion (#3651)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcb65fedee6_7bfe3ff4160cd95c441532"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lW1YeoWltTU9a7ix6XwiVYUEmBQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 03:09:27 -0000

----==_mimepart_5ebcb65fedee6_7bfe3ff4160cd95c441532
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> +fields.  The PMTU can depend upon the current path characteristics.  Therefore,
+the current largest UDP payload an implementation will send is referred to as
+the QUIC maximum packet size.

```suggestion
fields.  The PMTU can depend on path characteristics, and can therefore change
over time.  The largest UDP payload an endpoint sends at any given time is
referred to as the endpoint's maximum packet size.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-411435329
----==_mimepart_5ebcb65fedee6_7bfe3ff4160cd95c441532
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3651#discussi=
on_r424845791">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +fields.  The PMTU can depend upon the cur=
rent path characteristics.  Therefore,=0D
+the current largest UDP payload an implementation will send is referred =
to as=0D
+the QUIC maximum packet size.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-fields.  The PMTU can depend upon the current=
 path characteristics.  Therefore,=0D
-the current largest UDP payload an implementation will send is referred =
to as=0D
-the QUIC maximum packet size.=0D
+fields.  The PMTU can depend on path characteristics, and can therefore =
change=0D
+over time.  The largest UDP payload an endpoint sends at any given time =
is=0D
+referred to as the endpoint's maximum packet size.=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3651#pullrequestreview-411435329">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KY5HNRXEQOXCIZXVQLRRNOF7ANCNFSM4M7JQFQA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKZYZ3JE6GY6MOWO4NTRRNOF7A5CNFSM4=
M7JQFQKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCDACQI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3651#pullrequestrev=
iew-411435329",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview=
-411435329",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebcb65fedee6_7bfe3ff4160cd95c441532--


From nobody Wed May 13 20:09:40 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 9731C3A079D for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:09:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.18
X-Spam-Level: 
X-Spam-Status: No, score=-2.18 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 dc0VSuIkLpQM for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:09:37 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 802A63A0946 for <quic-issues@ietf.org>; Wed, 13 May 2020 20:09:37 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id C36E2660A91 for <quic-issues@ietf.org>; Wed, 13 May 2020 20:09:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589425776; bh=m8fzB/QRH/+BVlxO7SK6uCXPCIVD+bT5O1+NAENTWOg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0RdYO/YxQOxBC/d8513BL9tein9qkpujTKViyxYZw5UBFH+jqOPcLrOOnjiiioBE+ LOZgjUcC9IN0Y4ZbFGI2bMFdzW8yN4djC/C5dD0t4axA8wQ2Xc3Gwm/9tBEvxUrksJ lfGdhh3K6lBgQS6GbJp9tR/STQbSrK0M8ksglQZw=
Date: Wed, 13 May 2020 20:09:36 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6PWFFG3G72DCHVIKV4ZCLXBEVBNHHCJR4Q6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3651/review/411435411@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3651@github.com>
References: <quicwg/base-drafts/pull/3651@github.com>
Subject: Re: [quicwg/base-drafts] Include max_udp_payload_size in packet size discussion (#3651)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcb670b4254_39b73fe7e10cd95c5475cd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-5_7ZeTCEelHRAWL8Vhn8CP4VGA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 03:09:39 -0000

----==_mimepart_5ebcb670b4254_39b73fe7e10cd95c5475cd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.

One suggestion, but LGTM otherwise.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-411435411
----==_mimepart_5ebcb670b4254_39b73fe7e10cd95c5475cd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>

<p>One suggestion, but LGTM otherwise.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-411435411">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6IYIOTNB57TUD6HFDRRNOHBANCNFSM4M7JQFQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2CNUHLIUSWCTCRPDDRRNOHBA5CNFSM4M7JQFQKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCDADEY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-411435411",
"url": "https://github.com/quicwg/base-drafts/pull/3651#pullrequestreview-411435411",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcb670b4254_39b73fe7e10cd95c5475cd--


From nobody Wed May 13 20:17:59 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 647363A0935 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:17:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.269
X-Spam-Level: 
X-Spam-Status: No, score=-3.269 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 3rcu4nhLy82g for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:17:55 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 703433A094B for <quic-issues@ietf.org>; Wed, 13 May 2020 20:17:55 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 70067E0064 for <quic-issues@ietf.org>; Wed, 13 May 2020 20:17:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589426274; bh=Hp/xfzOmoRVGDSBJRiac/MQSoDQBfCLVTh8dw7kN0tQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qAza75U/vr3RVOeasxhdKiN5n3y06oSOCw+xabmrXg53ZLGnc5/SIz23Wt7ddcMZ8 3504Uvmr5W3e1ecw5z/sy4S96Yr4bcFiF7iGA1wYpbqDvhQSyi4FXijp4vpC1euTM6 WbEvWszG9lCxV0DJUl0Vv40CSBvamMXSTIqykVZI=
Date: Wed, 13 May 2020 20:17:54 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2VZQEXCN5PDXZIS5N4ZCMWFEVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/review/411436933@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcb86260583_61c13fb9c34cd96811234a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wPxV8hzdAYj_5v4_z3m7B7kcHWQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 03:17:58 -0000

----==_mimepart_5ebcb86260583_61c13fb9c34cd96811234a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> @@ -1050,8 +1050,14 @@ An endpoint SHOULD ensure that its peer has a sufficient number of available and
 unused connection IDs.  Endpoints store received connection IDs for future use
 and advertise the number of connection IDs they are willing to store with the
 active_connection_id_limit transport parameter.  An endpoint MUST NOT provide
-more connection IDs than the peer's limit.  An endpoint that receives more
-connection IDs than its advertised active_connection_id_limit MUST close the
+more connection IDs than the peer's limit, with the exception that connection

Both these sentences are onerous to read and super long... can you break them up a bit?

> +will stay within the limit.  An endpoint that receives a NEW_CONNECTION_ID
+frame that increases the number of active connection IDs - without a Retire
+Prior To field that requests retirement of enough active connections to keep the
+total number of active connection IDs within the value the endpoint advertised
+in its active_connection_id_limit transport parameter - MUST close the
 connection with an error of type CONNECTION_ID_LIMIT_ERROR.

I can't comment on this change, so writing my comments here. The first sentence needs editorial fixing ("might cause an endpoint might add some active"). But I definitely prefer this version to the original.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411436933
----==_mimepart_5ebcb86260583_61c13fb9c34cd96811234a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3643#discussion_r424847086">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1050,8 +1050,14 @@ An endpoint SHOULD ensure that its peer has a sufficient number of available and
 unused connection IDs.  Endpoints store received connection IDs for future use
 and advertise the number of connection IDs they are willing to store with the
 active_connection_id_limit transport parameter.  An endpoint MUST NOT provide
-more connection IDs than the peer&#39;s limit.  An endpoint that receives more
-connection IDs than its advertised active_connection_id_limit MUST close the
+more connection IDs than the peer&#39;s limit, with the exception that connection
</pre>
<p>Both these sentences are onerous to read and super long... can you break them up a bit?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3643#discussion_r424847723">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +will stay within the limit.  An endpoint that receives a NEW_CONNECTION_ID
+frame that increases the number of active connection IDs - without a Retire
+Prior To field that requests retirement of enough active connections to keep the
+total number of active connection IDs within the value the endpoint advertised
+in its active_connection_id_limit transport parameter - MUST close the
 connection with an error of type CONNECTION_ID_LIMIT_ERROR.
</pre>
<p>I can't comment on this change, so writing my comments here. The first sentence needs editorial fixing ("might cause an endpoint might add some active"). But I definitely prefer this version to the original.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411436933">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4DXOBPMN4U5OBKWYLRRNPGFANCNFSM4M6L6D2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3JZ2TQCIOHZIJSETTRRNPGFA5CNFSM4M6L6D2KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCDAPBI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411436933",
"url": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411436933",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcb86260583_61c13fb9c34cd96811234a--


From nobody Wed May 13 20:19:17 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 9FD293A0953 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:19:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 H14U-O1xBzyH for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:19:14 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6B1553A0935 for <quic-issues@ietf.org>; Wed, 13 May 2020 20:19:14 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id A17B5A05DB for <quic-issues@ietf.org>; Wed, 13 May 2020 20:19:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589426353; bh=u+0NVFS1/58kyWilNiL+HZ7IRdzhV9eq8cx8fUkAKmY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fSW0tSuZyDbhPiui5n9GukUlNeS9L090AyRStadvJiI31eKQ4DtFEOqIPM9Xq1E73 KEEhQ+96d36GSYPbK17dOVqgeGg9QEoN22EQZWKvNM3AUndsQQepvrKuWbkNygGZu5 ZVDKzVWBF2qoRCcCkfy7ZS3aFNd5QZ/dvjY8FD/w=
Date: Wed, 13 May 2020 20:19:13 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7UWKXIWLIUJ6CJSJN4ZCM3DEVBNHHCJGDDN4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3634/review/411438038@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3634@github.com>
References: <quicwg/base-drafts/pull/3634@github.com>
Subject: Re: [quicwg/base-drafts] Describe error handling of GOAWAY ID increase (#3634)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcb8b19203a_63643fdd94ccd95c1168e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dhUlrdyluXUtpSvpWGno1_pb2PM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 03:19:16 -0000

----==_mimepart_5ebcb8b19203a_63643fdd94ccd95c1168e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3634#pullrequestreview-411438038
----==_mimepart_5ebcb8b19203a_63643fdd94ccd95c1168e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3634#pullrequestreview-411438038">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK63UHTNVJTCJRQQGXLRRNPLDANCNFSM4M3HDKRQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6DTIFF4MXQUSFHUG3RRNPLDA5CNFSM4M3HDKR2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCDAXVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3634#pullrequestreview-411438038",
"url": "https://github.com/quicwg/base-drafts/pull/3634#pullrequestreview-411438038",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcb8b19203a_63643fdd94ccd95c1168e--


From nobody Wed May 13 20:22:06 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 242AF3A097D for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:22:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 40-6qNiTIuJq for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 20:22:03 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0BA703A0953 for <quic-issues@ietf.org>; Wed, 13 May 2020 20:22:03 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 5A16896094C for <quic-issues@ietf.org>; Wed, 13 May 2020 20:22:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589426522; bh=vOA1P13/ttnXum0SHvEgWsDIinTrIfx+tpLCXac/XAY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qjd97EaTxNvAY8jfyilUHuXaS0VMHVMckbNP6n6il0X+qpg9MejhXd5NKfjDO8pSL m1RBWOJ3qFBK1P59q91HGPMkm2zAaEodZzfS9VKBe2IVyGc1QcJ1wIbPqrxk6BfXci Z+zj4DeysNmmtf3CL8cT5ODritoovFUsYy0R0HtM=
Date: Wed, 13 May 2020 20:22:02 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4Y76X26K2F6L2XUNN4ZCNFVEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/411438782@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcb95a4be6b_4a823fceacecd9601310e2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/S6vaiumrgGnwrRUbZaQGBMNyv3c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 03:22:04 -0000

----==_mimepart_5ebcb95a4be6b_4a823fceacecd9601310e2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-411438782
----==_mimepart_5ebcb95a4be6b_4a823fceacecd9601310e2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-411438782">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3OLPL4HASYSKVAFEDRRNPVVANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK536ZI6M2WSTH2GUVDRRNPVVA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCDA5PQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-411438782",
"url": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-411438782",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcb95a4be6b_4a823fceacecd9601310e2--


From nobody Wed May 13 23:04:35 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 BEC133A0B9F for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:04:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 CUXrbl1VimRq for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:04:31 -0700 (PDT)
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 C39513A0B9E for <quic-issues@ietf.org>; Wed, 13 May 2020 23:04:31 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id C48A0282D37 for <quic-issues@ietf.org>; Wed, 13 May 2020 23:04:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589436270; bh=LI2vqEZbJZd0rd+/YnQA7dHja9rWjt/EDu2XnERvm34=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=y2tQarGP8Yhbsu9xrNPzo0EqqvhqKDA/JPdFJlMk73YRtXsxIJNGAQ7OGciFb5hAV 7gB9fEKyeE5SeRQnSzqGdbyawgIPk4rShfC0+fSWyPQSMcdAvGENz8Uf9JKVHAdia9 5C+vMB6MAFAbm/jcBNpXj9U4JrYvvd8E0hXiknJU=
Date: Wed, 13 May 2020 23:04:30 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZDK2WN63OMI5M6NAN4ZDAG5EVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/411487159@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcdf6eb53be_1fa43f7e64acd95c300995"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-eRro3eC5oLwPw2lGzISWd3UAlA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 06:04:33 -0000

----==_mimepart_5ebcdf6eb53be_1fa43f7e64acd95c300995
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-411487159
----==_mimepart_5ebcdf6eb53be_1fa43f7e64acd95c300995
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-411487159">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK54U3ONX6GCZIFE6MTRROCW5ANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2REWFNJL3TJL3YF5LRROCW5A5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCDMXNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-411487159",
"url": "https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-411487159",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcdf6eb53be_1fa43f7e64acd95c300995--


From nobody Wed May 13 23:20:38 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 664F53A0BAD for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:20:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.178
X-Spam-Level: 
X-Spam-Status: No, score=-2.178 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 vKYbKfFY-zH0 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:20:33 -0700 (PDT)
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F1B663A0BAB for <quic-issues@ietf.org>; Wed, 13 May 2020 23:20:32 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 410FD26174E for <quic-issues@ietf.org>; Wed, 13 May 2020 23:20:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589437232; bh=7SZl06oDq+fn8cH41lKIBZOTgSYlGoX43SabvIy8jqs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wlvP1Rf9KMRQ1wWfwFSm27hg4Dlx8Fm5ckZ1y9q/DhhQ3fZcAC8E6hgEQn+dd1WJW Zef2D5EkNfJDtidsMfdQElIH82cselKh7uE1zsrs3nnjjIcCZni2VkONg4JXM2D7Tr sRRjEK0A92iuHm0seK/sOqKiuibd6OvEfl7AFYZ8=
Date: Wed, 13 May 2020 23:20:32 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3Y4F4E3MZHUH4Z3TV4ZDCDBEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/411493945@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebce3301ac5c_427b3fa81eecd9603449f7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/F_uIFzF1t8XK3zZTcPOkxTensoU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 06:20:37 -0000

----==_mimepart_5ebce3301ac5c_427b3fa81eecd9603449f7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.

Thanks for the diagrams, definitely clearer with them.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-411493945
----==_mimepart_5ebce3301ac5c_427b3fa81eecd9603449f7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>

<p>Thanks for the diagrams, definitely clearer with them.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-411493945">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ7OGCWE2XUJK6UVPLRROETBANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6MODXO72423ATT6TTRROETBA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCDOMOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-411493945",
"url": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-411493945",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebce3301ac5c_427b3fa81eecd9603449f7--


From nobody Wed May 13 23:56:37 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 1C7033A0BE1 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:56:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 Hjnl7-BIoFTd for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:56:35 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 421BA3A0CE1 for <quic-issues@ietf.org>; Wed, 13 May 2020 23:56:19 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 7AF4E660540 for <quic-issues@ietf.org>; Wed, 13 May 2020 23:56:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439378; bh=gvO+62JBzwln/Y2gEGCSrmXMMAr3kAarCa2OD1ZrexA=; h=Date:From:To:Subject:From; b=vVw7OeRvZ5BzvOxEX2XIRmokgQUNMmWYdvYb4j8f9OEyaMVGpa5iYOpaToYj3H+MY Hqr3Qy2C6tzorCorQ5R9k6IzAii6vYqcdUoLTCQ9zUZSGQVqXj5+Shu2fHqWuLcQRt 20BaTXVXeTQwoF4zzyB/rGCfCX9FsYLQ5dLpFHP8=
Date: Wed, 13 May 2020 23:56:18 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/757914-7ddcd1@github.com>
Subject: [quicwg/base-drafts] 7ddcd1: Trying to thread the needle
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5xocQkzY0LB9nKMpp5Zn3UyGP54>
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: Thu, 14 May 2020 06:56:36 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7ddcd1d53039f50f8050ec51912c086016407521
      https://github.com/quicwg/base-drafts/commit/7ddcd1d53039f50f8050ec51912c086016407521
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Trying to thread the needle



From nobody Wed May 13 23:56:46 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 42DDD3A0BDF for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:56:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.724
X-Spam-Level: 
X-Spam-Status: No, score=-1.724 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 efpWasy7IYEU for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:56:38 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4EF743A0BD4 for <quic-issues@ietf.org>; Wed, 13 May 2020 23:56:28 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 6756CE11AE for <quic-issues@ietf.org>; Wed, 13 May 2020 23:56:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439387; bh=SjrzhJPI/vTLA2U56w0xQb/5bKb2gRkA17RtzbuPuaY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AvDrlP0FMo3Kg1XeYDKb0h4T09ZKiZUPjUOxfk3/IPRxmyTF0p3EwD8CvIh94ibut +TovO0/yFWihHLZMiG6XXnwfwa3t8JGWFqWdLQPgGSW8CO+1JNmxpnqkEhMZirzMvi up7MsJ0NsqvxAx0hLoKfzxF4fuxVtLfOUhdOzTEc=
Date: Wed, 13 May 2020 23:56:27 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/push/5070398872@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebceb9b58c26_5c403fe40b2cd95c781f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0Ira7JrUJ0P6ymrJjtQCHKUD2U4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 06:56:40 -0000

----==_mimepart_5ebceb9b58c26_5c403fe40b2cd95c781f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

7ddcd1d53039f50f8050ec51912c086016407521  Trying to thread the needle


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630/files/75791409cdeafdfdb429024dc1ced0ed104f8648..7ddcd1d53039f50f8050ec51912c086016407521

----==_mimepart_5ebceb9b58c26_5c403fe40b2cd95c781f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/7ddcd1d53039f50f8050ec51912c086016407521">7ddcd1d</a>  Trying to thread the needle</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3630/files/75791409cdeafdfdb429024dc1ced0ed104f8648..7ddcd1d53039f50f8050ec51912c086016407521">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5BDJZQWDCZLML2VHDRROIZXANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZBT6Y2NPU5GUGBAUDRROIZXA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTGOBYGMYDOOKQOVZWQIZVGA3TAMZZHA4DOMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630/files/75791409cdeafdfdb429024dc1ced0ed104f8648..7ddcd1d53039f50f8050ec51912c086016407521",
"url": "https://github.com/quicwg/base-drafts/pull/3630/files/75791409cdeafdfdb429024dc1ced0ed104f8648..7ddcd1d53039f50f8050ec51912c086016407521",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebceb9b58c26_5c403fe40b2cd95c781f--


From nobody Wed May 13 23:57:25 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 0BE4F3A0BDF for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:57:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 8evnJD58PwcJ for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:57:23 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 005743A0BD4 for <quic-issues@ietf.org>; Wed, 13 May 2020 23:57:22 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 8665B8C00AA for <quic-issues@ietf.org>; Wed, 13 May 2020 23:57:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439441; bh=pPNSL/paxcbUotx0GQ61Kb0T8rYLOY6i286S3Mysgu8=; h=Date:From:To:Subject:From; b=Kg6oxZWZwVX/EIY7HfTMfAEJWO7sUHt5rVBz+JWqS7rylKOeT/DGH3kaSxu4uZ/8J ylNFXTMqtQi8J4KeNMItULbTt0EPvQVHyzz4rS8DyxoCWgPR0lVQF9qMx56QfMgMNm K+pC/oqTkA1VyihsyN3o88Et+oBH0gVlXd9tgPfs=
Date: Wed, 13 May 2020 23:57:21 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c1ee32-4a4fdd@github.com>
Subject: [quicwg/base-drafts] 4a4fdd: Script updating gh-pages from 7ddcd1d5. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RoyhkYoBlhwBsK_KbUL_bvN78o8>
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: Thu, 14 May 2020 06:57:24 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4a4fdd83028566d46d510b429f3c9afe8b7682d4
      https://github.com/quicwg/base-drafts/commit/4a4fdd83028566d46d510b429f3c9afe8b7682d4
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-http.html
    M pacing-dfn/draft-ietf-quic-http.txt
    M pacing-dfn/draft-ietf-quic-invariants.html
    M pacing-dfn/draft-ietf-quic-invariants.txt
    M pacing-dfn/draft-ietf-quic-qpack.html
    M pacing-dfn/draft-ietf-quic-qpack.txt
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt
    M pacing-dfn/draft-ietf-quic-tls.html
    M pacing-dfn/draft-ietf-quic-tls.txt
    M pacing-dfn/draft-ietf-quic-transport.html
    M pacing-dfn/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 7ddcd1d5. [ci skip]



From nobody Wed May 13 23:58:58 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 663613A0C1C for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:58:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZS7jvVNqSjUK for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:58:50 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F0E463A0C27 for <quic-issues@ietf.org>; Wed, 13 May 2020 23:58:49 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 1F1826A112A for <quic-issues@ietf.org>; Wed, 13 May 2020 23:58:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439529; bh=O+Quo+L1c0+bwY7ipAeknY/cYSaK9LEbx6ezZnv9xdU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IPDiBj7PhIgOhJSWcs7YC1LMe11G/9BB2QKKRvFi00ilD47ekqNtF0inRAR04bp4b QJWHmFQudQJ1QhMF7nhFaIIJ3Z/AI9q++P+KAmQ0TqWUeWqPMxUTeBmPkt0L+53hEG Pu1YCKBveBfssoqBXFUFtOX056xEtTv/Z42xTaRs=
Date: Wed, 13 May 2020 23:58:49 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK65EVLERQMHPBBTBRV4ZDGSTEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/c628430254@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcec29109eb_38183fe8c9acd964848ba"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/J0EI8lHZN1gQ0_1WeQg2daaXkdY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 06:58:57 -0000

----==_mimepart_5ebcec29109eb_38183fe8c9acd964848ba
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I've taken a little of each suggestion here.  I think that the difference between suggesting N=1.25 and N=2 is largely philosophical, so I don't want to get drawn on that.  The only constraints that matter is that it be small and >= 1.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#issuecomment-628430254
----==_mimepart_5ebcec29109eb_38183fe8c9acd964848ba
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I've taken a little of each suggestion here.  I think that the difference between suggesting N=1.25 and N=2 is largely philosophical, so I don't want to get drawn on that.  The only constraints that matter is that it be small and &gt;= 1.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#issuecomment-628430254">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5B2J5MHLW6IGOGH63RROJCTANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4WCKRQC4APMRB47QLRROJCTA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEV2RLLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-628430254",
"url": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-628430254",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcec29109eb_38183fe8c9acd964848ba--


From nobody Wed May 13 23:59:49 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 06C333A0BE8 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:59:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 gpuiQhII2zMW for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:59:46 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C5A6D3A0BD4 for <quic-issues@ietf.org>; Wed, 13 May 2020 23:59:38 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 0CB7BC6003D for <quic-issues@ietf.org>; Wed, 13 May 2020 23:59:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439578; bh=cJlHLINjGoByYqN892pdbfwZFYu6LwQsvxgdxmQdAK4=; h=Date:From:To:Subject:From; b=KAwyWaYGcxyVRdS69nMh7F+4kBThVzjVWcjwX4uHgUvCAx+yOzb2qSSJKTOPyTs4d /h3+WMeYU2RJTdmBIoUxLVbk9zZnSqYnFE8GrqR35uufgCLqNDPGbP960MkhdiWKTk GbX7CkgLoDIRymbZxvOPLgujFULquJHolFmfKzPA=
Date: Wed, 13 May 2020 23:59:37 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/7ddcd1-954f03@github.com>
Subject: [quicwg/base-drafts] 954f03: Fix
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/np6jaET4fGs1NhY1zcrzLpOkbYI>
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: Thu, 14 May 2020 06:59:48 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: 954f037f641703d7566f024cc41755f24ef6ae2b
      https://github.com/quicwg/base-drafts/commit/954f037f641703d7566f024cc41755f24ef6ae2b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Fix



From nobody Wed May 13 23:59:53 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 56EE43A0BD4 for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:59:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 PBTJ1Jv7GFtk for <quic-issues@ietfa.amsl.com>; Wed, 13 May 2020 23:59:47 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 139443A0BE2 for <quic-issues@ietf.org>; Wed, 13 May 2020 23:59:47 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 5C9DF66091A for <quic-issues@ietf.org>; Wed, 13 May 2020 23:59:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439586; bh=u2UVcOShnoESh8n0Vi2OZL0jh6WkDQ1z4YYO3/FSUW4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0rE5rQDjs6Vc7VjbEbOQEENsIUR5eShgC+fCG9Ukmv3nUlK5/PRS9oZTQ1e32dwk9 3xbx7Qu7YbhUONfT2wDqm6xHS5UXuqD+Uopz6LW4BDDGRYQXbSRMcZ9tAPkXZMvHIR Q0VFRivTXEVeyMgWkwCAdEe3iUP/Oo1b9WZwaQcE=
Date: Wed, 13 May 2020 23:59:46 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/push/5070412165@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcec624e56e_3cdf3fafbfccd96483090"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Bz2kLGerrbA6IMwsN2XizY_WEL4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 06:59:49 -0000

----==_mimepart_5ebcec624e56e_3cdf3fafbfccd96483090
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

954f037f641703d7566f024cc41755f24ef6ae2b  Fix


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630/files/7ddcd1d53039f50f8050ec51912c086016407521..954f037f641703d7566f024cc41755f24ef6ae2b

----==_mimepart_5ebcec624e56e_3cdf3fafbfccd96483090
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/954f037f641703d7566f024cc41755f24ef6ae2b">954f037</a>  Fix</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3630/files/7ddcd1d53039f50f8050ec51912c086016407521..954f037f641703d7566f024cc41755f24ef6ae2b">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7HEW5RHQR2MQL3M73RROJGFANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2KERJ4TOQ3HADGX2LRROJGFA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTGOBYGMYDOOKQOVZWQIZVGA3TANBRGIYTMNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630/files/7ddcd1d53039f50f8050ec51912c086016407521..954f037f641703d7566f024cc41755f24ef6ae2b",
"url": "https://github.com/quicwg/base-drafts/pull/3630/files/7ddcd1d53039f50f8050ec51912c086016407521..954f037f641703d7566f024cc41755f24ef6ae2b",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebcec624e56e_3cdf3fafbfccd96483090--


From nobody Thu May 14 00:00:47 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 9577B3A0C04 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:00:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 1P-jcQy7WaZK for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:00:44 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8B5F03A0C01 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:00:43 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 03518260419 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:00:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439643; bh=x87Yq3KzhkmboZU/zb7ZD0V0g4IddUpvbiFxR10qBoA=; h=Date:From:To:Subject:From; b=kEGWzQLBOvJdKS7R3qkAPMVYw+blCt05KX2+bl9UI8CcSrVMIQ5E/GJklOToxAPY1 YMRDea7offLKc9i80ZyhjRHLUDwYbp2j4r9IPXWK7J9v0MSwBx0gHzVufxCFr2VW2i b8j2ouxemhXhBZYidIuOclThgwYbStwkf8O2j6MI=
Date: Thu, 14 May 2020 00:00:42 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4a4fdd-7e7092@github.com>
Subject: [quicwg/base-drafts] 7e7092: Script updating gh-pages from 954f037f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Hfi6cMGg-cRPGXe-wel8SIJSbiY>
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: Thu, 14 May 2020 07:00:46 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7e709245983f4fd1a8875709df2f1d3a447e1786
      https://github.com/quicwg/base-drafts/commit/7e709245983f4fd1a8875709df2f1d3a447e1786
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt

  Log Message:
  -----------
  Script updating gh-pages from 954f037f. [ci skip]



From nobody Thu May 14 00:03:36 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 F1A5A3A0061 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:03:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.273
X-Spam-Level: 
X-Spam-Status: No, score=-3.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 xvLQIGOagOEY for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:03:33 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 827E73A00AD for <quic-issues@ietf.org>; Thu, 14 May 2020 00:03:33 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 57A0F8C0460 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:03:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439812; bh=1w9V3BFvHqwI5kDlZOZV8BUE1iRlxB0FNe27Jcdf9hY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=M5d0m+yGNgmdapcBKtZ+bOapNPha9N2Z4cFv+FQFbBsRKddIzMQbPXWEgURT4PtrI ko/oOwUdKRyMOvzsYDvCKkET1eQ5j0u9y0I3O/m4BpIH1TVgt+IZpr2sC6BTdPZl4c scbV2VWvRpHMxQ/4WSmlM5+o+wfWPgxtNI+vOKro=
Date: Thu, 14 May 2020 00:03:32 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZD4MQMUDZAXXRYUAV4ZDHEJEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/review/411514042@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebced44484f1_3cb83fafbfccd964751f9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6yOnz2k64u667LesLDGm2yMclLI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:03:35 -0000

----==_mimepart_5ebced44484f1_3cb83fafbfccd964751f9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> +as the one in this document, that rate can be computed by averaging the
+congestion window over the round-trip time. Expressed as a rate in bytes:
+
+~~~
+rate = N * congestion_window / smoothed_rtt
+~~~
+
+Or, expressed as an inter-packet interval:
+
+~~~
+interval = smoothed_rtt * packet_size / congestion_window / N
+~~~
+
+Using a value for N that is small, but greater than 1 (for example, 1.25)
+ensures that short-term variations in round-trip time or scheduler delays don't
+result in not fully utilizing the congestion window.

```suggestion
result in under-utilization of the congestion window.
```

> +as the one in this document, that rate can be computed by averaging the
+congestion window over the round-trip time. Expressed as a rate in bytes:
+
+~~~
+rate = N * congestion_window / smoothed_rtt
+~~~
+
+Or, expressed as an inter-packet interval:
+
+~~~
+interval = smoothed_rtt * packet_size / congestion_window / N
+~~~
+
+Using a value for `N` that is small, but at least 1 (for example, 1.25) ensures
+that short-term variations in round-trip time or scheduler delays don't result
+in not fully utilizing the congestion window.

```suggestion
in under-utilization of the congestion window.
```

> @@ -897,9 +897,28 @@ congestion window, which is recommended to be the minimum of
 max_datagram_size is the current maximum size of a datagram for the connection,
 not including UDP or IP overhead.
 
-As an example of a well-known and publicly available implementation of a flow
-pacer, implementers are referred to the Fair Queue packet scheduler (fq qdisc)
-in Linux (3.11 onwards).
+Endpoints can implement pacing as they choose. A perfectly paced sender spreads

I would propose moving this paragraph up one, and adding this to the start of the previous paragraph: "Practical considerations, such as packetization, scheduling delays, and computational efficiency, can cause a sender to deviate from this rate over time periods that are much shorter than a round-trip time. Sending multiple packets into the network without any delay ..."

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-411514042
----==_mimepart_5ebced44484f1_3cb83fafbfccd964751f9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3630#discussi=
on_r424911172">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +as the one in this document, that rate ca=
n be computed by averaging the=0D
+congestion window over the round-trip time. Expressed as a rate in bytes=
:=0D
+=0D
+~~~=0D
+rate =3D N * congestion_window / smoothed_rtt=0D
+~~~=0D
+=0D
+Or, expressed as an inter-packet interval:=0D
+=0D
+~~~=0D
+interval =3D smoothed_rtt * packet_size / congestion_window / N=0D
+~~~=0D
+=0D
+Using a value for N that is small, but greater than 1 (for example, 1.25=
)=0D
+ensures that short-term variations in round-trip time or scheduler delay=
s don&#39;t=0D
+result in not fully utilizing the congestion window.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-result in not fully utilizing the congestion =
window.=0D
+result in under-utilization of the congestion window.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3630#discussi=
on_r424911864">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +as the one in this document, that rate ca=
n be computed by averaging the=0D
+congestion window over the round-trip time. Expressed as a rate in bytes=
:=0D
+=0D
+~~~=0D
+rate =3D N * congestion_window / smoothed_rtt=0D
+~~~=0D
+=0D
+Or, expressed as an inter-packet interval:=0D
+=0D
+~~~=0D
+interval =3D smoothed_rtt * packet_size / congestion_window / N=0D
+~~~=0D
+=0D
+Using a value for `N` that is small, but at least 1 (for example, 1.25) =
ensures=0D
+that short-term variations in round-trip time or scheduler delays don&#3=
9;t result=0D
+in not fully utilizing the congestion window.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-in not fully utilizing the congestion window.=
=0D
+in under-utilization of the congestion window.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3630#discussi=
on_r424913084">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -897,9 +897,28 @@ congestion window, wh=
ich is recommended to be the minimum of=0D
 max_datagram_size is the current maximum size of a datagram for the conn=
ection,=0D
 not including UDP or IP overhead.=0D
 =0D
-As an example of a well-known and publicly available implementation of a=
 flow=0D
-pacer, implementers are referred to the Fair Queue packet scheduler (fq =
qdisc)=0D
-in Linux (3.11 onwards).=0D
+Endpoints can implement pacing as they choose. A perfectly paced sender =
spreads=0D
</pre>=0D
<p>I would propose moving this paragraph up one, and adding this to the s=
tart of the previous paragraph: "Practical considerations, such as packet=
ization, scheduling delays, and computational efficiency, can cause a sen=
der to deviate from this rate over time periods that are much shorter tha=
n a round-trip time. Sending multiple packets into the network without an=
y delay ..."</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3630#pullrequestreview-411514042">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K3J7BRX2ER4JRVMGEDRROJUJANCNFSM4M2ELDDA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK4XGABRFAJII5W45B3RROJUJA5CNFSM4=
M2ELDDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCDTJOQ.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestrev=
iew-411514042",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview=
-411514042",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebced44484f1_3cb83fafbfccd964751f9--


From nobody Thu May 14 00:03:41 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 BF1543A0062 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:03:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 maE1_aPeEG_w for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:03:35 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CF6983A0061 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:03:35 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 60B3F120FC7 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:03:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439815; bh=U9U1rD96UVeA0q7VxxZHZ0V5BFR3zdulMtDA90o12Uc=; h=Date:From:To:Subject:From; b=XKdoXEgGILbFP4OzvBDnZ+VIBNIZQcjQWClZEbhIKfwDH+psRX4gNQu1owmPyNPRu yJncaJfG4Wiy5+SSUgpJis7Vb+r7WyuvmMYGl9vA8ohxrxiT/tRU+5PHGBLOvljsUV ZgllT64+vDS/EhYOjK7Qcizzqi8aYx20hzur2HR0=
Date: Thu, 14 May 2020 00:03:35 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/max-udp-pmtud/d08172-defd05@github.com>
Subject: [quicwg/base-drafts] defd05: Language tweaking
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/S3qD-KMsQa4Xt38Kheo3tymf3P8>
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: Thu, 14 May 2020 07:03:37 -0000

  Branch: refs/heads/max-udp-pmtud
  Home:   https://github.com/quicwg/base-drafts
  Commit: defd05efb0892dca1ddd94f9ffbc77daea5a581e
      https://github.com/quicwg/base-drafts/commit/defd05efb0892dca1ddd94f9ffbc77daea5a581e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Language tweaking

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>



From nobody Thu May 14 00:03:48 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 60C183A0061 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:03:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.724
X-Spam-Level: 
X-Spam-Status: No, score=-1.724 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 PVsXkY8fIo1Z for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:03:45 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0E3DD3A0062 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:03:44 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id B3C296E0914 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:03:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439823; bh=IJno8vp+oC5PUosLsqwTsCdPFRsLAepw9npUVwYFcyc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XpKQEZzwV1KGL1BbAoumZAcFn2N0AhXW5aFSiWlrV8LLYYiOnueCvU0NXKP+2luOo A5YY4urQpdAE7M/eqvqG9CVyw3WCQiBZASz22Woq816zykJuWyG3QEKYZgQl2/RfKJ 8UNMlEPaaP1R0E6S6OOliuvSwNOc/OCqr64F3Jv4=
Date: Thu, 14 May 2020 00:03:43 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3651/push/5070428853@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3651@github.com>
References: <quicwg/base-drafts/pull/3651@github.com>
Subject: Re: [quicwg/base-drafts] Include max_udp_payload_size in packet size discussion (#3651)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebced4f9fe45_4cb43fbdd46cd9601628f0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bGZA0WJVe5KNfIs8fWF3H8bBNCw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:03:46 -0000

----==_mimepart_5ebced4f9fe45_4cb43fbdd46cd9601628f0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

defd05efb0892dca1ddd94f9ffbc77daea5a581e  Language tweaking


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3651/files/d081726ce4ab18213d9cd65fe19cbb82ef2e52e0..defd05efb0892dca1ddd94f9ffbc77daea5a581e

----==_mimepart_5ebced4f9fe45_4cb43fbdd46cd9601628f0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/defd05efb0892dca1ddd94f9ffbc77daea5a581e">defd05e</a>  Language tweaking</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3651/files/d081726ce4ab18213d9cd65fe19cbb82ef2e52e0..defd05efb0892dca1ddd94f9ffbc77daea5a581e">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6QYPR5WEHH2MLOZMLRROJU7ANCNFSM4M7JQFQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6OVUZQVRBDLTRHBXTRROJU7A5CNFSM4M7JQFQKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTOMBVGA2DINSQOVZWQIZVGA3TANBSHA4DKMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3651/files/d081726ce4ab18213d9cd65fe19cbb82ef2e52e0..defd05efb0892dca1ddd94f9ffbc77daea5a581e",
"url": "https://github.com/quicwg/base-drafts/pull/3651/files/d081726ce4ab18213d9cd65fe19cbb82ef2e52e0..defd05efb0892dca1ddd94f9ffbc77daea5a581e",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebced4f9fe45_4cb43fbdd46cd9601628f0--


From nobody Thu May 14 00:04:32 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 683113A00C4 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:04:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 JUtjqqglp_Xd for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:04:28 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5EBD83A00C0 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:04:28 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id E49B2120431 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:04:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439868; bh=aSaHZldgQ25JI8sHBpiEkhrQBdpv7HgWi0iGeczS9U0=; h=Date:From:To:Subject:From; b=lLD8WUW+VE6BoCf0vWIPn1u419WCoeB827OUXmyeuEBuxjAJucfD/sd5GpLm5hHp6 rwurt0Foo+I1zhgWVlNFsUQLkHvlNq5QEULQQDQXdMql5A/+T1CYakgiG0km6rcRO2 7hziEcX9wGoqEyMErZ67QckNeFuape8rxygGUyaA=
Date: Thu, 14 May 2020 00:04:27 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/max-udp-pmtud/defd05-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EjiiBqrEHXPYQlGrcy4_Eauh6Dk>
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: Thu, 14 May 2020 07:04:29 -0000

  Branch: refs/heads/max-udp-pmtud
  Home:   https://github.com/quicwg/base-drafts


From nobody Thu May 14 00:04:36 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 9FE2C3A00C0 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:04:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 CcgOCi1CLk6v for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:04:28 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 44DE43A00B2 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:04:28 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 7F0E38C0082 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:04:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439867; bh=CsYjHC1fTg7VqJpjHqkrABZcIu8nx/TdT9otJPhu6IE=; h=Date:From:To:Subject:From; b=U9lwG6WfluVjUiPDbUA86bQuCG6a49jXn5W+6qAkrjKG5PO0EwZQmgVNYD3UZtV0G XrxxbyKqJWbRj0r2MaZQQ8B2OYosBRMiwmgJqKK4Nv/f8SVQJ74iK6o2d8Aq5vGKkx 3lVVZ/aa8ZUgydaGtv72qezmcfobQA05iPT3FgkE=
Date: Thu, 14 May 2020 00:04:27 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/5ddcfd-d891e7@github.com>
Subject: [quicwg/base-drafts] d08172: Include max_udp_payload_size in packet size discus...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eYuWrbgAj74KIZQNfvAJXs-LVQM>
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: Thu, 14 May 2020 07:04:30 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: d081726ce4ab18213d9cd65fe19cbb82ef2e52e0
      https://github.com/quicwg/base-drafts/commit/d081726ce4ab18213d9cd65fe19cbb82ef2e52e0
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Include max_udp_payload_size in packet size discussion

This isn't a complete dissertation on how clients might choose to use
larger packet sizes.  In particular, it doesn't capture the whole
discussion about starting at a higher size being a way to raise the 1280
to something higher, with the requisite cost being that you might have
failures.  Deciding to put that in would be much harder.

What this does is just say that the transport parameter acts as a
further limit on packet size and that you won't know that prior to
knowing.  That means that you are guessing about the network path AND
your peer when you decide to send >1200 (to be fair, the former really
only applies for IPv4, and it's not much of a guess).

Closes #3638.


  Commit: defd05efb0892dca1ddd94f9ffbc77daea5a581e
      https://github.com/quicwg/base-drafts/commit/defd05efb0892dca1ddd94f9ffbc77daea5a581e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Language tweaking

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>


  Commit: d891e7d79138b1a4275fd009b6cf21b4e063ad93
      https://github.com/quicwg/base-drafts/commit/d891e7d79138b1a4275fd009b6cf21b4e063ad93
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3651 from quicwg/max-udp-pmtud

Include max_udp_payload_size in packet size discussion


Compare: https://github.com/quicwg/base-drafts/compare/5ddcfde12293...d891e7d79138


From nobody Thu May 14 00:04:40 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 B662D3A00C9 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:04:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 HLHb8hsie94J for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:04:33 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 824183A00DB for <quic-issues@ietf.org>; Thu, 14 May 2020 00:04:33 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id D3325E05E5 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:04:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439872; bh=wzojaNUoa8TYxr94XLXb9A6XjIPkAEdpVj8SUWIYMbg=; h=Date:From:To:Subject:From; b=HLxzpYN1lo0Mgk9qMsNoiQax0pPEPaIb7GJgH7ftruVN8q+Z2H3/GYKh8dSyoNDG+ eb1eBtNjMFk1upxPBRWxLozuaynT6AkJAVA1wABZWraN+26nlmXx1fU3HH4JmjhgNo S0jQRXxfRDgXuxNWlB5msgGUh9mcdeawQDJWJCfA=
Date: Thu, 14 May 2020 00:04:32 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/7e7092-509d0c@github.com>
Subject: [quicwg/base-drafts] 509d0c: Script updating gh-pages from defd05ef. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/t-0fSbHf4enz37zlAAgwjK_e_bI>
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: Thu, 14 May 2020 07:04:35 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 509d0cb0201ad4c22eba7f42eb39971d6c75d6fb
      https://github.com/quicwg/base-drafts/commit/509d0cb0201ad4c22eba7f42eb39971d6c75d6fb
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M index.html
    M max-udp-pmtud/draft-ietf-quic-http.html
    M max-udp-pmtud/draft-ietf-quic-http.txt
    M max-udp-pmtud/draft-ietf-quic-invariants.html
    M max-udp-pmtud/draft-ietf-quic-invariants.txt
    M max-udp-pmtud/draft-ietf-quic-qpack.html
    M max-udp-pmtud/draft-ietf-quic-qpack.txt
    M max-udp-pmtud/draft-ietf-quic-recovery.html
    M max-udp-pmtud/draft-ietf-quic-recovery.txt
    M max-udp-pmtud/draft-ietf-quic-tls.html
    M max-udp-pmtud/draft-ietf-quic-tls.txt
    M max-udp-pmtud/draft-ietf-quic-transport.html
    M max-udp-pmtud/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from defd05ef. [ci skip]



From nobody Thu May 14 00:04:43 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 350FF3A00C9 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:04:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 XiEm6v-AnCSu for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:04:37 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DA9A73A00C0 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:04:36 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 29C212C21D7 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:04:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439876; bh=Iv1Jvbh+D/SowjCxPSoLjPXNlTCdNTHXlOZoHJ1qncc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=C4ybZ1N4suQW+lDmfFVsSQl7PwxvEmME5TpQlJN1w/VGqQipP/Vt8Zjh63Vn9TqEf tY4drT0lD1xzm9BlMeKgyH5bZ1aoSQwzr7mcUZxi0ePUlg6kNhYxUunY7MCDOfrhhx dLWAmnWKgiqOkElphTXE4psxhMfWcW0JOLM7kC0w=
Date: Thu, 14 May 2020 00:04:36 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK43GM2ZMYZWAC7CGC54ZDHIJEVBNHHCJKIRDE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3638/issue_event/3335140803@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3638@github.com>
References: <quicwg/base-drafts/issues/3638@github.com>
Subject: Re: [quicwg/base-drafts] max_udp_payload_size during the handshake (#3638)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebced841a01a_66a73f94e46cd960178575"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DjHWhRCSTeyijHUF5GJqVkkGNrM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:04:38 -0000

----==_mimepart_5ebced841a01a_66a73f94e46cd960178575
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3638 via #3651.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3638#event-3335140803
----==_mimepart_5ebced841a01a_66a73f94e46cd960178575
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="615059737" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3638" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3638/hovercard" href="https://github.com/quicwg/base-drafts/issues/3638">#3638</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="617058549" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3651" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3651/hovercard" href="https://github.com/quicwg/base-drafts/pull/3651">#3651</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3638#event-3335140803">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK35SBEOUQYXC5XLJZTRROJYJANCNFSM4M4SN3PA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6I3YGC22T6RR2DE6TRROJYJA5CNFSM4M4SN3PKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY3FDLQY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3638#event-3335140803",
"url": "https://github.com/quicwg/base-drafts/issues/3638#event-3335140803",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebced841a01a_66a73f94e46cd960178575--


From nobody Thu May 14 00:04:47 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 F04A23A00C0 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:04:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 wTQcnx8w7qVE for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:04:37 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AE5883A00C4 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:04:37 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id EFBFA6A05E0 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:04:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439876; bh=Q8vgskJze5LISnbWkdUfNLoX6c+mJggRQ/xPJhQwavQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gkkDbGQLXVlmkT0v9tRFKasRxp1NL27M1sEaIKJV0xr/C8Qeue6THcKm67mG7MuCg 7ldWksSeSTLXefYFRJHyuJ1Zpn1XePVFrmuD82hF4fs9gpwKI6ZDzjFqwVuVeH2CdO GmMqRRIps25Oz3qQ7ViKbO8wrFa3tHpxSlDe3By4=
Date: Thu, 14 May 2020 00:04:36 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZU53JPZDW35WRZ42F4ZDHIJEVBNHHCJR4Q6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3651/issue_event/3335140792@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3651@github.com>
References: <quicwg/base-drafts/pull/3651@github.com>
Subject: Re: [quicwg/base-drafts] Include max_udp_payload_size in packet size discussion (#3651)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebced84e0f8f_240d3fc0210cd96c11796"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ABhy-qd3Ro3Wecb0d_cHz4nAQDc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:04:39 -0000

----==_mimepart_5ebced84e0f8f_240d3fc0210cd96c11796
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3651 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3651#event-3335140792
----==_mimepart_5ebced84e0f8f_240d3fc0210cd96c11796
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="617058549" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3651" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3651/hovercard" href="https://github.com/quicwg/base-drafts/pull/3651">#3651</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3651#event-3335140792">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZK5BUHU4R4GFOXII3RROJYJANCNFSM4M7JQFQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6NYU6G6KFHF467X5LRROJYJA5CNFSM4M7JQFQKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY3FDLOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3651#event-3335140792",
"url": "https://github.com/quicwg/base-drafts/pull/3651#event-3335140792",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebced84e0f8f_240d3fc0210cd96c11796--


From nobody Thu May 14 00:05:18 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 0F6613A00C0 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:05:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 XOdoJRHWMN3W for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:05:16 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DCD033A00B2 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:05:15 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 2DED11C099A for <quic-issues@ietf.org>; Thu, 14 May 2020 00:05:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589439915; bh=974tdJ1udcITUmvXrgIM+1lRRW43KBsdDHUVNL2nlaY=; h=Date:From:To:Subject:From; b=xr+tZyrzJqsj2iRHU1rzlQeetqlLhdWHRVwuz3uP33UU0paQXriA459lrXB+lqlI7 wZGB0rnpdoQ5n5zpGshrjPXhz+SLJ/JR+rQe0j2h6LZj1S/x4aksjH7QchxZtaBzm9 P4GPuLIfwyBOC/ToyldsvotIMkWIbXTct4WEtBks=
Date: Thu, 14 May 2020 00:05:15 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/509d0c-529ebf@github.com>
Subject: [quicwg/base-drafts] 529ebf: Script updating gh-pages from d891e7d7. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jXaWB4yiiduP2-vvyGb31UfSE9E>
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: Thu, 14 May 2020 07:05:17 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 529ebf63761feccd18f7dc1cc01b50475583f94e
      https://github.com/quicwg/base-drafts/commit/529ebf63761feccd18f7dc1cc01b50475583f94e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d891e7d7. [ci skip]



From nobody Thu May 14 00:18:53 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 404863A02BD for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:18:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 KyonYLReEAW6 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:18:51 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 238FC3A02BC for <quic-issues@ietf.org>; Thu, 14 May 2020 00:18:51 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 57C5E1C02CD for <quic-issues@ietf.org>; Thu, 14 May 2020 00:18:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589440730; bh=qxCOk7+HWwRfOAt7YLwHyIcgiR5XNGQWez7AStvkUGQ=; h=Date:From:To:Subject:From; b=M38Hy+ykLk/4hrOYiEFBjA7dVBchgOHmKZHaiB31IV1mIKFeAiIpFMc0fpOCFHktB DjrmDRXcqVzvgQuN4WGVqvRMtfkPxeLhn0Eg3D371+BVy/tXCHQR5XoL+CtpBibZpm 78wK9ZZSDJ5+ETpQwIpqiXwoB8nO/CHlYHpZ7uck=
Date: Thu, 14 May 2020 00:18:50 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/active-cid-limit-rpt/8c7e60-67dc30@github.com>
Subject: [quicwg/base-drafts] 67dc30: Attempt at making smaller sentences
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6iobZ1DuZwdL99lIhBcL1natuYQ>
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: Thu, 14 May 2020 07:18:53 -0000

  Branch: refs/heads/active-cid-limit-rpt
  Home:   https://github.com/quicwg/base-drafts
  Commit: 67dc30dd88c4ceb82fc12343f122e91c17d8b61f
      https://github.com/quicwg/base-drafts/commit/67dc30dd88c4ceb82fc12343f122e91c17d8b61f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Attempt at making smaller sentences



From nobody Thu May 14 00:19:06 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 C89563A02BC for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:19:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 smU7AIcuQ39q for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:18:59 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 893193A02BD for <quic-issues@ietf.org>; Thu, 14 May 2020 00:18:59 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id AF8FF960683 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:18:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589440738; bh=ofQHMaCtwOuyTEgWO9VNsqV3O8Bn1KtQ+y9seMpgcUI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LvV1vbYFa36EJXWtoPybztQXSWU5gwb0Xxv6R8HVnSkOL5BrqVt1ke2bfBpp5pcuP au+tbOfjCgD8TBoiSMiZq2wggacXJ28GDnqhYpJTsg8QGxNpjT5gZEApdogtyMdhrW rL4jCtk0doQvlk0+tWy9+wK74CpB38rgWDWfjzIg=
Date: Thu, 14 May 2020 00:18:58 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/push/5070494397@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcf0e2a0336_32853f931c2cd96012839b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UEMolJ8Xt64qj-3BoOAjRsV8GNc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:19:01 -0000

----==_mimepart_5ebcf0e2a0336_32853f931c2cd96012839b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

67dc30dd88c4ceb82fc12343f122e91c17d8b61f  Attempt at making smaller sentences


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643/files/8c7e6033f60b5064780338971de611723f3c1c09..67dc30dd88c4ceb82fc12343f122e91c17d8b61f

----==_mimepart_5ebcf0e2a0336_32853f931c2cd96012839b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/67dc30dd88c4ceb82fc12343f122e91c17d8b61f">67dc30d</a>  Attempt at making smaller sentences</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3643/files/8c7e6033f60b5064780338971de611723f3c1c09..67dc30dd88c4ceb82fc12343f122e91c17d8b61f">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4G7SEZWFJG4Y3Y3N3RROLOFANCNFSM4M6L6D2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5WBGEKS3IMHE3EXUTRROLOFA5CNFSM4M6L6D2KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTMNBRHE3DEMKQOVZWQIZVGA3TANBZGQZTSNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3643/files/8c7e6033f60b5064780338971de611723f3c1c09..67dc30dd88c4ceb82fc12343f122e91c17d8b61f",
"url": "https://github.com/quicwg/base-drafts/pull/3643/files/8c7e6033f60b5064780338971de611723f3c1c09..67dc30dd88c4ceb82fc12343f122e91c17d8b61f",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebcf0e2a0336_32853f931c2cd96012839b--


From nobody Thu May 14 00:19:44 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 BD7F33A02BC for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:19:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, 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] 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 1XbDgZYlqFGC for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:19:41 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4716B3A02C1 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:19:41 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id CDF781204D6 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:19:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589440780; bh=pWprU8YEJx7OuYEhS/ZVHY3oFAYUKDD4MKNF+BHaPuc=; h=Date:From:To:Subject:From; b=EdDhFUf1OtR9O2X9BJbBlxquRBzvwqWyjoGv1dzES8BCmlX/VhTQnIEKhUWgcTjoh S8N4vPnXmfgtKeIHz+uXkDt0HBWdgRxNPkPMAmwLR5Rui7aPdod0wTphBAy1QkQfjp WLrS/XXvDf+ARU+CA5ibeFFNOd1eOzBiHvHPhJTg=
Date: Thu, 14 May 2020 00:19:40 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/529ebf-570a50@github.com>
Subject: [quicwg/base-drafts] 570a50: Script updating gh-pages from 67dc30dd. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EmjqSXDN7BAyN20ucz4gH81oCTM>
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: Thu, 14 May 2020 07:19:43 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 570a50f3d15ce41fdc049a3ecdd6a87505708ab2
      https://github.com/quicwg/base-drafts/commit/570a50f3d15ce41fdc049a3ecdd6a87505708ab2
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M active-cid-limit-rpt/draft-ietf-quic-http.html
    M active-cid-limit-rpt/draft-ietf-quic-http.txt
    M active-cid-limit-rpt/draft-ietf-quic-invariants.html
    M active-cid-limit-rpt/draft-ietf-quic-invariants.txt
    M active-cid-limit-rpt/draft-ietf-quic-qpack.html
    M active-cid-limit-rpt/draft-ietf-quic-qpack.txt
    M active-cid-limit-rpt/draft-ietf-quic-recovery.html
    M active-cid-limit-rpt/draft-ietf-quic-recovery.txt
    M active-cid-limit-rpt/draft-ietf-quic-tls.html
    M active-cid-limit-rpt/draft-ietf-quic-tls.txt
    M active-cid-limit-rpt/draft-ietf-quic-transport.html
    M active-cid-limit-rpt/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 67dc30dd. [ci skip]



From nobody Thu May 14 00:20:14 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 E684E3A02C1 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:20:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 onrb9ng-vzvc for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:20:11 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C7AFA3A02BC for <quic-issues@ietf.org>; Thu, 14 May 2020 00:20:11 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 1AE35E0065 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:20:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589440811; bh=K08MQLyBfCPQvPy+9BSJFi6qXbnzVDoooogXysFYzrw=; h=Date:From:To:Subject:From; b=F3lNMAf14OyRxkNKW9ffEs4COS8eqpC4P2rP9gq8v1iaTDkN0hDWjZ5t3hxVeSs2h qV0x3xmS5BC1LRbjFPzKvaUVM+iImH0euwAlt3YtJPmRVTbLZ8swSCwCRJd2gmOH2o qbNzK89SLKtOYj2vgzzdpWgcbf7hA5/L4e8PjXas=
Date: Thu, 14 May 2020 00:20:11 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/954f03-dbc8ff@github.com>
Subject: [quicwg/base-drafts] dbc8ff: under-utilization
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/q_BKMXJX2LvKkxvLfmYniifT9vM>
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: Thu, 14 May 2020 07:20:13 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550
      https://github.com/quicwg/base-drafts/commit/dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  under-utilization

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>



From nobody Thu May 14 00:20:24 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 CCF613A02C1 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:20:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 XQxjC32mtqAk for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:20:21 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9CAAA3A02BC for <quic-issues@ietf.org>; Thu, 14 May 2020 00:20:21 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 02E675204D3 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:20:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589440821; bh=BZ0ghZMEjeGUhwtD2J3rtXnsdjmeGo53Kh7pIMJ/joE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DCGPuUb026+jB4Z8JGv7LXzI8mF292v5R8NdeKxamk8VJzy74xI5W3V0JZtCd4wsM 6z3YyWcuqgk/j9VFkgK94FUKidhGtp/mTw1BPqeTpSDThQmrhu3Lzn3qbG27DU9dsd JzqQN+RbGRqFsKDSp5v2kx+1t1wx98BXsijEZ5hM=
Date: Thu, 14 May 2020 00:20:20 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/push/5070500182@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcf134e7410_66bb3f94e46cd960159051"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Tei70Ss5L0WZuLijsadMcyYbiBI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:20:23 -0000

----==_mimepart_5ebcf134e7410_66bb3f94e46cd960159051
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550  under-utilization


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630/files/954f037f641703d7566f024cc41755f24ef6ae2b..dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550

----==_mimepart_5ebcf134e7410_66bb3f94e46cd960159051
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550">dbc8ffc</a>  under-utilization</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3630/files/954f037f641703d7566f024cc41755f24ef6ae2b..dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYWJ43OWG5FLUYQN3LRROLTJANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ7HBJ7CVIZPAACK6DRROLTJA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTGOBYGMYDOOKQOVZWQIZVGA3TANJQGAYTQMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630/files/954f037f641703d7566f024cc41755f24ef6ae2b..dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550",
"url": "https://github.com/quicwg/base-drafts/pull/3630/files/954f037f641703d7566f024cc41755f24ef6ae2b..dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebcf134e7410_66bb3f94e46cd960159051--


From nobody Thu May 14 00:21:22 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 B736C3A02C1 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:21:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.271
X-Spam-Level: 
X-Spam-Status: No, score=-2.271 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 u6SMEJQBEKJM for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:21:18 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A62B93A0366 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:21:18 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 074C8E003A for <quic-issues@ietf.org>; Thu, 14 May 2020 00:21:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589440878; bh=dwa+3+wx+2q3QY1v85bCb9DKvFHJ8BctZkQvoLjwAWc=; h=Date:From:To:Subject:From; b=pEmVuncw6ZyuqhKv/WYveVWR4WidTn3pPUe4lAZbFgE3vDqHqi2acjzRKNORr1Oq9 tgrJ2NQiHkXZ/n7N2+PqaVYdJPPkTipDACn3Ky0PctKCLN4cJu3ML3JB390ba+IeFz aj/j1YLa+GHRmFJbu4nOs2Rhiwel98JQVV/MwUYE=
Date: Thu, 14 May 2020 00:21:17 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/570a50-7df58f@github.com>
Subject: [quicwg/base-drafts] 7df58f: Script updating gh-pages from dbc8ffcf. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tN9Y451k3y9whqoXUPlStY9QUJw>
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: Thu, 14 May 2020 07:21:22 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7df58f1fe2ec53ff749e8e62df32e4762903d1d3
      https://github.com/quicwg/base-drafts/commit/7df58f1fe2ec53ff749e8e62df32e4762903d1d3
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt

  Log Message:
  -----------
  Script updating gh-pages from dbc8ffcf. [ci skip]



From nobody Thu May 14 00:23:03 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 90D703A0365 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:23:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 WJcG1CWB36Hq for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:23:00 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F03B63A02C1 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:22:59 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 1CEF41C1203 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:22:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589440979; bh=p8CYUrG8SYitA/VBB2kc12XiMitr6oJbxhk1edxkrQY=; h=Date:From:To:Subject:From; b=onC7psV6ucGlsiPeM71KDa+ACEjYo/8f1gVadAqAR5s53U3H4peQwIc9AR+35p8vx sp18dxWFJFPPm3zt/TISRlNoNIyuN3FFJHPGyqqO/MdtgEj9xMO3hTk3u0PPy34Bv7 4xhbLSYSWN7F/ZPinfx05RaOr+6GOJ77yYds399c=
Date: Thu, 14 May 2020 00:22:59 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/dbc8ff-819f4d@github.com>
Subject: [quicwg/base-drafts] 819f4d: Some editorial rearrangement
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rLDdoNVtJfFzQW6hW8hgYOgAOfM>
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: Thu, 14 May 2020 07:23:02 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: 819f4d0d5710830a2e832acac8afa8e38c1439d6
      https://github.com/quicwg/base-drafts/commit/819f4d0d5710830a2e832acac8afa8e38c1439d6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Some editorial rearrangement



From nobody Thu May 14 00:23:13 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 6CFEE3A03EA for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:23:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.724
X-Spam-Level: 
X-Spam-Status: No, score=-1.724 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 GmFPalEaZMLy for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:23:09 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 279A93A0365 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:23:09 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 0F7CEE0032 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:23:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589440988; bh=81jpfUBguccJio+S3nS3mjPwtnpx91AGl4+aLfIR8Fw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=u3htPfo9MgivjymNihuRI+/DXd8Cam88erPr9nrlVQBoGKKDno4POvMhD/FB90qQx GhoVHKZjYrxDQr6Kr9ORj8TLG9qlP3T0Vx4UhkfY+yH1JNvYmflsHLRGl5CSoCWo9p S1c2Q5Z4DHGz/bdg1qOEpOg1rueuY6VhZK+cscJw=
Date: Thu, 14 May 2020 00:23:07 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/push/5070512391@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcf1dbf3b03_671e3f94e46cd96021578a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AN9VrSCVi8wZukRlbPqUy0K7AEQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:23:12 -0000

----==_mimepart_5ebcf1dbf3b03_671e3f94e46cd96021578a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

819f4d0d5710830a2e832acac8afa8e38c1439d6  Some editorial rearrangement


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630/files/dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550..819f4d0d5710830a2e832acac8afa8e38c1439d6

----==_mimepart_5ebcf1dbf3b03_671e3f94e46cd96021578a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/819f4d0d5710830a2e832acac8afa8e38c1439d6">819f4d0</a>  Some editorial rearrangement</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3630/files/dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550..819f4d0d5710830a2e832acac8afa8e38c1439d6">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6VS5ZE4RP2DQT3MFTRROL5XANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4MITIWLK2GKITYLKLRROL5XA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTGOBYGMYDOOKQOVZWQIZVGA3TANJRGIZTSMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630/files/dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550..819f4d0d5710830a2e832acac8afa8e38c1439d6",
"url": "https://github.com/quicwg/base-drafts/pull/3630/files/dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550..819f4d0d5710830a2e832acac8afa8e38c1439d6",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebcf1dbf3b03_671e3f94e46cd96021578a--


From nobody Thu May 14 00:23:45 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 61EC33A0366 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:23:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 UBJPsqHPJzLr for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:23:41 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7BD1A3A02C1 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:23:41 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id B842B282B9C for <quic-issues@ietf.org>; Thu, 14 May 2020 00:23:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441020; bh=PUMA6+WWSb1MdscrHnSFCxN7iTv4k5NSsq7l6X6DutI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=z/CiVysayagCdNwlfoVWSMrP4P83kAwaY8Q7ZJWkKUgmZjiz7BwwgpCGUFHLs7ceD L7kw5GwRXoFqRyoOBsYEjZhZz5TtSnmK8IiYZDMgSZFbTIcQ1OW/O5GW1wVJvx+qF2 mzObVvgUhyU71dbmGwp/yVD/khw6z01pTEhGizv8=
Date: Thu, 14 May 2020 00:23:40 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6BPRM72TW6HQU4R3F4ZDJPZEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/review/411528984@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcf1fca7fc0_65de3fb070ccd96c1568c9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-zOZgiOpqK4Lg-mrdt4A-pP_gJY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:23:44 -0000

----==_mimepart_5ebcf1fca7fc0_65de3fb070ccd96c1568c9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -897,9 +897,28 @@ congestion window, which is recommended to be the minimum of
 max_datagram_size is the current maximum size of a datagram for the connection,
 not including UDP or IP overhead.
 
-As an example of a well-known and publicly available implementation of a flow
-pacer, implementers are referred to the Fair Queue packet scheduler (fq qdisc)
-in Linux (3.11 onwards).
+Endpoints can implement pacing as they choose. A perfectly paced sender spreads

Will do.  I also noticed that that paragraph refined the initial congestion window, so I replaced the (re)definition with a section reference.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#discussion_r424922708
----==_mimepart_5ebcf1fca7fc0_65de3fb070ccd96c1568c9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3630#discussion_r424922708">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -897,9 +897,28 @@ congestion window, which is recommended to be the minimum of
 max_datagram_size is the current maximum size of a datagram for the connection,
 not including UDP or IP overhead.
 
-As an example of a well-known and publicly available implementation of a flow
-pacer, implementers are referred to the Fair Queue packet scheduler (fq qdisc)
-in Linux (3.11 onwards).
+Endpoints can implement pacing as they choose. A perfectly paced sender spreads
</pre>
<p>Will do.  I also noticed that that paragraph refined the initial congestion window, so I replaced the (re)definition with a section reference.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#discussion_r424922708">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ42MM7336OWNV35D3RROL7ZANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK37E3H53OAG2ELUOS3RROL7ZA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCDW6GA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#discussion_r424922708",
"url": "https://github.com/quicwg/base-drafts/pull/3630#discussion_r424922708",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcf1fca7fc0_65de3fb070ccd96c1568c9--


From nobody Thu May 14 00:24:02 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 E9B163A0366 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:24:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 QYQy6S4GScgT for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:23:59 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CBBE63A02C1 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:23:59 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 1F4A1282A94 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:23:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441039; bh=Zo4pdDVu8j1/JGNR4CTUZr/W/Zon+fJKHPY2AS5X0tc=; h=Date:From:To:Subject:From; b=QbffsBRzEED6nQ1po+DBleoZKv7wUFrum5VPDAHMpAbaFDMKeDrBzXWs5g7FdUSD+ lZWiaQuGjQ8UxnQMy4qXPBzwFXW/W8RQRbIwfVymPRiTirsHnridLIFVZCOxgBvqdJ 33Sf3Q/3iJzipFeQBZY1P/p+osdjv0xGu1dpGJYE=
Date: Thu, 14 May 2020 00:23:59 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/7df58f-cb8c91@github.com>
Subject: [quicwg/base-drafts] cb8c91: Script updating gh-pages from 819f4d0d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VBBxOItycaTSnF9T-xNz_yy29V4>
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: Thu, 14 May 2020 07:24:01 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: cb8c9113cf3925a95be0e049ce8b1e99286e082a
      https://github.com/quicwg/base-drafts/commit/cb8c9113cf3925a95be0e049ce8b1e99286e082a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt

  Log Message:
  -----------
  Script updating gh-pages from 819f4d0d. [ci skip]



From nobody Thu May 14 00:28:23 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 D1DFF3A03F3 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:28:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 MNx6PREpfHKT for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:28:20 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9B1203A03F2 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:28:20 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 4CE7DA01E6 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:28:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441299; bh=x+tds+rgAoO0W78qBE96b6ZN8PPlJg0u+rhweSMs80A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=q/q0mESXdCTPK6ebHHeaErjbnDeZMdQJ5DWZ/zVTIKDGiqK533RnPJO0RQ+gVld+p A1pNKR68ye3aUGA1+BscQtmxIuTAGpOmXGgsEwNt+6s4YEXIp0a1ZQvZ6vJtl+zvrX ZQnvQKHZxIHiZHQIxUl2JL1KuDkabBtMpwKdaQyg=
Date: Thu, 14 May 2020 00:28:19 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4LRFOKMPPJJNCPE3F4ZDKBHEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/review/411532111@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcf3133b7fb_2b43fb738acd96818457d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vcOpOHXz1m2Qvaryfqjp32GIl3A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:28:22 -0000

----==_mimepart_5ebcf3133b7fb_2b43fb738acd96818457d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.

Thanks for working through this! I'll wait for @ianswett to take a look.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-411532111
----==_mimepart_5ebcf3133b7fb_2b43fb738acd96818457d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>

<p>Thanks for working through this! I'll wait for <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ianswett/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</a> to take a look.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-411532111">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5BXZ4IDKCIH25RLDTRROMRHANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK25CD3SDQOP3L5AZ7TRROMRHA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCDXWTY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-411532111",
"url": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-411532111",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcf3133b7fb_2b43fb738acd96818457d--


From nobody Thu May 14 00:30:33 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 59F863A03FF for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:30:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 hTPPceOldNX1 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:30:31 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 43BE83A03F7 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:30:31 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 73C832C1C86 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:30:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441430; bh=TBAPI6UBvUtVrPjrn4gmfDhiYBAIZnvorvJT0foL7FU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jEDsmnJfCtThjXmF+wqDKr6ASAWQBvvo5lgjEeU1ff4SdCwxUUIztZFFVddAn/ZKy xho7BtGAavfXNMc5OXqb3Ngdy+978GbuVyh7cu3I/WgkRfEhLeelJvoSpryYr89h3Z 9wJ6BXWSk5gFf3LRhuU8X0SObLxuOu77Rj7aHYVo=
Date: Thu, 14 May 2020 00:30:30 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYJ363VYCXP6DLOEVV4ZDKJNEVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/review/411533593@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcf39663464_608d3fcbd5ccd9642041cf"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4xqPMZ3OJBlgMUBWT7jxo0PG3Uw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:30:32 -0000

----==_mimepart_5ebcf39663464_608d3fcbd5ccd9642041cf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411533593
----==_mimepart_5ebcf39663464_608d3fcbd5ccd9642041cf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411533593">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6QTJXAXMIVDGAEAE3RROMZNANCNFSM4M6L6D2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZKHEY6V6ACXVWFGJ3RROMZNA5CNFSM4M6L6D2KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCDYCGI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411533593",
"url": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411533593",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcf39663464_608d3fcbd5ccd9642041cf--


From nobody Thu May 14 00:34:42 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 A88D13A03FE for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:34:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 OOtrI3MJzqLv for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:34:38 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 046073A03F6 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:34:37 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 366FA960E63 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:34:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441677; bh=+iui8KD7z8aZ5ryDxth6z5q/1GDVUnlKmjfswBCmKCk=; h=Date:From:To:Subject:From; b=bj/P4Zs8LDBDSiRZiRXcPOo85gLegWM32slJJOQBmh3HTpb06btooMlf2FxURQrpJ fh3vvblUpvQVydd+UlGMCpI/wuSkciuSKh+Y+XubQbUiJ42TjMob5jjQjGTZ8cL0p3 NrhctcKUtUVEuh58sYvvJlLmS4Ln3rH2QoFfb56E=
Date: Thu, 14 May 2020 00:34:37 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/d891e7-a58087@github.com>
Subject: [quicwg/base-drafts] 455fb9: Migration with zero-length CID is inadvisable
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/W3So9niBH6jVq90Hq0LuAYPC3bA>
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: Thu, 14 May 2020 07:34:40 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 455fb9734d268aa02bbd69bd7f62ca7a16b1fdc4
      https://github.com/quicwg/base-drafts/commit/455fb9734d268aa02bbd69bd7f62ca7a16b1fdc4
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-01 (Wed, 01 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Migration with zero-length CID is inadvisable

Closes #3559.


  Commit: caf949d0d2c0f00f614205644b9895d2a63011cd
      https://github.com/quicwg/base-drafts/commit/caf949d0d2c0f00f614205644b9895d2a63011cd
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-01 (Wed, 01 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Wordz is harrd


  Commit: 492c09329130b5524b5eaa2dfd409d2ca3070901
      https://github.com/quicwg/base-drafts/commit/492c09329130b5524b5eaa2dfd409d2ca3070901
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-15 (Wed, 15 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Two reasons

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 3722988b7c139c915092397bec3cdac81d7c12c9
      https://github.com/quicwg/base-drafts/commit/3722988b7c139c915092397bec3cdac81d7c12c9
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-04-14 (Tue, 14 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: Eric Kinnear <32474881+erickinnear@users.noreply.github.com>


  Commit: 8ec6c3ab72ea75f5e2dc07abce7b0640076552f2
      https://github.com/quicwg/base-drafts/commit/8ec6c3ab72ea75f5e2dc07abce7b0640076552f2
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  @DavidSchinazi's suggested text with tweaks


  Commit: 7d5089a754a6cecce519d6c20325ec0adaf65f2e
      https://github.com/quicwg/base-drafts/commit/7d5089a754a6cecce519d6c20325ec0adaf65f2e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Use a different example


  Commit: d29840a2953c9f87abbe8c4838b58934ee46de9a
      https://github.com/quicwg/base-drafts/commit/d29840a2953c9f87abbe8c4838b58934ee46de9a
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  CIDs are requested in this context

Co-authored-by: ekr <ekr@rtfm.com>


  Commit: b400f0946ee8770b9432ae6f38ca80b479bd17a7
      https://github.com/quicwg/base-drafts/commit/b400f0946ee8770b9432ae6f38ca80b479bd17a7
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  reflow


  Commit: a5808755ed1e14268de646e8de5ae4125b2b2d49
      https://github.com/quicwg/base-drafts/commit/a5808755ed1e14268de646e8de5ae4125b2b2d49
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3563 from quicwg/link-preferred-address

Migration with zero-length CID is inadvisable


Compare: https://github.com/quicwg/base-drafts/compare/d891e7d79138...a5808755ed1e


From nobody Thu May 14 00:34:57 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 D8D153A03F6 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:34:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 PDUdu6m1KoAx for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:34:39 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0C0363A03F7 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:34:39 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id E2F08E1649 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:34:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441677; bh=X9bbZjn8j0F8/0nwC73wztUvnqiD6OIi9yofqgcYhfE=; h=Date:From:To:Subject:From; b=iGXpygcjcUyOni9msSTXSDvl38bEenBCCueJjjgImz2ei2rBlj7mT6Tt/R/Rr0L3y 7AjWA1tlJc4L1DJU0GQH95co/tzdEYzfyRc6CFMk3EYabcVYcfULy43i+oNI9WIGng dxsLKiSpGBH0KqsjWmsBdatDXPPA7Q0/CzjQHAHs=
Date: Thu, 14 May 2020 00:34:37 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/link-preferred-address/b400f0-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-EddTjvb-bqBU996uIwtdYL61X0>
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: Thu, 14 May 2020 07:34:41 -0000

  Branch: refs/heads/link-preferred-address
  Home:   https://github.com/quicwg/base-drafts


From nobody Thu May 14 00:35:03 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 43ECC3A03FE for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:34:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.723
X-Spam-Level: 
X-Spam-Status: No, score=-1.723 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 obptfk3QHcoL for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:34:47 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D36713A03F6 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:34:46 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id B4A2A6E0A04 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:34:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441685; bh=hMQtmEVksnUBWRGclf5gPNlexmEkR5C+rxTueb/CG0k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tv7gvG1c5dlkVQykH3ONUKbhFPJy/rYYwPQ9ywjNHuvoVR2n5kenhPT6raipNBYSc 6yAyqAixZ9n9qmqcIGnLJmnFP5rO0LOhXvV2gjGgMgETNH885s6ay5yZjepVO05TxV Lrt1G9b2s13INjP/+6tp0z7GicfLXpBVgJwyh3e4=
Date: Thu, 14 May 2020 00:34:45 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6KEVCGPR4RHM6E4YN4ZDKZLEVBNHHCGNJGZU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3559/issue_event/3335241850@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3559@github.com>
References: <quicwg/base-drafts/issues/3559@github.com>
Subject: Re: [quicwg/base-drafts] Linkability with preferred_address usage (#3559)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcf495a5787_54743ffbd00cd96870245"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Hrc4giVLyA6rCsmfLWeVWOhkLlk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:34:48 -0000

----==_mimepart_5ebcf495a5787_54743ffbd00cd96870245
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3559 via #3563.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3559#event-3335241850
----==_mimepart_5ebcf495a5787_54743ffbd00cd96870245
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="590685901" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3559" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3559/hovercard" href="https://github.com/quicwg/base-drafts/issues/3559">#3559</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="591503220" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3563" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3563/hovercard" href="https://github.com/quicwg/base-drafts/pull/3563">#3563</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3559#event-3335241850">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4REWU2TUDRS3DSRVLRRONJLANCNFSM4LXDOFMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2R7NIKLNZVBEDCR53RRONJLA5CNFSM4LXDOFM2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY3F4A6Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3559#event-3335241850",
"url": "https://github.com/quicwg/base-drafts/issues/3559#event-3335241850",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcf495a5787_54743ffbd00cd96870245--


From nobody Thu May 14 00:35:07 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 677ED3A03F6 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:34:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 gGzWdFJpyHM5 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:34:47 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 431523A03F7 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:34:47 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 92972C610C5 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:34:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441686; bh=D7xtYggB09gdv+2HG9pxfpIqiQAzQD9dNSN6yGzwN3Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=G1qbHk1OVt32VBxUgDovCvhZwKznZ+c3zK4/VN8hv86/w/sNRjMaINXMQUTSdeciD vyN7SMceKUS6cp9bKbYide7NV8R0lQJz8G8CYN9/48ejeURO4asLhgK/QKkYyRvaRP Biq4480GgmHFfeAwOzrS0+oIpqDNJ+dMLJR3CGxo=
Date: Thu, 14 May 2020 00:34:46 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK76LIRRNNRKOY5FNNV4ZDKZNEVBNHHCGQM7OQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3563/issue_event/3335241840@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3563@github.com>
References: <quicwg/base-drafts/pull/3563@github.com>
Subject: Re: [quicwg/base-drafts] Migration with zero-length CID is inadvisable (#3563)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcf49681497_7b993fc45a4cd96c922c9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ubP1J6n5xZjlqvD_HLC75ecG6gE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:34:49 -0000

----==_mimepart_5ebcf49681497_7b993fc45a4cd96c922c9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3563 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3563#event-3335241840
----==_mimepart_5ebcf49681497_7b993fc45a4cd96c922c9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="591503220" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3563" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3563/hovercard" href="https://github.com/quicwg/base-drafts/pull/3563">#3563</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3563#event-3335241840">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6N2B6E3WY34QUTPZDRRONJNANCNFSM4LYEVEVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5FFP4BET7HCZE5Y6TRRONJNA5CNFSM4LYEVEV2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY3F4A4A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3563#event-3335241840",
"url": "https://github.com/quicwg/base-drafts/pull/3563#event-3335241840",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcf49681497_7b993fc45a4cd96c922c9--


From nobody Thu May 14 00:35:13 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 606C93A0437 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 7NqxxKPW-blm for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:00 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 04FD53A0408 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:34:59 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 3F2F56E124D for <quic-issues@ietf.org>; Thu, 14 May 2020 00:34:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441699; bh=BuY7wt0Zt1bbbV/Xs7y6RAcggXsEAg3YVHYxZaZJVMw=; h=Date:From:To:Subject:From; b=Z6e6y57xchlcdtdHHxYeNB2uI+XOwY4ADCt4LsqH2b+f34CPyqthgOjCViPRQVXvn vL/ctQ7vBO5hKaytPakhB4mJ8i9PsdZ/Us0jNRi93GPNPaybPgdFd3tUJfkR5Bfatx 9fIFpxPZcecIVcpTx1Rbo8Wf9viEzdoICV1S6NtU=
Date: Thu, 14 May 2020 00:34:59 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/preferred_ncid/021b3c-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kmMFWaNsDCwXoEpwcf8Fa-V1zoY>
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: Thu, 14 May 2020 07:35:01 -0000

  Branch: refs/heads/preferred_ncid
  Home:   https://github.com/quicwg/base-drafts


From nobody Thu May 14 00:35:16 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 C38D73A0418 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 RvoEHes7dUrQ for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:00 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 10F8F3A0544 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:00 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 5084E6605A7 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:34:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441699; bh=k7IQRNoqN4vRnHK6PtaAiZiUiu+fcCToAqN7VxlHchw=; h=Date:From:To:Subject:From; b=HXxBEkgHgIN/aMdVmUEohR9kTiW5qA92rMYGUtQMsZVTcrBgauWlBALCRKhKJMzbO HLuVSdjumzVFJqx6lnB0Z9I7+OsSGcPG/GtqSaJmHjPFRnhSQD1MPrDGDpMQc4iAq8 QaF5ddP6kDaS9PwJVp9nBre48pXNpYNf4CZ9Sl/E=
Date: Thu, 14 May 2020 00:34:59 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/a58087-575154@github.com>
Subject: [quicwg/base-drafts] 021b3c: Forbid zero-length connection ID with preferred ad...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kqlVFO0KsSu6kgFXRqBJ20zuAzU>
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: Thu, 14 May 2020 07:35:03 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 021b3cf00ab4be427f0b9f20b7d1b9a5cb6ab059
      https://github.com/quicwg/base-drafts/commit/021b3cf00ab4be427f0b9f20b7d1b9a5cb6ab059
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-07 (Tue, 07 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Forbid zero-length connection ID with preferred addresses

This is option 4 from the discussion in #3560.  That is, making
preferred_address equivalent to NEW_CONNECTION_ID with a sequence number
of 1 in every way that matters.

Closes #3560.


  Commit: 5751547629523cc0e6be3ded9cf80d0083174059
      https://github.com/quicwg/base-drafts/commit/5751547629523cc0e6be3ded9cf80d0083174059
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3565 from quicwg/preferred_ncid

Forbid zero-length connection ID with preferred addresses


Compare: https://github.com/quicwg/base-drafts/compare/a5808755ed1e...575154762952


From nobody Thu May 14 00:35:20 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 35FF03A03F7 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 0fLnIIxPvxbJ for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:09 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CB01A3A0400 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:08 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 2CB7D9602AF for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441708; bh=cqyWhkOc9u/pNpsfSxOkGM5QnzEds0XNaxEM8V87Uo0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pzAleHb+RWB8QXl3TUJdaaOR/rOjYrJtxdEhPne4igGLr8RJGoXXNvBG9hDWyXbGn 7XHJniDs8Y6djpu9KxZJduxSqrkIPYgI00ukIhYS666J2sOoFCDN0wkXDJ4gJK5yvA 9GTEQx8ElFsEwVqz3aTxkIbZNJRsZbQaA8iXwrMs=
Date: Thu, 14 May 2020 00:35:08 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6VE6MGIVDZFNO5HE54ZDK2ZEVBNHHCGNJIQI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3560/issue_event/3335243014@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3560@github.com>
References: <quicwg/base-drafts/issues/3560@github.com>
Subject: Re: [quicwg/base-drafts] Equivalence of preferred_address and NEW_CONNECTION_ID (#3560)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcf4ac1dd44_589b3fbf120cd968746f8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9XvRyjSsmTq2TwuzD9JZ65oBDns>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:35:10 -0000

----==_mimepart_5ebcf4ac1dd44_589b3fbf120cd968746f8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3560 via #3565.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3560#event-3335243014
----==_mimepart_5ebcf4ac1dd44_589b3fbf120cd968746f8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="590686338" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3560" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3560/hovercard" href="https://github.com/quicwg/base-drafts/issues/3560">#3560</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="595642576" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3565" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3565/hovercard" href="https://github.com/quicwg/base-drafts/pull/3565">#3565</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3560#event-3335243014">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3YEOOIFKUG7PV3CHTRRONKZANCNFSM4LXDO62Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7X5W6WYBMJBMIYFCLRRONKZA5CNFSM4LXDO622YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY3F4KBQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3560#event-3335243014",
"url": "https://github.com/quicwg/base-drafts/issues/3560#event-3335243014",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcf4ac1dd44_589b3fbf120cd968746f8--


From nobody Thu May 14 00:35:24 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 5C69C3A03F7 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 iQmuT0UfGKSK for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:08 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D2B533A0407 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:08 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 2E34EC60592 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441708; bh=yrjh8PUfyNtwjGizX8O/wuMK0cUVxBGg9WW50QpaQwU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=abKm2yKenRGn9AqJ3GD2zbfRKAGlefW5YQ090p9XPp3NmZWiP7rww7WnpYHFvPm1H EKJW+BM90JAnxpdWxsdqr9tOeDFx1UUM0wMJDzvD1MqSSa9l/76EmM0Auv0exbJt17 /chAiwKrvCALaH8Uodh5fnt7OT05+dYYVRvgMImY=
Date: Thu, 14 May 2020 00:35:08 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5CL7TVTDR4GKKJBPF4ZDK2ZEVBNHHCHAGI2A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3565/issue_event/3335243004@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3565@github.com>
References: <quicwg/base-drafts/pull/3565@github.com>
Subject: Re: [quicwg/base-drafts] Forbid zero-length connection ID with preferred addresses (#3565)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcf4ac1f65b_588c3fbf120cd968884fc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HFWIQ_j94H93Xp5Jt_66A70N1jI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:35:11 -0000

----==_mimepart_5ebcf4ac1f65b_588c3fbf120cd968884fc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3565 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3565#event-3335243004
----==_mimepart_5ebcf4ac1f65b_588c3fbf120cd968884fc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="595642576" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3565" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3565/hovercard" href="https://github.com/quicwg/base-drafts/pull/3565">#3565</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3565#event-3335243004">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYPKP4O5QKUJQSK35LRRONKZANCNFSM4MC3YE4A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK36ZG34A6G42APO7MTRRONKZA5CNFSM4MC3YE4KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY3F4J7A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3565#event-3335243004",
"url": "https://github.com/quicwg/base-drafts/pull/3565#event-3335243004",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcf4ac1f65b_588c3fbf120cd968884fc--


From nobody Thu May 14 00:35:32 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 3C68F3A0407 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 dhutd0Wc-Wj3 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:17 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EFEA73A065A for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:16 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 4BE81A0A93 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441716; bh=7aZGpzG0TCbYKWwBLBTc4BASlnNhChj4VMYUDvWx+nQ=; h=Date:From:To:Subject:From; b=tc0a+Ysi2f/IkS993TF6ARei2pHnimlSqZDStYGDnjaiDQKkJKuD5kOjsMQiUrHZG JNDI+CZLikNMWze7E4jE69VJVaki0sqN+hMe31jc5jPkH6N8LBJQ0oYoAz18wHOSkF Q4MSf4Dbz0sbgJjI2mh7gGd3/v1GErqKEb7AZH4c=
Date: Thu, 14 May 2020 00:35:16 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/575154-53dc23@github.com>
Subject: [quicwg/base-drafts] d4baa8: Prohibit TLS 1.3 middlebox compatibility mode
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/d8y5urlhckWblCgwt4r_jG8v5Fo>
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: Thu, 14 May 2020 07:35:18 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: d4baa8a6c01f5d30ff0c145693bd257717b59e2e
      https://github.com/quicwg/base-drafts/commit/d4baa8a6c01f5d30ff0c145693bd257717b59e2e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-23 (Thu, 23 Apr 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Prohibit TLS 1.3 middlebox compatibility mode

Closes #3594.


  Commit: cf939cc1e1dd4c40e46856fb335c8208c4a23b5e
      https://github.com/quicwg/base-drafts/commit/cf939cc1e1dd4c40e46856fb335c8208c4a23b5e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-23 (Thu, 23 Apr 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Servers don't have to enforce


  Commit: 3a633d8b22eb2a850b4fed0d7a1e339186885830
      https://github.com/quicwg/base-drafts/commit/3a633d8b22eb2a850b4fed0d7a1e339186885830
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  reference legacy_session_id directly

Co-authored-by: ekr <ekr@rtfm.com>


  Commit: 6a4c95ef0487b3dcfa012330590c6fb1e168c670
      https://github.com/quicwg/base-drafts/commit/6a4c95ef0487b3dcfa012330590c6fb1e168c670
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  You can't carry CCS anyway


  Commit: 53dc234ddceb48d1d3f19c65effbc0c3897e0d79
      https://github.com/quicwg/base-drafts/commit/53dc234ddceb48d1d3f19c65effbc0c3897e0d79
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #3595 from quicwg/tls-compat-mode

Prohibit TLS 1.3 middlebox compatibility mode


Compare: https://github.com/quicwg/base-drafts/compare/575154762952...53dc234ddceb


From nobody Thu May 14 00:35:36 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 D29913A0400 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 Bn9q4oS3h0qj for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:17 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ACDE93A03F7 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:17 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 0C780520476 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441717; bh=bLweW46W/drwWdRi3rOmQSj7zu8B2nkYBrRR1Db1AbM=; h=Date:From:To:Subject:From; b=K3wAzSth36Y6dXpCDX5yLyoEpHDYkZX+A/JjOi6lpmegYYe6RWkHUhcnEpaM6y7xl LvqofakzL4//BzSv9tQsuZzN8IYrptGpnqA4R07PNzzqZoAOH/NVsqOhsoNu5uUOMY LULi+U7oCX4XBjhhEfNeUH9Ke3M/sCo4A3vMvwuk=
Date: Thu, 14 May 2020 00:35:16 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/tls-compat-mode/6a4c95-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0Hjl9DCZWBakOXDTXdClzVuW9UI>
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: Thu, 14 May 2020 07:35:19 -0000

  Branch: refs/heads/tls-compat-mode
  Home:   https://github.com/quicwg/base-drafts


From nobody Thu May 14 00:35:42 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 5D5A33A065A for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.178
X-Spam-Level: 
X-Spam-Status: No, score=-2.178 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ByHH70mVoztX for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:29 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 411523A0765 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:27 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 8AEB2E0931 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441726; bh=cfrYzJk1Amfq4xVD0pKwAflXhqRD5inS1B0OtTCXeg4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DLiMzQF/dWpp+Q/nSfGiyRmPiGFEQidHPjK7koAh60Mtrqbtq2rp5JhTlBS6Om7u7 QY165FVl2LDDq/1FkSErMdNPXoRW5j/8LDgKASSPnyW8nrQuZL2eJZrnkrywZ8ZMAx RE8JK/6sHprHWQ4020QqiQPUE1WZfJETVnb9WDDQ=
Date: Thu, 14 May 2020 00:35:26 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5BUFTR4NCRHDZAFAF4ZDK35EVBNHHCIEMPUI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3595/issue_event/3335244072@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3595@github.com>
References: <quicwg/base-drafts/pull/3595@github.com>
Subject: Re: [quicwg/base-drafts] Prohibit TLS 1.3 middlebox compatibility mode (#3595)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcf4be7977d_40f73fca7c2cd96410118e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vWKyaz3L0mMZsFj9YYRqa8nmCkU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:35:36 -0000

----==_mimepart_5ebcf4be7977d_40f73fca7c2cd96410118e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3595 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3595#event-3335244072
----==_mimepart_5ebcf4be7977d_40f73fca7c2cd96410118e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="605130658" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3595" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3595/hovercard" href="https://github.com/quicwg/base-drafts/pull/3595">#3595</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3595#event-3335244072">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZSJNPCKRA4OZB35PDRRONL5ANCNFSM4MOSTQXQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2AEWDCOQNMWRDOK4LRRONL5A5CNFSM4MOSTQX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY3F4SKA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3595#event-3335244072",
"url": "https://github.com/quicwg/base-drafts/pull/3595#event-3335244072",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcf4be7977d_40f73fca7c2cd96410118e--


From nobody Thu May 14 00:35:45 2020
Return-Path: <bounces+848413-a050-quic-issues=ietf.org@sgmail.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 025FF3A0542 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.726
X-Spam-Level: 
X-Spam-Status: No, score=-1.726 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, UNPARSEABLE_RELAY=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 iAGRJ2blZ1ZQ for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:35:30 -0700 (PDT)
Received: from o11.sgmail.github.com (o11.sgmail.github.com [167.89.101.202]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A30D03A07A0 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=PqfCR2Z1x+iOIW5k/tTQeCXTm53yuJfZTmiQaTUP0RY=; b= lHX3x6jMoq0uUzeDxZsXOrHk4L+RA31wwd6UTg+m9f/zXurq8x9GpUXYYB3rhMzA eRfAvUdgUqUxBSLuBTrrEiiNeKFo1YgCWowChLEaZox3Io1mAUoMUD96pcx+1x4t MozuvBEfLKUbiynxP9U//iszfJw4UUuJgsUZ+YcjXmc=
Received: by filter1272p1las1.sendgrid.net with SMTP id filter1272p1las1-20979-5EBCF4BF-9 2020-05-14 07:35:27.204909468 +0000 UTC m=+2443256.222188691
Received: from out-27.smtp.github.com (unknown) by ismtpd0092p1mdw1.sendgrid.net (SG) with ESMTP id 3fI7ljKQQcmD5DOltJviNg for <quic-issues@ietf.org>; Thu, 14 May 2020 07:35:27.152 +0000 (UTC)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id A3672E02D2 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:26 -0700 (PDT)
Date: Thu, 14 May 2020 07:35:27 +0000 (UTC)
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY5NDRRNWLUMQCIXJV4ZDK35EVBNHHCIEKOAA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3594/issue_event/3335244079@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3594@github.com>
References: <quicwg/base-drafts/issues/3594@github.com>
Subject: Re: [quicwg/base-drafts] Prohibit TLS middlebox compatibility mode (#3594)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebcf4be91777_5a2f3fef540cd964463fb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak0a4KJoSI4M7JaEiVyqRms65I6uKS1GXgMcvx 2uaXhsAeNp2pZDdltyZV+K+FZzKR7J9spIGZ8PrrVM5/sRPS2xIHlKHaDpaSTnL1TnuNL4kE6FOoFw ZZ0YDk0b8Zk+bpZZqXxKdVbW5z3tVoBh9ActPDtNEbvRdVtBXZGMit0hpdLUWBVZzbyIh6pDGaQzv9 Y=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/acAW7tBQSd8439MoGywCDFj_5d4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 07:35:38 -0000

----==_mimepart_5ebcf4be91777_5a2f3fef540cd964463fb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3594 via #3595.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3594#event-3335244079
----==_mimepart_5ebcf4be91777_5a2f3fef540cd964463fb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="605113856" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3594" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3594/hovercard" href="https://github.com/quicwg/base-drafts/issues/3594">#3594</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="605130658" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3595" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3595/hovercard" href="https://github.com/quicwg/base-drafts/pull/3595">#3595</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3594#event-3335244079">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2PC2ACSFB3AR2SDGLRRONL5ANCNFSM4MOR3ITA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4HHCKGAPUYE4VRE6TRRONL5A5CNFSM4MOR3ITKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY3F4SLY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3594#event-3335244079",
"url": "https://github.com/quicwg/base-drafts/issues/3594#event-3335244079",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebcf4be91777_5a2f3fef540cd964463fb--


From nobody Thu May 14 00:36:02 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 C790D3A03FF for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:36:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 8uLpJV8mkDKH for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:36:00 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A92543A0542 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:51 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 0A6888C0911 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:35:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441751; bh=MBD0g08lFQemJqAMWFQdz8NIFhjGQw36zSxwt5/7sPU=; h=Date:From:To:Subject:From; b=1dKAHrInGeNqJxYlJt3Utq6KelM23VdxrmGgFsxJPF7r9S8DCGUowUhlN5K42zvRH IMli76DbQE+TThWgj7pa3S3mBvhRFl6VRgsBFZbL43EEixk40XCMt1Dl1TiiAedK9/ TWyVeq6BIHlZ2XTxcj4nnnLwYht5DF06AcaMEM2s=
Date: Thu, 14 May 2020 00:35:50 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/cb8c91-3620ce@github.com>
Subject: [quicwg/base-drafts] 3620ce: Script updating gh-pages from a5808755. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/J4W_NpywXjc1wuandNEnCQl41KM>
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: Thu, 14 May 2020 07:36:02 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3620cee2605c8ba16f0e99ad76728c8c49c9f259
      https://github.com/quicwg/base-drafts/commit/3620cee2605c8ba16f0e99ad76728c8c49c9f259
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from a5808755. [ci skip]



From nobody Thu May 14 00:36:13 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 1C0133A0762 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:36:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 fQQux79b_nEK for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:36:09 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0A7683A0764 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:36:09 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 23A6A8C0086 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:36:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441768; bh=G6v+bbGPkWDU9t8tAfIqzgcYE9ZhnQrTE8fbU/DHtbY=; h=Date:From:To:Subject:From; b=Bd+t6tZsfNLdJUGmTL1JqvCungYr8/TmNPmz+4LuU5sBSMQLy8cIo9EootbuoxXE3 /ISAW7NtJSgltVXlV6q6/IhbVzY8slgkK9/SaztJgT89wp/WNEFmXw7j7zH9a8Cz+M jwZ7w1pyb2wVDrCIMjAT02EfvVcjKnPIiTbgq9aE=
Date: Thu, 14 May 2020 00:36:08 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3620ce-b8a66b@github.com>
Subject: [quicwg/base-drafts] b8a66b: Script updating gh-pages from 57515476. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kGUtoqDvOKn7oDD0iSVevK1mBb4>
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: Thu, 14 May 2020 07:36:12 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b8a66bef13ea1ca557923a8887d2a41a20af9639
      https://github.com/quicwg/base-drafts/commit/b8a66bef13ea1ca557923a8887d2a41a20af9639
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 57515476. [ci skip]



From nobody Thu May 14 00:36:28 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 21BE03A03F7 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:36:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 R_R9DY2bWzfR for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 00:36:24 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 72E7A3A03F6 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:36:24 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id BB78CC60057 for <quic-issues@ietf.org>; Thu, 14 May 2020 00:36:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589441783; bh=dfimBlt6ittKNH6+dln4A1NSv63EaIsh1SLp3c8BRpA=; h=Date:From:To:Subject:From; b=SwxUtGyZIZXeOdLaL3IhMM5eI2B2DOm3El/exs7JDXzUB8nyAXx+TfAz3Z4saJ6dZ 64Y2/03144NTEfk9L1yb0hyCFI3uuMtYJCqrIF1M3/RVRxGxvAep//RTszBKz42p1X 2T8k2i/veV6Wy95eLcNw9SBxzIGRNy3DZZjGLSVU=
Date: Thu, 14 May 2020 00:36:23 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b8a66b-992140@github.com>
Subject: [quicwg/base-drafts] 3620ce: Script updating gh-pages from a5808755. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PrhqQdSSm7LMtNlbDYQ4APOBfs0>
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: Thu, 14 May 2020 07:36:26 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3620cee2605c8ba16f0e99ad76728c8c49c9f259
      https://github.com/quicwg/base-drafts/commit/3620cee2605c8ba16f0e99ad76728c8c49c9f259
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from a5808755. [ci skip]


  Commit: 992140d6b4edcb55916295086559c330db7dd8a1
      https://github.com/quicwg/base-drafts/commit/992140d6b4edcb55916295086559c330db7dd8a1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 53dc234d. [ci skip]


Compare: https://github.com/quicwg/base-drafts/compare/b8a66bef13ea...992140d6b4ed


From nobody Thu May 14 03:11:30 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 3E7F93A07A4 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 03:11:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.726
X-Spam-Level: 
X-Spam-Status: No, score=-1.726 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 sqi8TvGwPoBr for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 03:11:28 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DEDF53A0771 for <quic-issues@ietf.org>; Thu, 14 May 2020 03:11:27 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 224F88C0FCD for <quic-issues@ietf.org>; Thu, 14 May 2020 03:11:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589451086; bh=QyBprJWoreqFeKw+kInRqT8ZPvAbFFMtJ5IJyxOwriA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=K9ZFo4qk48UPd2ZKzFmyegB1/yvaeyDe//eukKrfsACa1wnUOrb2zLeNSyRNFHYyK +l7IhaPIQtXHb2q5iy11ZITWeHDrmE/suUuHsMEoQQbEpOKCD5TPRdyf5mcOrvtrRw Xlv4HAevh2JubAi7RTIkJ8WQ36Gf0p292ZriVkp8=
Date: Thu, 14 May 2020 03:11:26 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5Q5UGK3HATSATO7S54ZD5E5EVBNHHCJV4BLE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3656@github.com>
Subject: [quicwg/base-drafts] fix MUST not in CRYPTO frame handling (#3656)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebd194e12588_28013fc5364cd96c28256b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eZLgCIVwZ1UwnIUAEsqOWC3Ps7I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 10:11:29 -0000

----==_mimepart_5ebd194e12588_28013fc5364cd96c28256b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3656

-- Commit Summary --

  * fix MUST not in CRYPTO frame handling

-- File Changes --

    M draft-ietf-quic-tls.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3656.patch
https://github.com/quicwg/base-drafts/pull/3656.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3656

----==_mimepart_5ebd194e12588_28013fc5364cd96c28256b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3656'>https://github.com/quicwg/base-drafts/pull/3656</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>fix MUST not in CRYPTO frame handling</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3656/files#diff-afdf56cd6ee6d10d94d669541f99bc07">draft-ietf-quic-tls.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3656.patch'>https://github.com/quicwg/base-drafts/pull/3656.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3656.diff'>https://github.com/quicwg/base-drafts/pull/3656.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3656">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY7JOZ7ALCMXBRWLPTRRO7U5ANCNFSM4NARQNSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7BGKQIXAWBWJ7BWJ3RRO7U5A5CNFSM4NARQNSKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JGXQFMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3656",
"url": "https://github.com/quicwg/base-drafts/pull/3656",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebd194e12588_28013fc5364cd96c28256b--


From nobody Thu May 14 05:53:58 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 B4DE63A0A02 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 05:53:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.726
X-Spam-Level: 
X-Spam-Status: No, score=-1.726 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 DP6QaT3o9a3m for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 05:53:56 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4E9033A0A00 for <quic-issues@ietf.org>; Thu, 14 May 2020 05:53:56 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 7AEAC6A11B7 for <quic-issues@ietf.org>; Thu, 14 May 2020 05:53:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589460835; bh=AiEIE4ehE9dYW+6A5YibzhC+WIOZ5qs7XEV52I+gpA4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=msObcDxgf8Y4phFZKRPM9OhSW+Fpp3Dqvbqhux7fC3s7FFCDDXX+P/WA+N60n2Dsi XhWt9HpMKqgl+ENiHvpnsM8LSlzF4ngDeZib/9402XDZtdMM2sqCowXYieuLyvXiUz 0OOpWeYVbgRuQWdKle3mqoq4BYhVks1w+RDTBJgk=
Date: Thu, 14 May 2020 05:53:55 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYTHWLJUSERDBCY6UF4ZEQGHEVBNHHCJWIUEQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3657@github.com>
Subject: [quicwg/base-drafts] Fix verb number and a typo in the QPACK draft (#3657)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebd3f636ab6a_6d6f3f89484cd9641502f6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8jyPgjJ4GNKjmmEbfy-4afkUXAk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 12:53:58 -0000

----==_mimepart_5ebd3f636ab6a_6d6f3f89484cd9641502f6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3657

-- Commit Summary --

  * Fix verb number and a typo in the QPACK draft

-- File Changes --

    M draft-ietf-quic-qpack.md (4)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3657.patch
https://github.com/quicwg/base-drafts/pull/3657.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3657

----==_mimepart_5ebd3f636ab6a_6d6f3f89484cd9641502f6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3657'>https://github.com/quicwg/base-drafts/pull/3657</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Fix verb number and a typo in the QPACK draft</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3657/files#diff-c3ed24528f71fade042cdefbeadbd7b9">draft-ietf-quic-qpack.md</a>
    (4)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3657.patch'>https://github.com/quicwg/base-drafts/pull/3657.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3657.diff'>https://github.com/quicwg/base-drafts/pull/3657.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3657">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4ELJTNUAVIXFTWGZ3RRPSWHANCNFSM4NAVD5VQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZHJOGAJJ5VV7EQEBTRRPSWHA5CNFSM4NAVD5V2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JGZCQSA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3657",
"url": "https://github.com/quicwg/base-drafts/pull/3657",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebd3f636ab6a_6d6f3f89484cd9641502f6--


From nobody Thu May 14 06:01:37 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 E6A0B3A0A10 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 06:01:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.723
X-Spam-Level: 
X-Spam-Status: No, score=-1.723 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 EWGNDEACF-Fv for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 06:01:32 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 70DF73A098A for <quic-issues@ietf.org>; Thu, 14 May 2020 06:01:32 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 4D7F86E1F46 for <quic-issues@ietf.org>; Thu, 14 May 2020 06:01:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589461291; bh=wrTOtR7aAz3QehDxMYoJvy+UxcdSmfDK9RFzoxXivl0=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Ey1LfolTI9NS4JkKZIyAS34VeaJHoViL8hFj4Y5PfDzobFjLe3P+rcJlGGaxL8Zkl MRwPKnIZ7xkcMvE4wXO+7vmIgRJAbjXiQRfuub5r952eTYBj7DnXAnd6B/0f4l5B8N 8g/B9gLlLcvjw65YnHqry5Ta3PciBA/wVqCbdTTo=
Date: Thu, 14 May 2020 06:01:31 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK454BEPCTCCQ33NKQF4ZERCXEVBNHHCJWJJZA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3658@github.com>
Subject: [quicwg/base-drafts] Fix two typos in the transport draft (#3658)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebd412b3be4c_31983f99130cd96057410"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/17uwRR1l_97VuOI_lBkJHVigdLY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 13:01:35 -0000

----==_mimepart_5ebd412b3be4c_31983f99130cd96057410
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3658

-- Commit Summary --

  * Fix two typos in the transport draft

-- File Changes --

    M draft-ietf-quic-transport.md (4)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3658.patch
https://github.com/quicwg/base-drafts/pull/3658.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3658

----==_mimepart_5ebd412b3be4c_31983f99130cd96057410
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3658'>https://github.com/quicwg/base-drafts/pull/3658</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Fix two typos in the transport draft</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3658/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (4)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3658.patch'>https://github.com/quicwg/base-drafts/pull/3658.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3658.diff'>https://github.com/quicwg/base-drafts/pull/3658.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3658">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZNYRHNHLAJSA6PEPTRRPTSXANCNFSM4NAVJOIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7NDZ7FTYSRS7BSWCDRRPTSXA5CNFSM4NAVJOIKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JGZFHEA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3658",
"url": "https://github.com/quicwg/base-drafts/pull/3658",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebd412b3be4c_31983f99130cd96057410--


From nobody Thu May 14 06:03:33 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 4F9003A0A02 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 06:03:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.726
X-Spam-Level: 
X-Spam-Status: No, score=-1.726 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 f-KClfivMzmN for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 06:03:31 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E55273A098A for <quic-issues@ietf.org>; Thu, 14 May 2020 06:03:30 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 6B351961201 for <quic-issues@ietf.org>; Thu, 14 May 2020 06:03:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589461409; bh=aIGq3lFOWO/Jx4o33Vaxi22Yrk3T+Sap4NmRKWrrp7Y=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=JWHB3xBQewpZa1kL/W2WsriKD3C7unoSGBep+dNmtbBzD9aySFHXCi3opPmDGtkvd y0EmoTAPJt1Xl9k/UwjbnB5+LRX6O2HmuO4bKq7GpnsiVjwj4KakGn0PrLK9dMBs3h VNwgmZKf0zCJBshvCmAWl9OC/iSRzetMslBN922I=
Date: Thu, 14 May 2020 06:03:29 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4VZCCCT5B4VBUJ7IV4ZERKDEVBNHHCJWJPJM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3659@github.com>
Subject: [quicwg/base-drafts] Fix name of the Transport Parameter Length field (#3659)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebd41a15bebc_19d63ff0502cd960183675"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/taAN7Oxk0lsc_h87RIBrYEQURR8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 13:03:32 -0000

----==_mimepart_5ebd41a15bebc_19d63ff0502cd960183675
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

(It&#39;s &quot;Parameter,&quot; not &quot;Param.&quot;)
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3659

-- Commit Summary --

  * Fix name of the Transport Parameter Length field

-- File Changes --

    M draft-ietf-quic-transport.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3659.patch
https://github.com/quicwg/base-drafts/pull/3659.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3659

----==_mimepart_5ebd41a15bebc_19d63ff0502cd960183675
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>(It's "Parameter," not "Param.")</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3659'>https://github.com/quicwg/base-drafts/pull/3659</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Fix name of the Transport Parameter Length field</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3659/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3659.patch'>https://github.com/quicwg/base-drafts/pull/3659.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3659.diff'>https://github.com/quicwg/base-drafts/pull/3659.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3659">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ST2Z6FZXY6IZ7D3TRRPT2DANCNFSM4NAVLZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK47LRUAIJOSMWFUD5LRRPT2DA5CNFSM4NAVLZ6KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JGZF5FQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3659",
"url": "https://github.com/quicwg/base-drafts/pull/3659",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebd41a15bebc_19d63ff0502cd960183675--


From nobody Thu May 14 06:06:36 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 A2ABD3A0A03 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 06:06:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 GdYN43jUozya for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 06:06:34 -0700 (PDT)
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 AE2303A0A02 for <quic-issues@ietf.org>; Thu, 14 May 2020 06:06:34 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id E53FB282A47 for <quic-issues@ietf.org>; Thu, 14 May 2020 06:06:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589461592; bh=UIWhxEfvDHkJSj1IsSOpxcMIPuoyDCg3ZWYnz+Rsc+s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FSgucQC5czCUKizNNsvonq7OTQD11YhGCYL2i1Wi7vMqZw4c+i5sSbktaKe7ExtrJ U0QpqDgrTdhOLLD1P3AV00h/83TyOupgEW9C6tWYeXrNYtyAn14w56hKtP1SAmX/n+ vsyBB/olChtLXebc90JDx+YgGiRl9C/ZjiO9ScNw=
Date: Thu, 14 May 2020 06:06:32 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7UZBWKO37IBNQZGYF4ZERVREVBNHHCJWJJZA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3658/review/411782989@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3658@github.com>
References: <quicwg/base-drafts/pull/3658@github.com>
Subject: Re: [quicwg/base-drafts] Fix two typos in the transport draft (#3658)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebd4258d6951_503c3fef4aecd9601944d5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/f1qvaVEAObqRdeem0USo0mPZujE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 13:06:36 -0000

----==_mimepart_5ebd4258d6951_503c3fef4aecd9601944d5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3658#pullrequestreview-411782989
----==_mimepart_5ebd4258d6951_503c3fef4aecd9601944d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3658#pullrequestreview-411782989">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7LN6QZN2BEKVVZ223RRPUFRANCNFSM4NAVJOIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZCJDFAZLGRVSMC6YDRRPUFRA5CNFSM4NAVJOIKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCFU6TI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3658#pullrequestreview-411782989",
"url": "https://github.com/quicwg/base-drafts/pull/3658#pullrequestreview-411782989",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebd4258d6951_503c3fef4aecd9601944d5--


From nobody Thu May 14 06:08:12 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 991323A0A10 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 06:08:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.213
X-Spam-Level: 
X-Spam-Status: No, score=-1.213 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 u54W5eIO8Wr8 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 06:08:08 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5B5E63A0A0A for <quic-issues@ietf.org>; Thu, 14 May 2020 06:08:08 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 7B8468C0A0A for <quic-issues@ietf.org>; Thu, 14 May 2020 06:08:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589461687; bh=CLSLPARuYFnhMWfGh+ZNGIvMVOT5c+sA3aDyxZnJFro=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=aT6A2tAQONIn61NFiSmTOLwlbO+B4n7ccs1aVG+hE8ODCyMv9ZQ8E3N/mQ/jcxtca 027CxWI0p77l3DQQItqffpnjkJJe6hkEOY4c9Il8t39//qJFJXyt8BWn5+i5r9Va+G YyxloCy47eaU4kX51PhsSbIe0Q4zqembz0CRoG2Y=
Date: Thu, 14 May 2020 06:08:07 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3ENVQOMUTXUKL3AY54ZER3PEVBNHHCJV4BLE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3656/review/411784338@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3656@github.com>
References: <quicwg/base-drafts/pull/3656@github.com>
Subject: Re: [quicwg/base-drafts] fix MUST not in CRYPTO frame handling (#3656)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebd42b76ad3e_7fe13fd5304cd96c16405e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nl_QsdyCnaRPByjtn13MQDVaHfw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 13:08:11 -0000

----==_mimepart_5ebd42b76ad3e_7fe13fd5304cd96c16405e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3656#pullrequestreview-411784338
----==_mimepart_5ebd42b76ad3e_7fe13fd5304cd96c16405e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3656#pullrequestreview-411784338">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZUYZWIYAAXE6ZISLRRPULPANCNFSM4NARQNSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2QJNFKW7IE5BYAPLDRRPULPA5CNFSM4NARQNSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCFVJEQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3656#pullrequestreview-411784338",
"url": "https://github.com/quicwg/base-drafts/pull/3656#pullrequestreview-411784338",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebd42b76ad3e_7fe13fd5304cd96c16405e--


From nobody Thu May 14 07:30:28 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 B0F653A0B23 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 07:30:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 CFU8Az-uaAXD for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 07:30:25 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 779A53A0ABB for <quic-issues@ietf.org>; Thu, 14 May 2020 07:30:25 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 882C21C12A4 for <quic-issues@ietf.org>; Thu, 14 May 2020 07:30:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589466624; bh=1HStKRr2fLzAYgr7xhikrI04//7uE6lSvVtanjfYktw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NqE91I0EaLw9RneFoNTLUEkrq23V2DKtfhaf7JcGt/7/ri1fvEcA1gkOnq4JFDZzb 9qOb7JFLszyTNStFWktiEtRgBNfEL73+GwHmaFRJ1CXOPZquWf79//Md46432J3cmd dbV8oTg18IHSZ+8If5/rOJpFX9bucAXk06t37KXc=
Date: Thu, 14 May 2020 07:30:24 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2QEBSJP2RX5YJ3ES54ZE3QBEVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/review/411863809@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebd560078926_2c563fa50b6cd96069542"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/h3cd-4SMT8fkqPAPprbFndvYjJY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 14:30:27 -0000

----==_mimepart_5ebd560078926_2c563fa50b6cd96069542
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> +A NEW_CONNECTION_ID frame might cause an endpoint to add some active connection
+IDs and retire others based on the value of the Retire Prior To field.  After

```suggestion
A NEW_CONNECTION_ID frame might cause an endpoint to add an active connection
ID and retire others based on the value of the Retire Prior To field.  After
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411863809
----==_mimepart_5ebd560078926_2c563fa50b6cd96069542
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ianswett</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3643#discussi=
on_r425182157">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +A NEW_CONNECTION_ID frame might cause an =
endpoint to add some active connection=0D
+IDs and retire others based on the value of the Retire Prior To field.  =
After=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-A NEW_CONNECTION_ID frame might cause an endp=
oint to add some active connection=0D
-IDs and retire others based on the value of the Retire Prior To field.  =
After=0D
+A NEW_CONNECTION_ID frame might cause an endpoint to add an active conne=
ction=0D
+ID and retire others based on the value of the Retire Prior To field.  A=
fter=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3643#pullrequestreview-411863809">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K53QXXIZ5UW2HWOY6LRRP6ABANCNFSM4M6L6D2A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK3UIZPNIUBP2HA6O5LRRP6ABA5CNFSM4=
M6L6D2KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCGIWAI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestrev=
iew-411863809",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview=
-411863809",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebd560078926_2c563fa50b6cd96069542--


From nobody Thu May 14 07:30:54 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 7F6153A0B2B for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 07:30:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.211
X-Spam-Level: 
X-Spam-Status: No, score=-1.211 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 z4k6Txzv5ho5 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 07:30:41 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6488E3A0B9B for <quic-issues@ietf.org>; Thu, 14 May 2020 07:30:41 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id E812E12127C for <quic-issues@ietf.org>; Thu, 14 May 2020 07:30:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589466641; bh=1lpPvOiw+xEawp0CfqSyb4ljYX/f20ztA3EQw+C5pw4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IQ0oDEsw8GQw0AWdQxoMCqAvuui/DbEEQliNHTydd7JRXJ/1TtrGH+9wHXUHJcXLv 6AczXPctS2mCerrgaH1x+SD8VDTDlcimYTanVXGRp+XqC3gd2M3lo/MXvJXTU82Ktr 2pJDCAkLE1oPe/2FLz8kMvwx3TyRZX6PhV7l8nwM=
Date: Thu, 14 May 2020 07:30:40 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZS7YL5W4P7WC5UOX54ZE3RBEVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/review/411864122@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebd5610a30da_1c073f8bb30cd9641244ea"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ruZjXcpbhJorrHDjv3tehurIMnk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 14:30:53 -0000

----==_mimepart_5ebd5610a30da_1c073f8bb30cd9641244ea
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411864122
----==_mimepart_5ebd5610a30da_1c073f8bb30cd9641244ea
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411864122">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3MSQYJA62NWDECXSTRRP6BBANCNFSM4M6L6D2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4H6ZGXPAA4TH5GDSTRRP6BBA5CNFSM4M6L6D2KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCGIYOQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411864122",
"url": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-411864122",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebd5610a30da_1c073f8bb30cd9641244ea--


From nobody Thu May 14 09:51:19 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 6979C3A0B94 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 09:51:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 IQLMn5tv6Ckd for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 09:51:16 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 09F693A0B8F for <quic-issues@ietf.org>; Thu, 14 May 2020 09:51:15 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 6CF1FE1673 for <quic-issues@ietf.org>; Thu, 14 May 2020 09:51:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589475074; bh=VrNuB8DNZW+y4fGRk2oCOESwDYIog7Y1pN/Fstql36Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GqsmGxMt2iwgiwrk9g66p3yvweiQ+bEvAxy00uQljimGZxDGZOAVQFtKHbufnDMDt JtQUAmeWOmA/uLGxMaUCzqpqpQyIH6tAaQKsROsYNPIX8nHW9+GQBd186RYVp6ye8t Z/jJ7wRx6SS/Jb13Sv2CCZyCAaA3z4JWcXzgZnHg=
Date: Thu, 14 May 2020 09:51:14 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4FSKTX5ARBG6NHKF54ZFMAFEVBNHHCJWJPJM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3659/review/411997729@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3659@github.com>
References: <quicwg/base-drafts/pull/3659@github.com>
Subject: Re: [quicwg/base-drafts] Fix name of the Transport Parameter Length field (#3659)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebd77025dde6_3e343fa8a3ecd96c12287f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/I4B19E445UmH3M9qQYCMt0ZiegI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 16:51:17 -0000

----==_mimepart_5ebd77025dde6_3e343fa8a3ecd96c12287f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3659#pullrequestreview-411997729
----==_mimepart_5ebd77025dde6_3e343fa8a3ecd96c12287f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3659#pullrequestreview-411997729">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3H2X443C4MO5WAHH3RRQOQFANCNFSM4NAVLZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2MV7KPVHXLPW25PFTRRQOQFA5CNFSM4NAVLZ6KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCHJMII.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3659#pullrequestreview-411997729",
"url": "https://github.com/quicwg/base-drafts/pull/3659#pullrequestreview-411997729",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebd77025dde6_3e343fa8a3ecd96c12287f--


From nobody Thu May 14 14:17:26 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 377C93A09DE for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:17:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.725
X-Spam-Level: 
X-Spam-Status: No, score=-1.725 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 oaBptj0H3sQV for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:17:21 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EAE803A08F4 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:17:20 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 17A26E0D26 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:17:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589491040; bh=ZTRvHl4KOOpuTCUkI+4+U3v869JWIM95qvpXDE85Sec=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Uzf+dAVxS/VqWM+SNAtkGUo2JhR+ZnX9zM3iu0H+jH38cpPsqb+fFq4yLVJuVdICb VFyd4mfOzeumRDdQKJz/9pNloqypAsc5IJMbqTEugcT4e4OvZAM6o8prBMfOg21q9T +6dRsRdZXpyKQYGh8zy7pmTRDpVUZOEluN20XMQM=
Date: Thu, 14 May 2020 14:17:19 -0700
From: Dragana Damjanovic <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3VKSTDXFG6DYCKS7N4ZGLF7EVBNHHCJXRQFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3660@github.com>
Subject: [quicwg/base-drafts] Remove repeated sentence (#3660)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebdb55fe64a0_273d3fd8054cd96c140839"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ddragana
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MLNOASMkFzFQK4MEdCOJ6VN9-8s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 21:17:24 -0000

----==_mimepart_5ebdb55fe64a0_273d3fd8054cd96c140839
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thee sentence is repeated in the next paragraph.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3660

-- Commit Summary --

  * Remove repeated sentence.

-- File Changes --

    M draft-ietf-quic-http.md (4)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3660.patch
https://github.com/quicwg/base-drafts/pull/3660.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3660

----==_mimepart_5ebdb55fe64a0_273d3fd8054cd96c140839
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Thee sentence is repeated in the next paragraph.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3660'>https://github.com/quicwg/base-drafts/pull/3660</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Remove repeated sentence.</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3660/files#diff-3d2f9fd0738589657498f2c06ee02f2f">draft-ietf-quic-http.md</a>
    (4)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3660.patch'>https://github.com/quicwg/base-drafts/pull/3660.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3660.diff'>https://github.com/quicwg/base-drafts/pull/3660.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3660">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7R6RCXWYBW5VUHUOTRRRNV7ANCNFSM4NBBHDHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK227PUAJJKVDIKS3BTRRRNV7A5CNFSM4NBBHDHKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JG6GAVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3660",
"url": "https://github.com/quicwg/base-drafts/pull/3660",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebdb55fe64a0_273d3fd8054cd96c140839--


From nobody Thu May 14 14:27:19 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 4F25E3A0D59 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:27:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 wHgwORdkzNXJ for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:27:16 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 169513A0D4E for <quic-issues@ietf.org>; Thu, 14 May 2020 14:27:15 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id CF364661154 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:27:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589491634; bh=lsc7w1xFjYplv5ip1w6AmBgjTBVySqFbtMIfPK+3rII=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sJk+OrYLP/1uRLwnFOz6cdp+TIWQuEzj5n8G1MN4lwiwMqdmWguRaqWOjp5KOEK1A K6DTnWztWuwT7a5htdYeO3b5EUYE7wpsuAnWuzONIy0koSqStY5g91Y85m+d7Vf6+z 1IBW6RtP9pgMqOiOLgjc6HbweZi4mxSkNmdlYH8c=
Date: Thu, 14 May 2020 14:27:14 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2UF6AVVNGYODARAHN4ZGMLFEVBNHHCJWIUEQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3657/review/412197408@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3657@github.com>
References: <quicwg/base-drafts/pull/3657@github.com>
Subject: Re: [quicwg/base-drafts] Fix verb number and a typo in the QPACK draft (#3657)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebdb7b2c0c7e_64723ffda78cd96412328d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-RWFV8hDMIIRLOMuu1bsMASf-ck>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 21:27:17 -0000

----==_mimepart_5ebdb7b2c0c7e_64723ffda78cd96412328d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3657#pullrequestreview-412197408
----==_mimepart_5ebdb7b2c0c7e_64723ffda78cd96412328d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3657#pullrequestreview-412197408">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7R7OTF7YOM3F3TLBDRRRO3FANCNFSM4NAVD5VQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2OM7OJEADCFB4QDXTRRRO3FA5CNFSM4NAVD5V2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCI2EIA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3657#pullrequestreview-412197408",
"url": "https://github.com/quicwg/base-drafts/pull/3657#pullrequestreview-412197408",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebdb7b2c0c7e_64723ffda78cd96412328d--


From nobody Thu May 14 14:27:54 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 D4D0D3A0D62 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:27:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.213
X-Spam-Level: 
X-Spam-Status: No, score=-1.213 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 tAidH2ZG2yGl for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:27:52 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0CA253A0D61 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:27:52 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 80363261679 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:27:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589491671; bh=Uj/wd+9zc6mEHAuFB7NoYEParGaDVJmngK+O+h4AbmI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VjkghDXZy6QKXjpAPXGSif/NzBVlUREEMK/jjSnDcOm8o2QQ7jr+wHxTryS0IrjcM 0TUBfrVfJa35aEQTeKf5IlSIJeBKmswGbi1bbjI4YyT39GnbJIaOEfP2IMPorKtXIa ZETU2XDpXwhvwzN9UbyMt0bEJjQz4rTX0Eiio+8Y=
Date: Thu, 14 May 2020 14:27:51 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZOMIM6S5HYPQ6WGJN4ZGMNPEVBNHHCJWJJZA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3658/review/412197769@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3658@github.com>
References: <quicwg/base-drafts/pull/3658@github.com>
Subject: Re: [quicwg/base-drafts] Fix two typos in the transport draft (#3658)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebdb7d72131c_20c23ff129ccd96858668"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ijF_6as1myQzbldWdnN1KyYQHIo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 21:27:53 -0000

----==_mimepart_5ebdb7d72131c_20c23ff129ccd96858668
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3658#pullrequestreview-412197769
----==_mimepart_5ebdb7d72131c_20c23ff129ccd96858668
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3658#pullrequestreview-412197769">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZEW4JUZWPRCKNAKDRRRO5PANCNFSM4NAVJOIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7EBACUHNSJ255LXL3RRRO5PA5CNFSM4NAVJOIKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCI2HCI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3658#pullrequestreview-412197769",
"url": "https://github.com/quicwg/base-drafts/pull/3658#pullrequestreview-412197769",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebdb7d72131c_20c23ff129ccd96858668--


From nobody Thu May 14 14:27:59 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 694A03A0D63 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:27:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.272
X-Spam-Level: 
X-Spam-Status: No, score=-2.272 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, 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 8CHHvj_LgwwE for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:27:53 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8A61A3A0D61 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:27:53 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id D2296960341 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:27:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589491672; bh=oPXCrHJavaOLh433l1DlNHZLBcf5gBL68Ug5QiTVKCY=; h=Date:From:To:Subject:From; b=sDe/YJ/3xYIuh61GEghwpt9a/4OZ06pk4/X5b+kHt+65pLCO/wbrvOsTGoWf6KOcP uQAUTZTNLyEsGLsT86k0ep7XZh+/50S9xfbvwb0FFFzYrDxsverNUe7qpvb95gbqdq i9jHeh1G86GeHIHf7UWPle16BvbmSK7UbebGaw7I=
Date: Thu, 14 May 2020 14:27:52 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/53dc23-304da5@github.com>
Subject: [quicwg/base-drafts] b6d3a8: Fix two typos in the transport draft
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LMb3xjtuDc1eLBUd6lnv4dylL3A>
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: Thu, 14 May 2020 21:27:56 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: b6d3a89e9ff096befb74196f6b7bcfda4fe7fc15
      https://github.com/quicwg/base-drafts/commit/b6d3a89e9ff096befb74196f6b7bcfda4fe7fc15
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Fix two typos in the transport draft


  Commit: 304da5753b4c1fa15077dcd912ff6e9f9325034f
      https://github.com/quicwg/base-drafts/commit/304da5753b4c1fa15077dcd912ff6e9f9325034f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-15 (Fri, 15 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3658 from dtikhonov/202005140900-fix-transport-typos

Fix two typos in the transport draft


Compare: https://github.com/quicwg/base-drafts/compare/53dc234ddceb...304da5753b4c


From nobody Thu May 14 14:28:05 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 35F6F3A0D67 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:28:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 gfRyIdw_LKZ2 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:28:03 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E73983A0D62 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:28:02 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 3EE23C60E95 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:28:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589491682; bh=IZJVA4J4jzvmsAUTbbTmgQh48sIDvDScW/SieWKw4L4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZabC4haSxfofriQOeQdsS5jTYF3DyUFVAWsrvNo6+4yXCZfECzcLYgdjz7/gdOxc+ BFmEfjE9GJhkcO8klv9x9AfIu38Mzv/KVY+oYWIG1FFEfmt6duFAKr7HjPPutQ5tHg tzTYfuGkK3yp1t3MqtpE59L7uNV7MlT+7BkkyWek=
Date: Thu, 14 May 2020 14:28:02 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7QZX7IKYSJGFW76MN4ZGMOFEVBNHHCJWJJZA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3658/issue_event/3338502690@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3658@github.com>
References: <quicwg/base-drafts/pull/3658@github.com>
Subject: Re: [quicwg/base-drafts] Fix two typos in the transport draft (#3658)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebdb7e22f783_61b23fce244cd95c36117"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EZEUsPqlrkdZU9LPn9yizXqQH9I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 21:28:04 -0000

----==_mimepart_5ebdb7e22f783_61b23fce244cd95c36117
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3658 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3658#event-3338502690
----==_mimepart_5ebdb7e22f783_61b23fce244cd95c36117
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="618211784" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3658" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3658/hovercard" href="https://github.com/quicwg/base-drafts/pull/3658">#3658</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3658#event-3338502690">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5XQ5JOE5Y7SO57SDLRRRO6FANCNFSM4NAVJOIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZORLUYMYWEZMWMDZ3RRRO6FA5CNFSM4NAVJOIKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY36YEIQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3658#event-3338502690",
"url": "https://github.com/quicwg/base-drafts/pull/3658#event-3338502690",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebdb7e22f783_61b23fce244cd95c36117--


From nobody Thu May 14 14:28:28 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 4912A3A0D67 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:28:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.213
X-Spam-Level: 
X-Spam-Status: No, score=-1.213 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 pFCmc13gYGon for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:28:25 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EE7D03A0D61 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:28:24 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 241E5960A24 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:28:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589491704; bh=t4cm8U5V+S30IzxUFvah3z+9nV/HN5dApfq+UyRSDMg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BDl70SSa3y6ju2NsPGh2ySEgcYzMQO87cp1W6j7/ix/kt7/dID+TgkCAzC6eRgV7J zEh8BvTUVphuFmAayfSjaZZkXlLWxxo9fzZ7vzZGWcw++etKlB8Zk7Cg2VqeHa/2sl GmRVwLNNAQGc4dM3irrbZdoKJ1yYrT8gPwxqADRg=
Date: Thu, 14 May 2020 14:28:24 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3RI3TLAYNVP727W6N4ZGMPREVBNHHCJV4BLE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3656/review/412198100@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3656@github.com>
References: <quicwg/base-drafts/pull/3656@github.com>
Subject: Re: [quicwg/base-drafts] fix MUST not in CRYPTO frame handling (#3656)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebdb7f813e5d_68223ffceb4cd95c778b2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bYq_Ve18PKpIUmEu-ikEWci-YG8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 21:28:26 -0000

----==_mimepart_5ebdb7f813e5d_68223ffceb4cd95c778b2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3656#pullrequestreview-412198100
----==_mimepart_5ebdb7f813e5d_68223ffceb4cd95c778b2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3656#pullrequestreview-412198100">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3LWFPKQPPJ5GV3IV3RRRO7RANCNFSM4NARQNSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2UVCDEDZZKDVTGTFTRRRO7RA5CNFSM4NARQNSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCI2JVA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3656#pullrequestreview-412198100",
"url": "https://github.com/quicwg/base-drafts/pull/3656#pullrequestreview-412198100",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebdb7f813e5d_68223ffceb4cd95c778b2--


From nobody Thu May 14 14:28:35 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 323E33A0D67 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:28:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 empom3ymPf-s for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:28:33 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 123A93A0D62 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:28:33 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 55E298C0A3F for <quic-issues@ietf.org>; Thu, 14 May 2020 14:28:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589491712; bh=43+zRW71aRNmXiaJ48EEVJalP/g2bDpWRak338/6dNA=; h=Date:From:To:Subject:From; b=TKtOYVSR5zzrLtx/oyvVUxZkhMZDCktpIdb4QBwiyaBBchROcge39N6fTs1I4iW0u 4MRfKTw/YxzmocJubFi24QAJU9VSzOCikNdvIvqGfbLpk35xyZV+od92DR0v+uq1kI ybawtpKNYJHgVStcmbIE655SHrKZsJmS8p/29mmc=
Date: Thu, 14 May 2020 14:28:32 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/304da5-cf0fdf@github.com>
Subject: [quicwg/base-drafts] d1a788: fix MUST not in CRYPTO frame handling
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8jI6CZo4A880INSDoQd7LJOvpkk>
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: Thu, 14 May 2020 21:28:34 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: d1a7887e675246469de14576a9ca2e9de403a765
      https://github.com/quicwg/base-drafts/commit/d1a7887e675246469de14576a9ca2e9de403a765
  Author: Marten Seemann <martenseemann@gmail.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  fix MUST not in CRYPTO frame handling


  Commit: cf0fdf6c6b8043885ce74696c21c895dd3dbbee1
      https://github.com/quicwg/base-drafts/commit/cf0fdf6c6b8043885ce74696c21c895dd3dbbee1
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-15 (Fri, 15 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #3656 from marten-seemann/fix-must-not

fix MUST not in CRYPTO frame handling


Compare: https://github.com/quicwg/base-drafts/compare/304da5753b4c...cf0fdf6c6b80


From nobody Thu May 14 14:28:44 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 4641F3A0D67 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:28:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 PrwYikcQ04aE for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:28:42 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2FEC23A0D62 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:28:42 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 6E7C2520A96 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:28:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589491721; bh=jTuEaas13tSgeTXM4XRLxvL4j9H2dL01DB0kEUnM8kQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ruQcXpNSn4aviUnwZDt1qMRGqq0OBrn5OssLljoMVeWYfx0bqndFtnPWkvbYvOUvQ tWNvm+xwYR/5WK1VJXJnsxRml6aV+8/GEwoEC2rmjaaYyIo1YjDDVB5SwWRJKCK0tx vscATfj56kIgc/NOtw5gz90WIBaM4ZX0TlcXeV5Q=
Date: Thu, 14 May 2020 14:28:41 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK27XWNSFQCGXBODNA54ZGMQTEVBNHHCJV4BLE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3656/issue_event/3338504761@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3656@github.com>
References: <quicwg/base-drafts/pull/3656@github.com>
Subject: Re: [quicwg/base-drafts] fix MUST not in CRYPTO frame handling (#3656)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebdb8095cfb5_11823fa70cacd96889894"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/g3BTq-DdZW5kEI5v66BsVqpc67A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 21:28:43 -0000

----==_mimepart_5ebdb8095cfb5_11823fa70cacd96889894
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3656 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3656#event-3338504761
----==_mimepart_5ebdb8095cfb5_11823fa70cacd96889894
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="618103129" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3656" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3656/hovercard" href="https://github.com/quicwg/base-drafts/pull/3656">#3656</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3656#event-3338504761">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3QCOOH5LJN4NBHUPLRRRPATANCNFSM4NARQNSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6QMCILDHCCZZPB6XTRRRPATA5CNFSM4NARQNSKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY36YUOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3656#event-3338504761",
"url": "https://github.com/quicwg/base-drafts/pull/3656#event-3338504761",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebdb8095cfb5_11823fa70cacd96889894--


From nobody Thu May 14 14:28:50 2020
Return-Path: <bounces+848413-a050-quic-issues=ietf.org@sgmail.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 59A193A0D67 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:28:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.273
X-Spam-Level: 
X-Spam-Status: No, score=-2.273 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, UNPARSEABLE_RELAY=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 P3LiWlNMHonE for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:28:48 -0700 (PDT)
Received: from o11.sgmail.github.com (o11.sgmail.github.com [167.89.101.202]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A60E53A0D62 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:28:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com;  h=from:to:subject:mime-version:content-type:content-transfer-encoding;  s=s20150108; bh=48TPVJdF0kg3olYxzVGs9PzjNcAnPuFJN6fl5Zz5TNA=; b= r2okAshGapZFkfd852VrCiJLB2ejIDbFAfMiXpm6IP2+QPJec3VvPRPrsUxgadpG 6lRo3zXVGmqNLfmLaVTEQQP2fDbQi0/SDQcimFpFVq9DnqkyGKlr3uM939Kg+oqh z6ViYsmF24exBsmmjdl3DUVWEBWdYUuUQT18edTiiJE=
Received: by filter0766p1iad2.sendgrid.net with SMTP id filter0766p1iad2-8844-5EBDB80E-1E 2020-05-14 21:28:46.575997016 +0000 UTC m=+7698.770526675
Received: from out-5.smtp.github.com (unknown) by ismtpd0028p1iad2.sendgrid.net (SG) with ESMTP id ITAaGAKnS6yjaIQDQmdsIg for <quic-issues@ietf.org>; Thu, 14 May 2020 21:28:46.520 +0000 (UTC)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 40C22960301 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:28:46 -0700 (PDT)
Date: Thu, 14 May 2020 21:28:46 +0000 (UTC)
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/992140-cac072@github.com>
Subject: [quicwg/base-drafts] cac072: Script updating gh-pages from 304da575. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak2L5Yo0uYz0xH3OA/bYFHol6kAbQKba/83izh W2pYwfnnQBqIY/CF/A39cK+rfYQI0ugTonsLUjT2wN9CcQNnRWNkWOs3NxyqMQw9n8/ysnmZnqhNE/ cnAT234CkaaxapM+fHG4obG/hONzF9WhziI4mmAJ5zyajpwfWE0UvWHVQw==
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/A0TtCOJMUgqw9m3lZzxJbmNa_Kc>
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: Thu, 14 May 2020 21:28:49 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: cac07219bce7ce8c8c209a4c08b48b1e2a2c9f8a
      https://github.com/quicwg/base-drafts/commit/cac07219bce7ce8c8c209a4c08b48b1e2a2c9f8a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 304da575. [ci skip]



From nobody Thu May 14 14:29:01 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 6194D3A0D67 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:29:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KTDPWSOCnYbG for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:28:58 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A45683A0D62 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:28:58 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 03F2B52041D for <quic-issues@ietf.org>; Thu, 14 May 2020 14:28:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589491738; bh=evZjKJYbZPqOgWHD76InvHgTxUM5WO6ue89GqGr0IYk=; h=Date:From:To:Subject:From; b=xkSrUidoyaSVjBc9YZ306iO87Hbyk8on13RdZBIcFMJQwD9JoVHXvRTu8mb8hwqsM bXa26UTK9OkXUnPkIBm6O6QttbhXwT9Nf0awlO71t7x3hFDavY7ZvLWOisVxjMYV2c U1Tk9Nv0f/kEbybLot1dtXbgLj/lUXyGIZq4Glwc=
Date: Thu, 14 May 2020 14:28:57 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/cac072-0ea119@github.com>
Subject: [quicwg/base-drafts] 0ea119: Script updating archive at 2020-05-14T21:28:38Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PDqT34K66F_Dh3UEETtXOyjVoKg>
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: Thu, 14 May 2020 21:29:00 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0ea1198091f53efc1ac4b5fde28a14cb87a87f24
      https://github.com/quicwg/base-drafts/commit/0ea1198091f53efc1ac4b5fde28a14cb87a87f24
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-14T21:28:38Z. [ci skip]



From nobody Thu May 14 14:29:24 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 7A4673A0D68 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:29:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 sbk4p7sQXbXM for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:29:22 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 445D53A0D62 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:29:22 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 9D52E8C05E2 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:29:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589491761; bh=yBtwtJiwxtbTrY/pnlLvnabS+I6/6IwBBozFwaH4nEk=; h=Date:From:To:Subject:From; b=FcqiG0Y83RnXmpoMlViEvxjO8bL2uJN5QPV/ZDQzvT+n5n+CX1Yllmn155tLdVpy9 4AUPbMnH9/AZ1B4/OtqqIu3IkHy8ZtVhM4BCXL+zhalKpnNFMxFOrfn2MOeFE6EYfa u9AnwpaCYKOHGrjWuT4OFiKDHBgv3wihilTZm3RU=
Date: Thu, 14 May 2020 14:29:21 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0ea119-7663b1@github.com>
Subject: [quicwg/base-drafts] 7663b1: Script updating gh-pages from cf0fdf6c. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RiEjqFWVE6gmh4zcVu0Yt2gm7Ic>
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: Thu, 14 May 2020 21:29:24 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7663b1460577905f0ef291c04c2f7a7cf9f5a9e0
      https://github.com/quicwg/base-drafts/commit/7663b1460577905f0ef291c04c2f7a7cf9f5a9e0
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from cf0fdf6c. [ci skip]



From nobody Thu May 14 14:33:22 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 3590F3A0D6C for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:33:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.727
X-Spam-Level: 
X-Spam-Status: No, score=-1.727 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 pE_vnLQncm0B for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 14:33:19 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7AAA83A0D6B for <quic-issues@ietf.org>; Thu, 14 May 2020 14:33:19 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 9CAFE521149 for <quic-issues@ietf.org>; Thu, 14 May 2020 14:33:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589491998; bh=YpjgLbByNwbQ9wMWFJMvm2ymgPEADrH07UQEttC4DEM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UHK1WN6MNEFLRxev34r+Qbq633uzmufg8h5PllDyYK8iH2Sknmk5frA/LyBmoHrrG lI2esdIbmfZtC+ST5uU2sIV7llKuWyVoKrL8UE0aplhAckBeXdxBN4M4PFBUv/zKTM 6EDZUeX0pedXXlCSoXgmMf/11OwxQrtkZcXlDTmk=
Date: Thu, 14 May 2020 14:33:18 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/push/5074914301@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebdb91e88e48_b733fed5becd96010844d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: erickinnear
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/G_kghgXwxcD-_Qx16yr2KwnCdEg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 21:33:21 -0000

----==_mimepart_5ebdb91e88e48_b733fed5becd96010844d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear pushed 2 commits.

ca0decd66b88576741494c0fc077d2b78424e279  Merge branch 'master' into ek/preferred_address
77b06fcadb8d708a9fb932930ff7742a640b7e0a  Update whitespace for consistency


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589/files/a7101944f1dec2dd4d4c890e56f3029e1648545d..77b06fcadb8d708a9fb932930ff7742a640b7e0a

----==_mimepart_5ebdb91e88e48_b733fed5becd96010844d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/erickinnear" class="user-mention">@erickinnear</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/ca0decd66b88576741494c0fc077d2b78424e279">ca0decd</a>  Merge branch &#39;master&#39; into ek/preferred_address</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/77b06fcadb8d708a9fb932930ff7742a640b7e0a">77b06fc</a>  Update whitespace for consistency</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3589/files/a7101944f1dec2dd4d4c890e56f3029e1648545d..77b06fcadb8d708a9fb932930ff7742a640b7e0a">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK724ZDNMOXP4LBWJPLRRRPR5ANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5JCNCSSARIHBQ6YELRRRPR5A5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDKOBZGM3DGOKQOVZWQIZVGA3TIOJRGQZTAMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589/files/a7101944f1dec2dd4d4c890e56f3029e1648545d..77b06fcadb8d708a9fb932930ff7742a640b7e0a",
"url": "https://github.com/quicwg/base-drafts/pull/3589/files/a7101944f1dec2dd4d4c890e56f3029e1648545d..77b06fcadb8d708a9fb932930ff7742a640b7e0a",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ebdb91e88e48_b733fed5becd96010844d--


From nobody Thu May 14 16:17:13 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 A35D73A040C for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 16:17:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.27
X-Spam-Level: 
X-Spam-Status: No, score=-2.27 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 a9u1gtJ_p_Nw for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 16:17:09 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2AC9C3A0408 for <quic-issues@ietf.org>; Thu, 14 May 2020 16:17:09 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id A7725121121 for <quic-issues@ietf.org>; Thu, 14 May 2020 16:17:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589498228; bh=opelVvktqZXcax3HWm8xYek5qXXvlj3lPA+9H30RdgM=; h=Date:From:To:Subject:From; b=dmc4prB0X+8LmQoLHcNZW3yRyerSiBY4bNtfOBbZoRwyJA53LyJBdX2Ekz4A8rKWA ZwmEyapTDcqfLSX2erQgFcb5VMxXK5KOzMC1rbmBY5vMw02XbWtgGTQjFx9jdskOJx LcyaUd5+JvFu4Ak4xmA5kneQnL4aNoLQNICnf1gU=
Date: Thu, 14 May 2020 16:17:08 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/cf0fdf-b9cb2b@github.com>
Subject: [quicwg/base-drafts] 564884: Fix name of the Transport Parameter Length field
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/su-TaD5aoxepG4hpnqc6UC7mm6A>
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: Thu, 14 May 2020 23:17:12 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 564884edb9450ce2fb799d11e3a9e8d455562ae9
      https://github.com/quicwg/base-drafts/commit/564884edb9450ce2fb799d11e3a9e8d455562ae9
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Fix name of the Transport Parameter Length field

(It's "Parameter," not "Param.")


  Commit: b9cb2b3f0a1db27aa89d6d964280413366dd6c4d
      https://github.com/quicwg/base-drafts/commit/b9cb2b3f0a1db27aa89d6d964280413366dd6c4d
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3659 from dtikhonov/202005140902-there-is-no-transport-param-length-field

Fix name of the Transport Parameter Length field


Compare: https://github.com/quicwg/base-drafts/compare/cf0fdf6c6b80...b9cb2b3f0a1d


From nobody Thu May 14 16:17:24 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 856883A040F for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 16:17:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 3FV25FRRZSiO for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 16:17:19 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4AAB13A0408 for <quic-issues@ietf.org>; Thu, 14 May 2020 16:17:19 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 6EC27960592 for <quic-issues@ietf.org>; Thu, 14 May 2020 16:17:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589498238; bh=86IYezSef/dj+247Jtd/j2aXnpfv9QkgIJcSOwqAa3U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HnSEzZ54iqLjzMeb42arCoZpQ6G/ogoR6xUjs1fCpL7HmUa8NqGPYTsjKuo5Y/Ug/ LeqcySbgDwF1rGW40dagWYUJ+z22JCdh0/vG3NytT6ZiJPw/tcynyy/8U1kPhfcH41 zjEUv5aJyPKNVbF8WddcAgbcC4W0JyuGfin8Ytpg=
Date: Thu, 14 May 2020 16:17:18 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZNMR4ECJSO2T7NK7N4ZGZH5EVBNHHCJWJPJM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3659/issue_event/3338761493@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3659@github.com>
References: <quicwg/base-drafts/pull/3659@github.com>
Subject: Re: [quicwg/base-drafts] Fix name of the Transport Parameter Length field (#3659)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebdd17e45f85_76413fdb8d0cd96c6654b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/q5SrxARLDClL-N2xSTPJecvrRDY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 23:17:21 -0000

----==_mimepart_5ebdd17e45f85_76413fdb8d0cd96c6654b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3659 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3659#event-3338761493
----==_mimepart_5ebdd17e45f85_76413fdb8d0cd96c6654b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="618213195" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3659" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3659/hovercard" href="https://github.com/quicwg/base-drafts/pull/3659">#3659</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3659#event-3338761493">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7OXWBYAYPZREXVAFDRRR3X5ANCNFSM4NAVLZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3LX5C3WOQGQQHXOJLRRR3X5A5CNFSM4NAVLZ6KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY4AXKFI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3659#event-3338761493",
"url": "https://github.com/quicwg/base-drafts/pull/3659#event-3338761493",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebdd17e45f85_76413fdb8d0cd96c6654b--


From nobody Thu May 14 16:18:07 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 340CA3A040F for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 16:18:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.274
X-Spam-Level: 
X-Spam-Status: No, score=-2.274 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 UwUTp3l-w4be for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 16:18:04 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DAF013A0408 for <quic-issues@ietf.org>; Thu, 14 May 2020 16:18:04 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id F228FC60E1F for <quic-issues@ietf.org>; Thu, 14 May 2020 16:18:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589498283; bh=ofRmlINSLEmeHAS4rbQ5j7soJTkKCUhbUm68GRD69Fk=; h=Date:From:To:Subject:From; b=GBuOd/HamEpaCB70orrIJab2/8zo8AsulVK9DwIJrwIeLV1RNGHx9h5tn+X0LJW5a rp0DLW4Xg1acF5+ul51bm0Xt+Tt1BsC6aA0bvRosN0GWu1T4ZdgMQtghhsyEqwav3z 97d16AH9jwVtJSLpzIwltB7YY3lL5G2op92BT38s=
Date: Thu, 14 May 2020 16:18:03 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/7663b1-d8cd09@github.com>
Subject: [quicwg/base-drafts] d8cd09: Script updating gh-pages from b9cb2b3f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/C_g-1EFkIR3TsbL6YBhKLrn9a0M>
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: Thu, 14 May 2020 23:18:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d8cd09bc9c204bf77828557fdcf1a11331b84018
      https://github.com/quicwg/base-drafts/commit/d8cd09bc9c204bf77828557fdcf1a11331b84018
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html
    R qpack-static-comment/draft-ietf-quic-http.html
    R qpack-static-comment/draft-ietf-quic-http.txt
    R qpack-static-comment/draft-ietf-quic-invariants.html
    R qpack-static-comment/draft-ietf-quic-invariants.txt
    R qpack-static-comment/draft-ietf-quic-qpack.html
    R qpack-static-comment/draft-ietf-quic-qpack.txt
    R qpack-static-comment/draft-ietf-quic-recovery.html
    R qpack-static-comment/draft-ietf-quic-recovery.txt
    R qpack-static-comment/draft-ietf-quic-tls.html
    R qpack-static-comment/draft-ietf-quic-tls.txt
    R qpack-static-comment/draft-ietf-quic-transport.html
    R qpack-static-comment/draft-ietf-quic-transport.txt
    R qpack-static-comment/index.html

  Log Message:
  -----------
  Script updating gh-pages from b9cb2b3f. [ci skip]



From nobody Thu May 14 16:20:56 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 F30153A043F for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 16:20:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 9jt1f7pHLyFe for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 16:20:54 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 01E7C3A041E for <quic-issues@ietf.org>; Thu, 14 May 2020 16:20:53 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id ED3CAE0AC1 for <quic-issues@ietf.org>; Thu, 14 May 2020 16:20:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589498452; bh=Is8MeLge+gzqZA9sKJ8blUdwEEIjCoA47xsxaNDk55s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zlyOH7hEdE+e5glw1Ogw0d2Elyf87u4CTxRnRTcgpqmKVS1LMDtoDC7QylqUJtgLp BPXYau4Bye5L9UWdTvvx/TTmbq5qKiEYj/AJHGEPc+8oThTR8AVBpb4bUVz0DTcw0y 0xoTRafSLacPwJ/sWr7OfOqG4uGr8p9wOUBwhwBw=
Date: Thu, 14 May 2020 16:20:52 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2S6MWMF4KWHJ7GGUF4ZGZVJEVBNHHCJWIUEQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3657/review/412248994@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3657@github.com>
References: <quicwg/base-drafts/pull/3657@github.com>
Subject: Re: [quicwg/base-drafts] Fix verb number and a typo in the QPACK draft (#3657)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebdd254dd5f5_5b213fea6a2cd960124568"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/O7pPskNNnmQDV6uAjeXaB5ZYU64>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 14 May 2020 23:20:55 -0000

----==_mimepart_5ebdd254dd5f5_5b213fea6a2cd960124568
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3657#pullrequestreview-412248994
----==_mimepart_5ebdd254dd5f5_5b213fea6a2cd960124568
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3657#pullrequestreview-412248994">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYVKSLXENH3KT23H6DRRR4FJANCNFSM4NAVD5VQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYUAKUGXVT3X2IZTZ3RRR4FJA5CNFSM4NAVD5V2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCJGXIQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3657#pullrequestreview-412248994",
"url": "https://github.com/quicwg/base-drafts/pull/3657#pullrequestreview-412248994",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebdd254dd5f5_5b213fea6a2cd960124568--


From nobody Thu May 14 17:24:26 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 5527E3A07D6 for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 17:24:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 6UDiqDkKeeSf for <quic-issues@ietfa.amsl.com>; Thu, 14 May 2020 17:24:21 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 10BB13A07D5 for <quic-issues@ietf.org>; Thu, 14 May 2020 17:24:20 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id D2C769604D9 for <quic-issues@ietf.org>; Thu, 14 May 2020 17:24:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589502258; bh=OKPzIamuJZqmahugx+btD2NI+ZDyj+kJX4lVhLwU3ww=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vgBFXXHQ6N6k00B5pl4JYVDRKTWlUDsLB31krMO/qPyVuxuBu0dRe++ObPqTIMHen E3OE0guwlncUHoI5GEI/XdfvUh3HOjbyCeuBLJW38q9wdn6Dioy3YH7cZ2uvUY2zos LT491vX7yI6srd/2WNa/djmll6BmDNkeJsiLdzOM=
Date: Thu, 14 May 2020 17:24:18 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK22KBEILNZ67B6GTCV4ZHBDFEVBNHHCJXRQFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3660/review/412270057@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3660@github.com>
References: <quicwg/base-drafts/pull/3660@github.com>
Subject: Re: [quicwg/base-drafts] Remove repeated sentence (#3660)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebde132c2eaa_42533ff2754cd96415174f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/C6UQNdL4Xh13G-GMAe_eZWHkzC0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 15 May 2020 00:24:24 -0000

----==_mimepart_5ebde132c2eaa_42533ff2754cd96415174f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3660#pullrequestreview-412270057
----==_mimepart_5ebde132c2eaa_42533ff2754cd96415174f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3660#pullrequestreview-412270057">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5J3VAU44BJCIXIONTRRSDTFANCNFSM4NBBHDHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5XVYUBLGEIUESQAT3RRSDTFA5CNFSM4NBBHDHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCJL32I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3660#pullrequestreview-412270057",
"url": "https://github.com/quicwg/base-drafts/pull/3660#pullrequestreview-412270057",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebde132c2eaa_42533ff2754cd96415174f--


From nobody Fri May 15 11:11:02 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 F03D13A0C61 for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 11:11:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 64m8fWZoFg2L for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 11:11:00 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C49B43A0C36 for <quic-issues@ietf.org>; Fri, 15 May 2020 11:10:59 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 0F3BF6605E0 for <quic-issues@ietf.org>; Fri, 15 May 2020 11:10:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589566259; bh=xYO2u/zd3LBAZNtfSqjzuX49jKI2Tms6/42R0xHWKJA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BCP9giRBzCbMGMe9S3VhLOMAWUlyK54VzBdaShiic3Pfi9BnfOSjW2CE1uGpZF918 +LNjbFJ47iBciBSlh8cMLsppy4v5ISgXBPKXD3k228rAqoBofltt1847ULGw4RhOeG +Z+0fYUOo/3nUlr97BVjN0iNtiu/5wjLaTvIbhr0=
Date: Fri, 15 May 2020 11:10:59 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5PEU434I77A5X7ZC54ZK6DFEVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/review/412863464@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebedb3365a_356f3fab864cd9681092de"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gC6eY-_UsHTI-32wGn3-2EcSPvs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 15 May 2020 18:11:01 -0000

----==_mimepart_5ebedb3365a_356f3fab864cd9681092de
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop approved this pull request.

Thanks for making (yet) another attempt to clarify this.  Looks good.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-412863464
----==_mimepart_5ebedb3365a_356f3fab864cd9681092de
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> approved this pull request.</p>

<p>Thanks for making (yet) another attempt to clarify this.  Looks good.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-412863464">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ETRPNR6M66TBR6HLRRWATHANCNFSM4M6L6D2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYUJNTRPJ6OFUH2S6LRRWATHA5CNFSM4M6L6D2KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCN4X2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-412863464",
"url": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-412863464",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebedb3365a_356f3fab864cd9681092de--


From nobody Fri May 15 12:41:08 2020
Return-Path: <bounces+848413-a050-quic-issues=ietf.org@sgmail.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 5B3263A0877 for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 12:40:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.213
X-Spam-Level: 
X-Spam-Status: No, score=-1.213 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, UNPARSEABLE_RELAY=0.001] autolearn=no 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 siwfH8IgmPeZ for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 12:40:57 -0700 (PDT)
Received: from o1.sgmail.github.com (o1.sgmail.github.com [192.254.114.176]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 114143A08D7 for <quic-issues@ietf.org>; Fri, 15 May 2020 12:40:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=4ROXRcOwGfDGOoRbEOx8emD2dDPObgnumiGprIRxckY=; b= O4/OuL3B51mZL6pGvboTj1aeTr28QB3WwvJb1MXmhYMOLATCN2Bk/Qxia4FGNsla e51+ivFuFBPmt8m0KWdJKfWHPUFsFMVemcsEYXAD7rkUTFjluLSmGyH9vk0xU34n kARjKr3+tunK6YIGwfUmWekgBcSVw6yNdH7kRUsgA9A=
Received: by filter0964p1iad2.sendgrid.net with SMTP id filter0964p1iad2-22503-5EBEF048-6 2020-05-15 19:40:56.098882041 +0000 UTC m=+87728.777553744
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (unknown) by ismtpd0008p1iad2.sendgrid.net (SG) with ESMTP id mop5kFqvQ7mDM03cu7xb3A for <quic-issues@ietf.org>; Fri, 15 May 2020 19:40:55.998 +0000 (UTC)
Received: from github.com (localhost [127.0.0.1]) by github-lowworker-e8b54ca.ac4-iad.github.net (Postfix) with ESMTP id F201E4780790 for <quic-issues@ietf.org>; Fri, 15 May 2020 12:40:55 -0700 (PDT)
Date: Fri, 15 May 2020 19:40:56 +0000 (UTC)
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6NIZ5OXFNIF26PKXV4ZLIUPEVBNHHCJWIUEQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3657/review/412913899@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3657@github.com>
References: <quicwg/base-drafts/pull/3657@github.com>
Subject: Re: [quicwg/base-drafts] Fix verb number and a typo in the QPACK draft (#3657)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebef047db8d8_11f63fe77dacd95c2611d1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak0JpZohRYBbFosxyV9R560FtrYV8qJFAjrady oe/r27VihZmqr6MEHVGvzsS/Dia9VOP2+1r8QVC1ImbhEtEUkGQhHtvOnsYxO6A0xMPoK1gV0beMgy SdFoWTcMNoCb29M0qBfUUj/1zOxMSktpSWahoPnkQYjyAX6nD2kUVfEYj61q0l21zyIrXcmu7tp1Ql M=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/I1wsfg7BEKeXTaSYeJSNQGRzSWU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 15 May 2020 19:41:06 -0000

----==_mimepart_5ebef047db8d8_11f63fe77dacd95c2611d1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3657#pullrequestreview-412913899
----==_mimepart_5ebef047db8d8_11f63fe77dacd95c2611d1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3657#pullrequestreview-412913899">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3XXRBDPTPBHIYL4ZDRRWLEPANCNFSM4NAVD5VQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4D35BB47QS6WYRDG3RRWLEPA5CNFSM4NAVD5V2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCOJB2Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3657#pullrequestreview-412913899",
"url": "https://github.com/quicwg/base-drafts/pull/3657#pullrequestreview-412913899",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebef047db8d8_11f63fe77dacd95c2611d1--


From nobody Fri May 15 13:18:15 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 747473A08EA for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:18:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 ehv7PKacrUsO for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:18:12 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 50B5D3A08E7 for <quic-issues@ietf.org>; Fri, 15 May 2020 13:18:12 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 606A6960927 for <quic-issues@ietf.org>; Fri, 15 May 2020 13:18:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589573891; bh=l8oQ5sc0Jc7HiyrBj3h3YqZn9OLGJKh45VSZkswPXfs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NfoCWfz8nkvxsmwiN3m1QFdImumxgMLcuLpV6d5uo4jnDaB/Icg0GgIX3nkfSsY5c yuNlXJOV97UfKgY6C5EN8o3YaSxtpzM0j3GadRRf4LUlaf3EaUIHoPkCRAYZiYdXv4 1sy8dMCKA1eoxHDuZrOjSzfmOppR5IPZJUV+1kSs=
Date: Fri, 15 May 2020 13:18:11 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7SNOTI5YA563KQC254ZLNAHEVBNHHCGFYIAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/c629461603@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebef903525fe_39573fc0858cd96452528"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FTEwbpvDIjQo5W_fSapd4FzssLQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 15 May 2020 20:18:14 -0000

----==_mimepart_5ebef903525fe_39573fc0858cd96452528
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

LGTM.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547#issuecomment-629461603
----==_mimepart_5ebef903525fe_39573fc0858cd96452528
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>LGTM.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3547#issuecomment-629461603">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4N5T6M4CBX2GVQQS3RRWPQHANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6J7L53NLDBPHQCKUTRRWPQHA5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWCNEYY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547#issuecomment-629461603",
"url": "https://github.com/quicwg/base-drafts/pull/3547#issuecomment-629461603",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebef903525fe_39573fc0858cd96452528--


From nobody Fri May 15 13:25:36 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 B28AF3A08ED for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:25:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.869
X-Spam-Level: 
X-Spam-Status: No, score=-1.869 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 PzH_ADifBUeS for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:25:34 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 191D63A08EE for <quic-issues@ietf.org>; Fri, 15 May 2020 13:25:33 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id CA4648C04F7 for <quic-issues@ietf.org>; Fri, 15 May 2020 13:25:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589574332; bh=YJ36br+3dAxjxomGuL/+hFrH5d2deqMQa6+uAOZZzDE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iHYsEytrQRgr99e7mOj4ZZruyln1hJV93okGcTvz0TUPwl1LSLAlcjX0iI52Bn4u5 dYzJMjE4BnuX1DkfKQChuAIog/MjLtwxs4TUmupKvaYICPvPBs9uZumHe1OtNctkxz RsQBOg6pDkH/TV9qZgOAFuLL2kScXz4RpXRC3QWo=
Date: Fri, 15 May 2020 13:25:32 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYZXLRER37TKAB6MJN4ZLN3ZEVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/412944745@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebefabcbaf32_1b2b3ff9844cd96c735de"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SsAMgx_8qQMMSdXFqeA0m2IBZZQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 15 May 2020 20:25:36 -0000

----==_mimepart_5ebefabcbaf32_1b2b3ff9844cd96c735de
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr commented on this pull request.



> +Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  Due to network changes outside the control of its
+peer, an endpoint might receive packets from a new source address with the same
+destination connection ID, in which case it MAY continue to use the current
+connection ID with the new remote address while still sending from the same
+local address.

```suggestion
Due to network changes outside the control of its
peer, an endpoint might receive packets from a new source address with the same
destination connection ID, in which case it MAY continue to use the current
connection ID with the new remote address while still sending from the same
local address. In all other cases, an endpoint MUST NOT reuse a connection ID when sending to more than
one destination address. 
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-412944745
----==_mimepart_5ebefabcbaf32_1b2b3ff9844cd96c735de
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ekr</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3589#discussi=
on_r426030042">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +Similarly, an endpoint MUST NOT reuse a c=
onnection ID when sending to more than=0D
+one destination address.  Due to network changes outside the control of =
its=0D
+peer, an endpoint might receive packets from a new source address with t=
he same=0D
+destination connection ID, in which case it MAY continue to use the curr=
ent=0D
+connection ID with the new remote address while still sending from the s=
ame=0D
+local address.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-Similarly, an endpoint MUST NOT reuse a conne=
ction ID when sending to more than=0D
-one destination address.  Due to network changes outside the control of =
its=0D
-peer, an endpoint might receive packets from a new source address with t=
he same=0D
-destination connection ID, in which case it MAY continue to use the curr=
ent=0D
-connection ID with the new remote address while still sending from the s=
ame=0D
-local address.=0D
+Due to network changes outside the control of its=0D
+peer, an endpoint might receive packets from a new source address with t=
he same=0D
+destination connection ID, in which case it MAY continue to use the curr=
ent=0D
+connection ID with the new remote address while still sending from the s=
ame=0D
+local address. In all other cases, an endpoint MUST NOT reuse a connecti=
on ID when sending to more than=0D
+one destination address. =0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3589#pullrequestreview-412944745">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K4CWE3LWLPPJR3ZAA3RRWQLZANCNFSM4MMG45IQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK23LGN74CARQNYP6MLRRWQLZA5CNFSM4=
MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCOQS2I.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3589#pullrequestrev=
iew-412944745",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview=
-412944745",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebefabcbaf32_1b2b3ff9844cd96c735de--


From nobody Fri May 15 13:25:56 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 1B0EB3A08EE for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:25:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ggSU7IzbcCtc for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:25:53 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DFB983A08F0 for <quic-issues@ietf.org>; Fri, 15 May 2020 13:25:52 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 05F9D6E1247 for <quic-issues@ietf.org>; Fri, 15 May 2020 13:25:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589574352; bh=ERMtAxaHupU9ycETcEjODrxZhXsltLCzurnnsI9RUdk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nHt4yL9tbu3ezwP9C+kSuDvUtpVr3rTf3aUGO2IvQNOlX56QfJwt9VaxwZfuMkBrB yS3S3+VpE8IKXb6g8OyuwbmOol8RWsLp36x3ZcT9edfLmtR9JAV1T0fqH0nzrCzGAp HnXAEvm+xvP7wHqXPsOWMv7DqGE30IwRON414Ht0=
Date: Fri, 15 May 2020 13:25:51 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYZIMQXJ2KDLF2RFSF4ZLN47EVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/412944954@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebefacfeaf57_5843fd3792cd968194d6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yFdRTwaX5Jo-eHrfRQsw_FLXUAY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 15 May 2020 20:25:54 -0000

----==_mimepart_5ebefacfeaf57_5843fd3792cd968194d6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr commented on this pull request.

I suggested some clearer language, but this looks fine.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-412944954
----==_mimepart_5ebefacfeaf57_5843fd3792cd968194d6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ekr</b> commented on this pull request.</p>

<p>I suggested some clearer language, but this looks fine.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-412944954">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6VVX2J445CGHC7RNLRRWQM7ANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SYFZSERR5WJUSLPLRRWQM7A5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCOQUOQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-412944954",
"url": "https://github.com/quicwg/base-drafts/pull/3589#pullrequestreview-412944954",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebefacfeaf57_5843fd3792cd968194d6--


From nobody Fri May 15 13:26:35 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 8CCEB3A08F0 for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:26:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 45E7nLDxgCim for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:26:32 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9BCFD3A08EE for <quic-issues@ietf.org>; Fri, 15 May 2020 13:26:32 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id E36D8521149 for <quic-issues@ietf.org>; Fri, 15 May 2020 13:26:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589574391; bh=+b0AkkPOH3wpSukcKuqlysLdKSKlMRXeG8GVjW6Ka6A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HH5Q/HWEBqYwIrajfjJmhYq1296+7wjt9hRK2lqhwMcPz0SCe3rfb7lbu+zpXW2nN QCIA+R9xoQJqg5FkxSTcQVCo4XyH7NXDc82daDTMEgTNdHyxiIx8h+/spsZWJKwO0p 6fJgPgXfpFZZIlDGiQv5r7lHbh0Hczqq33tKCeCw=
Date: Fri, 15 May 2020 13:26:31 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7MTCPD74WKG3WVCON4ZLN7PEVBNHHCCZ7YJA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3426/review/412945357@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3426@github.com>
References: <quicwg/base-drafts/pull/3426@github.com>
Subject: Re: [quicwg/base-drafts] Clarify zero-length CIDs and active_connection_id_limit TP (#3426)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebefaf7d4aa8_35613f9834ecd96481396"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Bj-q7c1_R6IcdvOfECAIEZFYZ-E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 15 May 2020 20:26:34 -0000

----==_mimepart_5ebefaf7d4aa8_35613f9834ecd96481396
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr approved this pull request.

LGTM



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3426#pullrequestreview-412945357
----==_mimepart_5ebefaf7d4aa8_35613f9834ecd96481396
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ekr</b> approved this pull request.</p>

<p>LGTM</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3426#pullrequestreview-412945357">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK72I7GOZZTXIKINKIDRRWQPPANCNFSM4KQNOYIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7LB6PLR3JDRYJWZLTRRWQPPA5CNFSM4KQNOYIKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCOQXTI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3426#pullrequestreview-412945357",
"url": "https://github.com/quicwg/base-drafts/pull/3426#pullrequestreview-412945357",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebefaf7d4aa8_35613f9834ecd96481396--


From nobody Fri May 15 13:29:36 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 B5EEC3A092D for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:29:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.655
X-Spam-Level: 
X-Spam-Status: No, score=-1.655 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Lqw39y2lKx3r for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:29:31 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 339AA3A092E for <quic-issues@ietf.org>; Fri, 15 May 2020 13:29:31 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 66C09E05F2 for <quic-issues@ietf.org>; Fri, 15 May 2020 13:29:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589574570; bh=JI7/IwyDQvf8YYBmClmrwT6eFJMKkqhJDisyLrwlZks=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LMLtAj85pXaYlRwDgE0qjjg9WeKRwdlJl6L2eMw4Muyl6/BZvWF+KX1KZko74RjyT /4CBUSAYn+aK8dOmhPr+n75/qEv9NP5uqdkQzMPvHd5C6z5rsCDcZVFFaeXzMSzv9a pK3zqYJEUBDgPTawzuGAxwBaEJEZRF/V7C1ZziqM=
Date: Fri, 15 May 2020 13:29:30 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4DSCZZISTNIWL7MC54ZLOKVEVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/412946984@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebefbaa57bde_25e53f82a92cd95c1039d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: erickinnear
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gCd2gNA_3ZP7exW_sM8RmpXsSfc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 15 May 2020 20:29:34 -0000

----==_mimepart_5ebefbaa57bde_25e53f82a92cd95c1039d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@erickinnear commented on this pull request.



> +Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  Due to network changes outside the control of its
+peer, an endpoint might receive packets from a new source address with the same
+destination connection ID, in which case it MAY continue to use the current
+connection ID with the new remote address while still sending from the same
+local address.

I don't dislike the flow once flipped, but the first sentences of this and the preceding paragraph are trying to be very clearly the main requirement, with the subsequent items explaining motivation and any exceptions.

This is in response to the original issue we're trying to address, which is that all of these requirements were in place but got lost in the rest of the text, so the idea was to highlight the main requirements in a single place.

Thoughts?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#discussion_r426031726
----==_mimepart_5ebefbaa57bde_25e53f82a92cd95c1039d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@erickinnear</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r426031726">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  Due to network changes outside the control of its
+peer, an endpoint might receive packets from a new source address with the same
+destination connection ID, in which case it MAY continue to use the current
+connection ID with the new remote address while still sending from the same
+local address.
</pre>
<p>I don't dislike the flow once flipped, but the first sentences of this and the preceding paragraph are trying to be very clearly the main requirement, with the subsequent items explaining motivation and any exceptions.</p>
<p>This is in response to the original issue we're trying to address, which is that all of these requirements were in place but got lost in the rest of the text, so the idea was to highlight the main requirements in a single place.</p>
<p>Thoughts?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r426031726">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5DOK2Y7PSF2AD72ZLRRWQ2VANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5LYJPTUFBS6OE6B2LRRWQ2VA5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCOREKA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r426031726",
"url": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r426031726",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebefbaa57bde_25e53f82a92cd95c1039d--


From nobody Fri May 15 13:31:50 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 68B1D3A0936 for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:31:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.868
X-Spam-Level: 
X-Spam-Status: No, score=-1.868 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 m2MJ6PxANrxD for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:31:48 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ED2643A0933 for <quic-issues@ietf.org>; Fri, 15 May 2020 13:31:47 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 6A1AFC60742 for <quic-issues@ietf.org>; Fri, 15 May 2020 13:31:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589574706; bh=vavAfK68YVo3H3Ehfcc+/8KvezELXeWM+Ogj7J+IZzc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ncEil52DZU/h7Fw5ladDOU5eBCIV5aclgtiT/4b6sBMDIi3GGFVmxvBIyK68vYOgC A0fGdjkBh7PS5xbPM3RAL8TqepQWvPEhdeM5NFJoWp1E6q/L09YIPOp0vaEFMsDGdp OSojSNHPHVm6fwDwGa5nzCfg8UMlIPxIWaT+FVvs=
Date: Fri, 15 May 2020 13:31:46 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7MTLKLGFGKZW6WGQV4ZLOTFEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/review/408511028@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebefc325b226_449c3fce794cd95c874b1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XH54lL5L3kkOnjL9EehvZKonwC0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 15 May 2020 20:31:49 -0000

----==_mimepart_5ebefc325b226_449c3fce794cd95c874b1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr approved this pull request.

LGTM

> @@ -1453,11 +1453,11 @@ Source Connection ID values as the client's first Initial packet.
 
 Upon first receiving an Initial or Retry packet from the server, the client uses
 the Source Connection ID supplied by the server as the Destination Connection ID
-for subsequent packets, including all subsequent 0-RTT packets.  This means that
-a client might have to change the connection ID it sets in the Destination
-Connection ID field twice during connection establishment: once in response to a
-Retry, and once in response to an Initial packet from the server. Once a client
-has received an Initial packet from the server, it MUST discard any subsequent
+for subsequent packets, including any 0-RTT packets.  This means that a client
+might have to change the connection ID it sets in the Destination Connection ID
+field twice during connection establishment: once in response to a Retry, and
+once in response to an Initial packet from the server. Once a client has
+received an Initial packet from the server, it MUST discard any subsequent

Perhaps we want to clarify "valid" here just to make sure that people recognize that it has to pass deprotection?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-408511028
----==_mimepart_5ebefc325b226_449c3fce794cd95c874b1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ekr</b> approved this pull request.</p>

<p>LGTM</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3499#discussion_r422361341">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1453,11 +1453,11 @@ Source Connection ID values as the client&#39;s first Initial packet.
 
 Upon first receiving an Initial or Retry packet from the server, the client uses
 the Source Connection ID supplied by the server as the Destination Connection ID
-for subsequent packets, including all subsequent 0-RTT packets.  This means that
-a client might have to change the connection ID it sets in the Destination
-Connection ID field twice during connection establishment: once in response to a
-Retry, and once in response to an Initial packet from the server. Once a client
-has received an Initial packet from the server, it MUST discard any subsequent
+for subsequent packets, including any 0-RTT packets.  This means that a client
+might have to change the connection ID it sets in the Destination Connection ID
+field twice during connection establishment: once in response to a Retry, and
+once in response to an Initial packet from the server. Once a client has
+received an Initial packet from the server, it MUST discard any subsequent
</pre>
<p>Perhaps we want to clarify "valid" here just to make sure that people recognize that it has to pass deprotection?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-408511028">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5IKPKRGONRCUMA7JLRRWRDFANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZSISNMLDBTPPQTLETRRWRDFA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODBMWENA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-408511028",
"url": "https://github.com/quicwg/base-drafts/pull/3499#pullrequestreview-408511028",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebefc325b226_449c3fce794cd95c874b1--


From nobody Fri May 15 13:32:04 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 8303F3A0933 for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:32:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.181
X-Spam-Level: 
X-Spam-Status: No, score=-2.181 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 hqxTHG1w_HDA for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:32:02 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 39C813A0937 for <quic-issues@ietf.org>; Fri, 15 May 2020 13:32:02 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 8EE246E0032 for <quic-issues@ietf.org>; Fri, 15 May 2020 13:32:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589574721; bh=tTZURvgJcIKTiXGTWcat0l/gYrXtUWzVLHKncSplH2k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gYKPVcyE3Ht74Hb+U8UxGtvEixfKpX3a+dg6EWg/VG3wAq8ejprnyjd7mQC1FBjqK KYY6zMGRju84N/LObne9U9nSxeiv2qCbKD6lR6MpQyHmKFuoBZy0+bY5KZwTx9JNzZ K9VzqGCWVNLYc3yshPdTF9k4VIn8mfngAngCD+Do=
Date: Fri, 15 May 2020 13:32:01 -0700
From: Eric Kinnear <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYFYJF2NPVN6MFSOHV4ZLOUDEVBNHHCGFYIAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/review/412948279@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebefc417fd35_9a73fdb032cd968382b7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: erickinnear
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/E-xdbKcK4IaEVFMJnbvKOT0E1T4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 15 May 2020 20:32:04 -0000

----==_mimepart_5ebefc417fd35_9a73fdb032cd968382b7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

@erickinnear approved this pull request.=0D
=0D
Latest text looks good =F0=9F=91=8D =0D
=0D
=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3547#pullrequestreview-4129482=
79=

----==_mimepart_5ebefc417fd35_9a73fdb032cd968382b7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@erickinnear</b> approved this pull request.</p>=0D
=0D
<p>Latest text looks good <g-emoji class=3D"g-emoji" alias=3D"+1" fallbac=
k-src=3D"https://github.githubassets.com/images/icons/emoji/unicode/1f44d=
.png">=F0=9F=91=8D</g-emoji></p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3547#pullrequestreview-412948279">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K2BCNGBOHWNBVHM4CTRRWREDANCNFSM4LUQW5DQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK6EPDDTHUXMEBUFYV3RRWREDA5CNFSM4=
LUQW5D2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCORONY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3547#pullrequestrev=
iew-412948279",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3547#pullrequestreview=
-412948279",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ebefc417fd35_9a73fdb032cd968382b7--


From nobody Fri May 15 13:33:38 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 EDFF13A0936 for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:33:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.214
X-Spam-Level: 
X-Spam-Status: No, score=-1.214 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 3eWXTTJgVcKq for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 13:33:35 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EE2803A0933 for <quic-issues@ietf.org>; Fri, 15 May 2020 13:33:34 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 388F51C0E60 for <quic-issues@ietf.org>; Fri, 15 May 2020 13:33:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589574814; bh=5hlLDIVm3i7vHkaH3xikXw6Glg0y4fK/oLHPge0+7V8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=o24dqP1FUXX9x6DMihbzWOC+Z2+34dPDu6oMTPdP9V6grYjCKDu6Kb0A54nnJA4fe kz/k142FuSI4ruAqhVzieJWiMTfKUNh1ybs4ED2B+LazMTTT4hhldFavHAntWSReQK BG7V/4olcON2EzUOScwFYDbqKqRZQjdAalXtxC6Q=
Date: Fri, 15 May 2020 13:33:34 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6RDOG5PJ37L2QTDDF4ZLOZ5EVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/review/412949192@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebefc9e286a6_78763f933a4cd968643de"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qii0eTYp3HnWaYygpMPYbRCyiRQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 15 May 2020 20:33:36 -0000

----==_mimepart_5ebefc9e286a6_78763f933a4cd968643de
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ekr approved this pull request.

LGTM



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-412949192
----==_mimepart_5ebefc9e286a6_78763f933a4cd968643de
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ekr</b> approved this pull request.</p>

<p>LGTM</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-412949192">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4TJSLOQYPNQMLMJ63RRWRJ5ANCNFSM4M6L6D2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7ZVOOCS5P5U5WQS5TRRWRJ5A5CNFSM4M6L6D2KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCORVSA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-412949192",
"url": "https://github.com/quicwg/base-drafts/pull/3643#pullrequestreview-412949192",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebefc9e286a6_78763f933a4cd968643de--


From nobody Fri May 15 15:58:37 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 147E73A09FB for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 15:58:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.654
X-Spam-Level: 
X-Spam-Status: No, score=-1.654 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.173, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 wUS78e-9Rnrw for <quic-issues@ietfa.amsl.com>; Fri, 15 May 2020 15:58:33 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AEEC63A0970 for <quic-issues@ietf.org>; Fri, 15 May 2020 15:58:33 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 7583FA043B for <quic-issues@ietf.org>; Fri, 15 May 2020 15:58:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589583512; bh=hH3+U3Wn0SFNnemvT2UWvmnpbHoDiaW61BMeP5DOFyg=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=kPGEguFD9cNHKSeunWsgOHJ/bnfUqknRjImLfaQM9fk57PsXSwnAh3eO0q788+z8r y775MdSCYh5pwRQLZvsjxwusH0DXK1K7sIgD9mxRwXV4hDIxiDispK1uEd6VypZfxA bfs2rFeUXyTJS+4M9XbwFD2cIB5300WAHx/eEk7Y=
Date: Fri, 15 May 2020 15:58:32 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7YQPPAIMUMYDAPA6N4ZL7ZREVBNHHCJ2QBFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3661@github.com>
Subject: [quicwg/base-drafts] Include epoch in the AAD or the nonce? (#3661)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebf1e986606e_508e3fd406ecd9601915a8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JaC2lKLOL_oZwnHqWlGip6XuI9I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 15 May 2020 22:58:36 -0000

----==_mimepart_5ebf1e986606e_508e3fd406ecd9601915a8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Over in TLS we have been discussing the data which is included in the AEAD transform. 

1. Some parts of the context for encryption (epoch, length, etc.) are implicit.

2. The AD only covers the bits on the wire.

This intuitively seems like it ought to be OK because these values do affect how the protection is done, but only implicitly. For instance, length delineates the data, the packet number/record sequence number controls the nonce, etc., but nevertheless only some of these values are in the AD. It turns out that there is a bit of a gap between analysis we have of this so far and the
current state, and specifically we don't have analysis of the epoch, which is sent only partially in both QUIC and DTLS [0]. Note that QUIC is actually worse than DTLS here because in DTLS the epoch is folded into the sequence number used to make the nonce, but in QUIC the nonce is just the packet number. This issue is intended to raise the question of if we should revisit that, for instance by putting the epoch in the AD.

[0] https://mailarchive.ietf.org/arch/msg/tls/Ri33zZmFNb1kZ4HToDHs9cDDTPY/

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3661
----==_mimepart_5ebf1e986606e_508e3fd406ecd9601915a8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Over in TLS we have been discussing the data which is included in the AEAD transform.</p>
<ol>
<li>
<p>Some parts of the context for encryption (epoch, length, etc.) are implicit.</p>
</li>
<li>
<p>The AD only covers the bits on the wire.</p>
</li>
</ol>
<p>This intuitively seems like it ought to be OK because these values do affect how the protection is done, but only implicitly. For instance, length delineates the data, the packet number/record sequence number controls the nonce, etc., but nevertheless only some of these values are in the AD. It turns out that there is a bit of a gap between analysis we have of this so far and the<br>
current state, and specifically we don't have analysis of the epoch, which is sent only partially in both QUIC and DTLS [0]. Note that QUIC is actually worse than DTLS here because in DTLS the epoch is folded into the sequence number used to make the nonce, but in QUIC the nonce is just the packet number. This issue is intended to raise the question of if we should revisit that, for instance by putting the epoch in the AD.</p>
<p>[0] <a href="https://mailarchive.ietf.org/arch/msg/tls/Ri33zZmFNb1kZ4HToDHs9cDDTPY/" rel="nofollow">https://mailarchive.ietf.org/arch/msg/tls/Ri33zZmFNb1kZ4HToDHs9cDDTPY/</a></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3661">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK63WCRH5HPC45G5RNLRRXCJRANCNFSM4NCUCTOA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK43MAWNNYPPXZQHM5LRRXCJRA5CNFSM4NCUCTOKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JHKAEVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3661",
"url": "https://github.com/quicwg/base-drafts/issues/3661",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebf1e986606e_508e3fd406ecd9601915a8--


From nobody Sat May 16 05:13:41 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 EC5173A0AE1 for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 05:13:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -5.149
X-Spam-Level: 
X-Spam-Status: No, score=-5.149 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 dJcuVQtNnUxn for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 05:13:38 -0700 (PDT)
Received: from out-13.smtp.github.com (out-13.smtp.github.com [192.30.254.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E4E6B3A0AE0 for <quic-issues@ietf.org>; Sat, 16 May 2020 05:13:38 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 4AC7D260477 for <quic-issues@ietf.org>; Sat, 16 May 2020 05:13:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589631218; bh=1Zj9karBNQ/EAvQaLsduEhTjt8Fl1MFkFhYxG1mA4UY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FUel6S4KslLq8plWIGJnIFqbHBbNIXBCVBRObM6mLVlvfPuxs0hkdwzVYQvd8ZlWx SXr1s46I29ziM7wt/195KIyJkVcEUdeINIYY/vJq9H/e/Q+mU5Mngf+BsGChOw+QQ/ +oCKZ/ZaI/IICMC+yOi19QaunFKmdAOlHmSrnkLU=
Date: Sat, 16 May 2020 05:13:38 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5HBDML37V7OJAVDZN4ZO47FEVBNHHCJ2QBFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3661/629636321@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3661@github.com>
References: <quicwg/base-drafts/issues/3661@github.com>
Subject: Re: [quicwg/base-drafts] Include epoch in the AAD or the nonce? (#3661)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ebfd8f259c4_19f33f94d26cd96838124"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2it0gtEyERPnmyP26XwEngZiPfo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 16 May 2020 12:13:40 -0000

----==_mimepart_5ebfd8f259c4_19f33f94d26cd96838124
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

See also: https://mailarchive.ietf.org/arch/msg/tls/YE1uAmPFL_59E-5h9fHn0sLE_B0/

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3661#issuecomment-629636321
----==_mimepart_5ebfd8f259c4_19f33f94d26cd96838124
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>See also: <a href="https://mailarchive.ietf.org/arch/msg/tls/YE1uAmPFL_59E-5h9fHn0sLE_B0/" rel="nofollow">https://mailarchive.ietf.org/arch/msg/tls/YE1uAmPFL_59E-5h9fHn0sLE_B0/</a></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3661#issuecomment-629636321">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYTPWZLFTTR2MK64ELRRZ7PFANCNFSM4NCUCTOA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3M7MTMRK2XJGGBA63RRZ7PFA5CNFSM4NCUCTOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWDXZYI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3661#issuecomment-629636321",
"url": "https://github.com/quicwg/base-drafts/issues/3661#issuecomment-629636321",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ebfd8f259c4_19f33f94d26cd96838124--


From nobody Sat May 16 12:43:38 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 AAEDF3A0854 for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:43:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.201
X-Spam-Level: 
X-Spam-Status: No, score=-1.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZEXoZ-7oomKL for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:43:33 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2FEA23A0844 for <quic-issues@ietf.org>; Sat, 16 May 2020 12:43:33 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 44AD5521021 for <quic-issues@ietf.org>; Sat, 16 May 2020 12:43:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589658212; bh=l8aypjvousF3bwazarvRoZFGuo5SsbycH6mmym3xJ68=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nUimltLZtFtgnHY5jVEOm0dTo8y40S9TnpjHe+ejidWIiyzQCJO6LdT3O3glCNy31 fecZp1xxXHea/6mtouRGW89459+px3/5whozoOZ2XF1MeXG55ta5JAjZRanVRPz+g3 6KnJPityv7zAz2CIOyrXQjSzR2xfaFOdZfVLOXC4=
Date: Sat, 16 May 2020 12:43:32 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6OPSX5HOU3TQMQ5D54ZQRWJEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/review/413102330@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec04264341f7_4d893fba388cd96c293326"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_fjowjbgkF5VN7bbJYWc1oyMFfs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 16 May 2020 19:43:35 -0000

----==_mimepart_5ec04264341f7_4d893fba388cd96c293326
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.

Some small suggestions, but this seems close.

> @@ -889,17 +889,36 @@ Timely delivery of ACK frames is important for efficient loss recovery. Packets
 containing only ACK frames SHOULD therefore not be paced, to avoid delaying
 their delivery to the peer.
 
-Sending multiple packets into the network without any delay between them
-creates a packet burst that might cause short-term congestion and losses.
-Implementations MUST either use pacing or limit such bursts to the initial
-congestion window, which is recommended to be the minimum of
-`10 * max_datagram_size` and `max(2 * max_datagram_size, 14720))`, where
-max_datagram_size is the current maximum size of a datagram for the connection,
-not including UDP or IP overhead.
-
-As an example of a well-known and publicly available implementation of a flow
-pacer, implementers are referred to the Fair Queue packet scheduler (fq qdisc)
-in Linux (3.11 onwards).
+Endpoints can implement pacing as they choose. A perfectly paced sender spreads
+bytes exactly evenly over time. For a window-based congestion controller, such

```suggestion
packets exactly evenly over time. For a window-based congestion controller, such
```

Given overheads, spreading bytes evenly is impractical.

> +bytes exactly evenly over time. For a window-based congestion controller, such
+as the one in this document, that rate can be computed by averaging the
+congestion window over the round-trip time. Expressed as a rate in bytes:
+
+~~~
+rate = N * congestion_window / smoothed_rtt
+~~~
+
+Or, expressed as an inter-packet interval:
+
+~~~
+interval = smoothed_rtt * packet_size / congestion_window / N
+~~~
+
+Using a value for `N` that is small, but at least 1 (for example, 1.25) ensures
+that short-term variations in round-trip time or scheduler delays don't result

```suggestion
that variations in round-trip time don't result
```

I'd address the scheduler delay issue separately(also, 1.25x may not be enough to fix scheduler delay) and the variations in round trip time may not be short term(ie: a buffer draining).

> +as the one in this document, that rate can be computed by averaging the
+congestion window over the round-trip time. Expressed as a rate in bytes:
+
+~~~
+rate = N * congestion_window / smoothed_rtt
+~~~
+
+Or, expressed as an inter-packet interval:
+
+~~~
+interval = smoothed_rtt * packet_size / congestion_window / N
+~~~
+
+Using a value for `N` that is small, but at least 1 (for example, 1.25) ensures
+that short-term variations in round-trip time or scheduler delays don't result
+in under-utilization of the congestion window.

```suggestion
in under-utilization of the congestion window.  Values of 'N' larger than 1 result
in the sender being ack-clocked when the window is fully utilized and
acknowledgements arrive smoothly.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-413102330
----==_mimepart_5ec04264341f7_4d893fba388cd96c293326
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ianswett</b> commented on this pull request.</p>=0D
=0D
<p>Some small suggestions, but this seems close.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3630#discussi=
on_r426183373">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -889,17 +889,36 @@ Timely delivery of A=
CK frames is important for efficient loss recovery. Packets=0D
 containing only ACK frames SHOULD therefore not be paced, to avoid delay=
ing=0D
 their delivery to the peer.=0D
 =0D
-Sending multiple packets into the network without any delay between them=
=0D
-creates a packet burst that might cause short-term congestion and losses=
.=0D
-Implementations MUST either use pacing or limit such bursts to the initi=
al=0D
-congestion window, which is recommended to be the minimum of=0D
-`10 * max_datagram_size` and `max(2 * max_datagram_size, 14720))`, where=
=0D
-max_datagram_size is the current maximum size of a datagram for the conn=
ection,=0D
-not including UDP or IP overhead.=0D
-=0D
-As an example of a well-known and publicly available implementation of a=
 flow=0D
-pacer, implementers are referred to the Fair Queue packet scheduler (fq =
qdisc)=0D
-in Linux (3.11 onwards).=0D
+Endpoints can implement pacing as they choose. A perfectly paced sender =
spreads=0D
+bytes exactly evenly over time. For a window-based congestion controller=
, such=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-bytes exactly evenly over time. For a window-=
based congestion controller, such=0D
+packets exactly evenly over time. For a window-based congestion controll=
er, such=0D
</pre>=0D
=0D
<p>Given overheads, spreading bytes evenly is impractical.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3630#discussi=
on_r426183948">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +bytes exactly evenly over time. For a win=
dow-based congestion controller, such=0D
+as the one in this document, that rate can be computed by averaging the=0D=

+congestion window over the round-trip time. Expressed as a rate in bytes=
:=0D
+=0D
+~~~=0D
+rate =3D N * congestion_window / smoothed_rtt=0D
+~~~=0D
+=0D
+Or, expressed as an inter-packet interval:=0D
+=0D
+~~~=0D
+interval =3D smoothed_rtt * packet_size / congestion_window / N=0D
+~~~=0D
+=0D
+Using a value for `N` that is small, but at least 1 (for example, 1.25) =
ensures=0D
+that short-term variations in round-trip time or scheduler delays don&#3=
9;t result=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-that short-term variations in round-trip time=
 or scheduler delays don't result=0D
+that variations in round-trip time don't result=0D
</pre>=0D
=0D
<p>I'd address the scheduler delay issue separately(also, 1.25x may not b=
e enough to fix scheduler delay) and the variations in round trip time ma=
y not be short term(ie: a buffer draining).</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3630#discussi=
on_r426184210">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +as the one in this document, that rate ca=
n be computed by averaging the=0D
+congestion window over the round-trip time. Expressed as a rate in bytes=
:=0D
+=0D
+~~~=0D
+rate =3D N * congestion_window / smoothed_rtt=0D
+~~~=0D
+=0D
+Or, expressed as an inter-packet interval:=0D
+=0D
+~~~=0D
+interval =3D smoothed_rtt * packet_size / congestion_window / N=0D
+~~~=0D
+=0D
+Using a value for `N` that is small, but at least 1 (for example, 1.25) =
ensures=0D
+that short-term variations in round-trip time or scheduler delays don&#3=
9;t result=0D
+in under-utilization of the congestion window.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-in under-utilization of the congestion window=
.=0D
+in under-utilization of the congestion window.  Values of 'N' larger tha=
n 1 result=0D
+in the sender being ack-clocked when the window is fully utilized and=0D=

+acknowledgements arrive smoothly.=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3630#pullrequestreview-413102330">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K3UIBCESWZW3JLAKXLRR3UGJANCNFSM4M2ELDDA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK3UGVOXZE5PKH263QTRR3UGJA5CNFSM4=
M2ELDDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCPXB6Q.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestrev=
iew-413102330",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview=
-413102330",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec04264341f7_4d893fba388cd96c293326--


From nobody Sat May 16 12:44:50 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 CC59D3A0850 for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:44:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 LkhtDHIiHSJ2 for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:44:46 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AB1AB3A07D5 for <quic-issues@ietf.org>; Sat, 16 May 2020 12:44:46 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id D92D2960352 for <quic-issues@ietf.org>; Sat, 16 May 2020 12:44:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589658285; bh=eVUYC8kaME3+GcLbdQXFmuBhr56yQ5vi8r7sGHjXNC4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Vs+eukJ0FxMNIy5bQoMW4+1qu8YSFErAvIO6zV1BSV0YS0TxOtSIgbYc8z5Ci37x4 pkcAb6Ujh/j2c6/GTeHCJ5nn/1g/hplyccg44EU/eRDflCyiZk8DivOhCGo7cgLmFg GdSahG/1K2qKcfBUxxi0fXaovbBwdZ+9JSAKvkuM=
Date: Sat, 16 May 2020 12:44:45 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2YLVQUS3DZBOOOLDF4ZQR23EVBNHHCJTOADM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/review/413103419@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec042adca96b_35b33fd2a46cd96c1998be"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/V-u9jyLmblGTW185ylZweDzk4ws>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 16 May 2020 19:44:48 -0000

----==_mimepart_5ec042adca96b_35b33fd2a46cd96c1998be
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Packet
+
+When a packet is received, it may allow the server to send
+if the server was previously amplification limited.
+
+Psuedocode for OnPacketReceived follows:

Thanks!

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653#discussion_r426184659
----==_mimepart_5ec042adca96b_35b33fd2a46cd96c1998be
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3653#discussion_r426184659">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Packet
+
+When a packet is received, it may allow the server to send
+if the server was previously amplification limited.
+
+Psuedocode for OnPacketReceived follows:
</pre>
<p>Thanks!</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3653#discussion_r426184659">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3UU3FIXEIKDQJIGSLRR3UK3ANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3BMQGEXX2ZRGNXAC3RR3UK3A5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCPXKOY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653#discussion_r426184659",
"url": "https://github.com/quicwg/base-drafts/pull/3653#discussion_r426184659",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec042adca96b_35b33fd2a46cd96c1998be--


From nobody Sat May 16 12:50:04 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 AA7FF3A0880 for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:50:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 AIg4te5QIPJC for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:50:01 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B0A5E3A087D for <quic-issues@ietf.org>; Sat, 16 May 2020 12:50:01 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 984D36E0840 for <quic-issues@ietf.org>; Sat, 16 May 2020 12:50:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589658600; bh=2tm7CeCtOAZfZB4rbyPseCRdgrIhoJX1bdYgdNlKXtw=; h=Date:From:To:Subject:From; b=YCFZITpFoQe/dcnduntcxkTkiWWbYRegasf5fFtPUy3T3qZh08r93bF8TlzNyCNDS oid9+KaP7KUp99qfmErNFe29nrIlARBeNTN9iwIWZKH197Pu16o6HzuWOj3S7Vt6NT q6PRKINqwpUH7Hj6brqw8E+Mo5RAMbqgKYoVN19I=
Date: Sat, 16 May 2020 12:50:00 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-onpacketreceived/2a479f-75aeb2@github.com>
Subject: [quicwg/base-drafts] 75aeb2: Update based on comments
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/f2moEnnoixucSkILCgqAWqrnvNI>
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: Sat, 16 May 2020 19:50:03 -0000

  Branch: refs/heads/ianswett-onpacketreceived
  Home:   https://github.com/quicwg/base-drafts
  Commit: 75aeb2ffb9deaa7bb33ad35b7a6960388f39844a
      https://github.com/quicwg/base-drafts/commit/75aeb2ffb9deaa7bb33ad35b7a6960388f39844a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-16 (Sat, 16 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update based on comments



From nobody Sat May 16 12:50:13 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 834CB3A087D for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:50:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 xRh9ONgck57E for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:50:10 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 760A33A0880 for <quic-issues@ietf.org>; Sat, 16 May 2020 12:50:10 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id C4C9C260199 for <quic-issues@ietf.org>; Sat, 16 May 2020 12:50:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589658609; bh=NoDd+dXEihDo3pLwrq5YLC68XFdLDIyh1zIG9zx5LJQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vVZdrPEt3qIiZm6vaV2JFjtV+8wtZuImbpWYFREDZQZnhht1TnwXnYbXvySj30+U3 U4D85vkl1F0/l/Havg1bxqWSBa0LWWSv0iBCVUVJRWMZtWEBdQ+/IZtSUd0a70bBs3 OucZejk5xvxOmcRECUXJeVuliBQFLxHHnz9J0WBw=
Date: Sat, 16 May 2020 12:50:09 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/push/5083593730@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec043f17f3c5_111f3fc67becd96c2428d3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/n3BzitMijuhvbFVRna9weme53LU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 16 May 2020 19:50:11 -0000

----==_mimepart_5ec043f17f3c5_111f3fc67becd96c2428d3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

75aeb2ffb9deaa7bb33ad35b7a6960388f39844a  Update based on comments


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653/files/2a479f634819f531129ab49ae871f23ed9e13940..75aeb2ffb9deaa7bb33ad35b7a6960388f39844a

----==_mimepart_5ec043f17f3c5_111f3fc67becd96c2428d3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/75aeb2ffb9deaa7bb33ad35b7a6960388f39844a">75aeb2f</a>  Update based on comments</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3653/files/2a479f634819f531129ab49ae871f23ed9e13940..75aeb2ffb9deaa7bb33ad35b7a6960388f39844a">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2LIACF4NC5BRGSJVDRR3U7DANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK47MVUSYW6YAIBJQ63RR3U7DA5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTOMZXGQ3DEMSQOVZWQIZVGA4DGNJZGM3TGMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653/files/2a479f634819f531129ab49ae871f23ed9e13940..75aeb2ffb9deaa7bb33ad35b7a6960388f39844a",
"url": "https://github.com/quicwg/base-drafts/pull/3653/files/2a479f634819f531129ab49ae871f23ed9e13940..75aeb2ffb9deaa7bb33ad35b7a6960388f39844a",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec043f17f3c5_111f3fc67becd96c2428d3--


From nobody Sat May 16 12:50:31 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 7A77E3A0885 for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:50:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.474
X-Spam-Level: 
X-Spam-Status: No, score=-0.474 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=0.726, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 R6gcrKucstIB for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:50:28 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2D81F3A0880 for <quic-issues@ietf.org>; Sat, 16 May 2020 12:50:28 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id C5F56E0CE0 for <quic-issues@ietf.org>; Sat, 16 May 2020 12:50:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589658626; bh=06XB/jPCjmxIiFTwv4r8w/5SDvSql5uWVjM2tys5yKk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ghBOCtdWVdNuRj5t3Eq9zv7fm0GuHSEEgmDnHvAGSMWP+YddQusOCmxg86XBof9LR hzTT8ard0xvAVucSvLJOxrLD68xsK6jzeRHKZj51jyXOdruJe6lAqGD3rkw8O7bKMm fLkoHJzo7h1AJ8TAwWURNE4bWBkmX0QiARE9X2O0=
Date: Sat, 16 May 2020 12:50:26 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7FHLV244BX54XQ4CF4ZQSQFEVBNHHCJTOADM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/review/413103713@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec04402b7320_46ca3f86304cd95c182582"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_UVoPYxNzvjwCJdf9uu5M55-Zf0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 16 May 2020 19:50:29 -0000

----==_mimepart_5ec04402b7320_46ca3f86304cd95c182582
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.

Thanks everyone, updated based on comments.  PTAL.

> @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Packet
+
+When a packet is received, it may allow the server to send
+if the server was previously amplification limited.
+
+Psuedocode for OnPacketReceived follows:
+
+~~~
+OnPacketReceived(packet):
+  // If this packet unblocks the server, arm the

Yeah, I was hoping to avoid that because I think it'd be a substantial amount of extra pseudocode.

> @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Packet
+
+When a packet is received, it may allow the server to send
+if the server was previously amplification limited.
+
+Psuedocode for OnPacketReceived follows:
+
+~~~
+OnPacketReceived(packet):

Method renamed and comment updated.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-413103713
----==_mimepart_5ec04402b7320_46ca3f86304cd95c182582
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<p>Thanks everyone, updated based on comments.  PTAL.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3653#discussion_r426185038">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Packet
+
+When a packet is received, it may allow the server to send
+if the server was previously amplification limited.
+
+Psuedocode for OnPacketReceived follows:
+
+~~~
+OnPacketReceived(packet):
+  // If this packet unblocks the server, arm the
</pre>
<p>Yeah, I was hoping to avoid that because I think it'd be a substantial amount of extra pseudocode.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3653#discussion_r426185056">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Packet
+
+When a packet is received, it may allow the server to send
+if the server was previously amplification limited.
+
+Psuedocode for OnPacketReceived follows:
+
+~~~
+OnPacketReceived(packet):
</pre>
<p>Method renamed and comment updated.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-413103713">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK434RFLWXBVAEWDDNLRR3VAFANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2PSRN26TOEVOXN2H3RR3VAFA5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCPXMYI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-413103713",
"url": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-413103713",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec04402b7320_46ca3f86304cd95c182582--


From nobody Sat May 16 12:51:27 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 B67833A0887 for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:51:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 kxHUth0mIcwy for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:51:20 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8C8FB3A0880 for <quic-issues@ietf.org>; Sat, 16 May 2020 12:51:19 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id B723A660C5A for <quic-issues@ietf.org>; Sat, 16 May 2020 12:51:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589658678; bh=JEtqkFYoO89mmG615ynm0t8w351V7ItYgmtlOXYun5A=; h=Date:From:To:Subject:From; b=Anwqp2vhAYCBO/GkPDFCib075riRkkvk+U7gLe4dfv2xYfH5CqdGu0gPc5C7Agv1b 4fYyFQ8WgTFEvGdRxpP4Tw+bdNaBE6XQF4lKV7+X/C4D8+UYT/mLl1NNvmBSpTA+LW 3rklVGQYf8PHSIC0VyjDreBYdGMkUiRUmGTBGUKw=
Date: Sat, 16 May 2020 12:51:18 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d8cd09-1deeec@github.com>
Subject: [quicwg/base-drafts] 800b0c: Script updating gh-pages from f746d7f9. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/soNiYMHNmINYAADM9utWkHbb5Ww>
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: Sat, 16 May 2020 19:51:26 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 800b0c2564d34a75011c9d84bea2a69d30b3c6ee
      https://github.com/quicwg/base-drafts/commit/800b0c2564d34a75011c9d84bea2a69d30b3c6ee
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-15 (Wed, 15 Apr 2020)

  Changed paths:
    A .gitignore
    A alternative-format/draft-ietf-quic-http.html
    A alternative-format/draft-ietf-quic-http.txt
    A alternative-format/draft-ietf-quic-invariants.html
    A alternative-format/draft-ietf-quic-invariants.txt
    A alternative-format/draft-ietf-quic-qpack.html
    A alternative-format/draft-ietf-quic-qpack.txt
    A alternative-format/draft-ietf-quic-recovery.html
    A alternative-format/draft-ietf-quic-recovery.txt
    A alternative-format/draft-ietf-quic-tls.html
    A alternative-format/draft-ietf-quic-tls.txt
    A alternative-format/draft-ietf-quic-transport.html
    A alternative-format/draft-ietf-quic-transport.txt
    A alternative-format/index.html
    A archive.json
    A authenticate-hs-cid/draft-ietf-quic-http.html
    A authenticate-hs-cid/draft-ietf-quic-http.txt
    A authenticate-hs-cid/draft-ietf-quic-invariants.html
    A authenticate-hs-cid/draft-ietf-quic-invariants.txt
    A authenticate-hs-cid/draft-ietf-quic-qpack.html
    A authenticate-hs-cid/draft-ietf-quic-qpack.txt
    A authenticate-hs-cid/draft-ietf-quic-recovery.html
    A authenticate-hs-cid/draft-ietf-quic-recovery.txt
    A authenticate-hs-cid/draft-ietf-quic-tls.html
    A authenticate-hs-cid/draft-ietf-quic-tls.txt
    A authenticate-hs-cid/draft-ietf-quic-transport.html
    A authenticate-hs-cid/draft-ietf-quic-transport.txt
    A authenticate-hs-cid/index.html
    A blocked-frame-limit-names/draft-ietf-quic-http.html
    A blocked-frame-limit-names/draft-ietf-quic-http.txt
    A blocked-frame-limit-names/draft-ietf-quic-invariants.html
    A blocked-frame-limit-names/draft-ietf-quic-invariants.txt
    A blocked-frame-limit-names/draft-ietf-quic-qpack.html
    A blocked-frame-limit-names/draft-ietf-quic-qpack.txt
    A blocked-frame-limit-names/draft-ietf-quic-recovery.html
    A blocked-frame-limit-names/draft-ietf-quic-recovery.txt
    A blocked-frame-limit-names/draft-ietf-quic-tls.html
    A blocked-frame-limit-names/draft-ietf-quic-tls.txt
    A blocked-frame-limit-names/draft-ietf-quic-transport.html
    A blocked-frame-limit-names/draft-ietf-quic-transport.txt
    A blocked-frame-limit-names/index.html
    A captions/draft-ietf-quic-http.html
    A captions/draft-ietf-quic-http.txt
    A captions/draft-ietf-quic-invariants.html
    A captions/draft-ietf-quic-invariants.txt
    A captions/draft-ietf-quic-qpack.html
    A captions/draft-ietf-quic-qpack.txt
    A captions/draft-ietf-quic-recovery.html
    A captions/draft-ietf-quic-recovery.txt
    A captions/draft-ietf-quic-tls.html
    A captions/draft-ietf-quic-tls.txt
    A captions/draft-ietf-quic-transport.html
    A captions/draft-ietf-quic-transport.txt
    A captions/index.html
    A dead-hp-note/draft-ietf-quic-http.html
    A dead-hp-note/draft-ietf-quic-http.txt
    A dead-hp-note/draft-ietf-quic-invariants.html
    A dead-hp-note/draft-ietf-quic-invariants.txt
    A dead-hp-note/draft-ietf-quic-qpack.html
    A dead-hp-note/draft-ietf-quic-qpack.txt
    A dead-hp-note/draft-ietf-quic-recovery.html
    A dead-hp-note/draft-ietf-quic-recovery.txt
    A dead-hp-note/draft-ietf-quic-tls.html
    A dead-hp-note/draft-ietf-quic-tls.txt
    A dead-hp-note/draft-ietf-quic-transport.html
    A dead-hp-note/draft-ietf-quic-transport.txt
    A dead-hp-note/index.html
    A dont-remember-max_ack_delay/draft-ietf-quic-http.html
    A dont-remember-max_ack_delay/draft-ietf-quic-http.txt
    A dont-remember-max_ack_delay/draft-ietf-quic-invariants.html
    A dont-remember-max_ack_delay/draft-ietf-quic-invariants.txt
    A dont-remember-max_ack_delay/draft-ietf-quic-qpack.html
    A dont-remember-max_ack_delay/draft-ietf-quic-qpack.txt
    A dont-remember-max_ack_delay/draft-ietf-quic-recovery.html
    A dont-remember-max_ack_delay/draft-ietf-quic-recovery.txt
    A dont-remember-max_ack_delay/draft-ietf-quic-tls.html
    A dont-remember-max_ack_delay/draft-ietf-quic-tls.txt
    A dont-remember-max_ack_delay/draft-ietf-quic-transport.html
    A dont-remember-max_ack_delay/draft-ietf-quic-transport.txt
    A dont-remember-max_ack_delay/index.html
    A draft-ietf-quic-http.html
    A draft-ietf-quic-http.txt
    A draft-ietf-quic-invariants.html
    A draft-ietf-quic-invariants.txt
    A draft-ietf-quic-qpack.html
    A draft-ietf-quic-qpack.txt
    A draft-ietf-quic-recovery.html
    A draft-ietf-quic-recovery.txt
    A draft-ietf-quic-tls.html
    A draft-ietf-quic-tls.txt
    A draft-ietf-quic-transport.html
    A draft-ietf-quic-transport.txt
    A expire_reflog/draft-ietf-quic-http.html
    A expire_reflog/draft-ietf-quic-http.txt
    A expire_reflog/draft-ietf-quic-invariants.html
    A expire_reflog/draft-ietf-quic-invariants.txt
    A expire_reflog/draft-ietf-quic-qpack.html
    A expire_reflog/draft-ietf-quic-qpack.txt
    A expire_reflog/draft-ietf-quic-recovery.html
    A expire_reflog/draft-ietf-quic-recovery.txt
    A expire_reflog/draft-ietf-quic-tls.html
    A expire_reflog/draft-ietf-quic-tls.txt
    A expire_reflog/draft-ietf-quic-transport.html
    A expire_reflog/draft-ietf-quic-transport.txt
    A expire_reflog/index.html
    A http/alpn_specificity/draft-ietf-quic-http.html
    A http/alpn_specificity/draft-ietf-quic-http.txt
    A http/alpn_specificity/draft-ietf-quic-invariants.html
    A http/alpn_specificity/draft-ietf-quic-invariants.txt
    A http/alpn_specificity/draft-ietf-quic-qpack.html
    A http/alpn_specificity/draft-ietf-quic-qpack.txt
    A http/alpn_specificity/draft-ietf-quic-recovery.html
    A http/alpn_specificity/draft-ietf-quic-recovery.txt
    A http/alpn_specificity/draft-ietf-quic-tls.html
    A http/alpn_specificity/draft-ietf-quic-tls.txt
    A http/alpn_specificity/draft-ietf-quic-transport.html
    A http/alpn_specificity/draft-ietf-quic-transport.txt
    A http/alpn_specificity/index.html
    A http/authority/draft-ietf-quic-http.html
    A http/authority/draft-ietf-quic-http.txt
    A http/authority/draft-ietf-quic-invariants.html
    A http/authority/draft-ietf-quic-invariants.txt
    A http/authority/draft-ietf-quic-qpack.html
    A http/authority/draft-ietf-quic-qpack.txt
    A http/authority/draft-ietf-quic-recovery.html
    A http/authority/draft-ietf-quic-recovery.txt
    A http/authority/draft-ietf-quic-tls.html
    A http/authority/draft-ietf-quic-tls.txt
    A http/authority/draft-ietf-quic-transport.html
    A http/authority/draft-ietf-quic-transport.txt
    A http/authority/index.html
    A http/blowing_up_hurts/draft-ietf-quic-http.html
    A http/blowing_up_hurts/draft-ietf-quic-http.txt
    A http/blowing_up_hurts/draft-ietf-quic-invariants.html
    A http/blowing_up_hurts/draft-ietf-quic-invariants.txt
    A http/blowing_up_hurts/draft-ietf-quic-qpack.html
    A http/blowing_up_hurts/draft-ietf-quic-qpack.txt
    A http/blowing_up_hurts/draft-ietf-quic-recovery.html
    A http/blowing_up_hurts/draft-ietf-quic-recovery.txt
    A http/blowing_up_hurts/draft-ietf-quic-tls.html
    A http/blowing_up_hurts/draft-ietf-quic-tls.txt
    A http/blowing_up_hurts/draft-ietf-quic-transport.html
    A http/blowing_up_hurts/draft-ietf-quic-transport.txt
    A http/blowing_up_hurts/index.html
    A http/core_and_friends/draft-ietf-quic-http.html
    A http/core_and_friends/draft-ietf-quic-http.txt
    A http/core_and_friends/draft-ietf-quic-invariants.html
    A http/core_and_friends/draft-ietf-quic-invariants.txt
    A http/core_and_friends/draft-ietf-quic-qpack.html
    A http/core_and_friends/draft-ietf-quic-qpack.txt
    A http/core_and_friends/draft-ietf-quic-recovery.html
    A http/core_and_friends/draft-ietf-quic-recovery.txt
    A http/core_and_friends/draft-ietf-quic-tls.html
    A http/core_and_friends/draft-ietf-quic-tls.txt
    A http/core_and_friends/draft-ietf-quic-transport.html
    A http/core_and_friends/draft-ietf-quic-transport.txt
    A http/core_and_friends/index.html
    A http/grease_errors/draft-ietf-quic-http.html
    A http/grease_errors/draft-ietf-quic-http.txt
    A http/grease_errors/draft-ietf-quic-invariants.html
    A http/grease_errors/draft-ietf-quic-invariants.txt
    A http/grease_errors/draft-ietf-quic-qpack.html
    A http/grease_errors/draft-ietf-quic-qpack.txt
    A http/grease_errors/draft-ietf-quic-recovery.html
    A http/grease_errors/draft-ietf-quic-recovery.txt
    A http/grease_errors/draft-ietf-quic-tls.html
    A http/grease_errors/draft-ietf-quic-tls.txt
    A http/grease_errors/draft-ietf-quic-transport.html
    A http/grease_errors/draft-ietf-quic-transport.txt
    A http/grease_errors/index.html
    A http/no_rtt/draft-ietf-quic-http.html
    A http/no_rtt/draft-ietf-quic-http.txt
    A http/no_rtt/draft-ietf-quic-invariants.html
    A http/no_rtt/draft-ietf-quic-invariants.txt
    A http/no_rtt/draft-ietf-quic-qpack.html
    A http/no_rtt/draft-ietf-quic-qpack.txt
    A http/no_rtt/draft-ietf-quic-recovery.html
    A http/no_rtt/draft-ietf-quic-recovery.txt
    A http/no_rtt/draft-ietf-quic-tls.html
    A http/no_rtt/draft-ietf-quic-tls.txt
    A http/no_rtt/draft-ietf-quic-transport.html
    A http/no_rtt/draft-ietf-quic-transport.txt
    A http/no_rtt/index.html
    A http/one_true_reference_format/draft-ietf-quic-http.html
    A http/one_true_reference_format/draft-ietf-quic-http.txt
    A http/one_true_reference_format/draft-ietf-quic-invariants.html
    A http/one_true_reference_format/draft-ietf-quic-invariants.txt
    A http/one_true_reference_format/draft-ietf-quic-qpack.html
    A http/one_true_reference_format/draft-ietf-quic-qpack.txt
    A http/one_true_reference_format/draft-ietf-quic-recovery.html
    A http/one_true_reference_format/draft-ietf-quic-recovery.txt
    A http/one_true_reference_format/draft-ietf-quic-tls.html
    A http/one_true_reference_format/draft-ietf-quic-tls.txt
    A http/one_true_reference_format/draft-ietf-quic-transport.html
    A http/one_true_reference_format/draft-ietf-quic-transport.txt
    A http/one_true_reference_format/index.html
    A http/push_association/draft-ietf-quic-http.html
    A http/push_association/draft-ietf-quic-http.txt
    A http/push_association/draft-ietf-quic-invariants.html
    A http/push_association/draft-ietf-quic-invariants.txt
    A http/push_association/draft-ietf-quic-qpack.html
    A http/push_association/draft-ietf-quic-qpack.txt
    A http/push_association/draft-ietf-quic-recovery.html
    A http/push_association/draft-ietf-quic-recovery.txt
    A http/push_association/draft-ietf-quic-tls.html
    A http/push_association/draft-ietf-quic-tls.txt
    A http/push_association/draft-ietf-quic-transport.html
    A http/push_association/draft-ietf-quic-transport.txt
    A http/push_association/index.html
    A http/references/draft-ietf-quic-http.html
    A http/references/draft-ietf-quic-http.txt
    A http/references/draft-ietf-quic-invariants.html
    A http/references/draft-ietf-quic-invariants.txt
    A http/references/draft-ietf-quic-qpack.html
    A http/references/draft-ietf-quic-qpack.txt
    A http/references/draft-ietf-quic-recovery.html
    A http/references/draft-ietf-quic-recovery.txt
    A http/references/draft-ietf-quic-tls.html
    A http/references/draft-ietf-quic-tls.txt
    A http/references/draft-ietf-quic-transport.html
    A http/references/draft-ietf-quic-transport.txt
    A http/references/index.html
    A http/security_considerations/draft-ietf-quic-http.html
    A http/security_considerations/draft-ietf-quic-http.txt
    A http/security_considerations/draft-ietf-quic-invariants.html
    A http/security_considerations/draft-ietf-quic-invariants.txt
    A http/security_considerations/draft-ietf-quic-qpack.html
    A http/security_considerations/draft-ietf-quic-qpack.txt
    A http/security_considerations/draft-ietf-quic-recovery.html
    A http/security_considerations/draft-ietf-quic-recovery.txt
    A http/security_considerations/draft-ietf-quic-tls.html
    A http/security_considerations/draft-ietf-quic-tls.txt
    A http/security_considerations/draft-ietf-quic-transport.html
    A http/security_considerations/draft-ietf-quic-transport.txt
    A http/security_considerations/index.html
    A http/sewage_tunnels/draft-ietf-quic-http.html
    A http/sewage_tunnels/draft-ietf-quic-http.txt
    A http/sewage_tunnels/draft-ietf-quic-invariants.html
    A http/sewage_tunnels/draft-ietf-quic-invariants.txt
    A http/sewage_tunnels/draft-ietf-quic-qpack.html
    A http/sewage_tunnels/draft-ietf-quic-qpack.txt
    A http/sewage_tunnels/draft-ietf-quic-recovery.html
    A http/sewage_tunnels/draft-ietf-quic-recovery.txt
    A http/sewage_tunnels/draft-ietf-quic-tls.html
    A http/sewage_tunnels/draft-ietf-quic-tls.txt
    A http/sewage_tunnels/draft-ietf-quic-transport.html
    A http/sewage_tunnels/draft-ietf-quic-transport.txt
    A http/sewage_tunnels/index.html
    A http/unknown_is_no-error/draft-ietf-quic-http.html
    A http/unknown_is_no-error/draft-ietf-quic-http.txt
    A http/unknown_is_no-error/draft-ietf-quic-invariants.html
    A http/unknown_is_no-error/draft-ietf-quic-invariants.txt
    A http/unknown_is_no-error/draft-ietf-quic-qpack.html
    A http/unknown_is_no-error/draft-ietf-quic-qpack.txt
    A http/unknown_is_no-error/draft-ietf-quic-recovery.html
    A http/unknown_is_no-error/draft-ietf-quic-recovery.txt
    A http/unknown_is_no-error/draft-ietf-quic-tls.html
    A http/unknown_is_no-error/draft-ietf-quic-tls.txt
    A http/unknown_is_no-error/draft-ietf-quic-transport.html
    A http/unknown_is_no-error/draft-ietf-quic-transport.txt
    A http/unknown_is_no-error/index.html
    A http/what_is_malformed/draft-ietf-quic-http.html
    A http/what_is_malformed/draft-ietf-quic-http.txt
    A http/what_is_malformed/draft-ietf-quic-invariants.html
    A http/what_is_malformed/draft-ietf-quic-invariants.txt
    A http/what_is_malformed/draft-ietf-quic-qpack.html
    A http/what_is_malformed/draft-ietf-quic-qpack.txt
    A http/what_is_malformed/draft-ietf-quic-recovery.html
    A http/what_is_malformed/draft-ietf-quic-recovery.txt
    A http/what_is_malformed/draft-ietf-quic-tls.html
    A http/what_is_malformed/draft-ietf-quic-tls.txt
    A http/what_is_malformed/draft-ietf-quic-transport.html
    A http/what_is_malformed/draft-ietf-quic-transport.txt
    A http/what_is_malformed/index.html
    A http/which_connection_close/draft-ietf-quic-http.html
    A http/which_connection_close/draft-ietf-quic-http.txt
    A http/which_connection_close/draft-ietf-quic-invariants.html
    A http/which_connection_close/draft-ietf-quic-invariants.txt
    A http/which_connection_close/draft-ietf-quic-qpack.html
    A http/which_connection_close/draft-ietf-quic-qpack.txt
    A http/which_connection_close/draft-ietf-quic-recovery.html
    A http/which_connection_close/draft-ietf-quic-recovery.txt
    A http/which_connection_close/draft-ietf-quic-tls.html
    A http/which_connection_close/draft-ietf-quic-tls.txt
    A http/which_connection_close/draft-ietf-quic-transport.html
    A http/which_connection_close/draft-ietf-quic-transport.txt
    A http/which_connection_close/index.html
    A http/without_authority/draft-ietf-quic-http.html
    A http/without_authority/draft-ietf-quic-http.txt
    A http/without_authority/draft-ietf-quic-invariants.html
    A http/without_authority/draft-ietf-quic-invariants.txt
    A http/without_authority/draft-ietf-quic-qpack.html
    A http/without_authority/draft-ietf-quic-qpack.txt
    A http/without_authority/draft-ietf-quic-recovery.html
    A http/without_authority/draft-ietf-quic-recovery.txt
    A http/without_authority/draft-ietf-quic-tls.html
    A http/without_authority/draft-ietf-quic-tls.txt
    A http/without_authority/draft-ietf-quic-transport.html
    A http/without_authority/draft-ietf-quic-transport.txt
    A http/without_authority/index.html
    A ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-http.html
    A ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-http.txt
    A ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-invariants.html
    A ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-invariants.txt
    A ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-qpack.html
    A ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-qpack.txt
    A ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-recovery.html
    A ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-recovery.txt
    A ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-tls.html
    A ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-tls.txt
    A ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-transport.html
    A ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-transport.txt
    A ianswett-PeerNotAwaitingAddressValidation/index.html
    A ianswett-adaptive-loss/draft-ietf-quic-http.html
    A ianswett-adaptive-loss/draft-ietf-quic-http.txt
    A ianswett-adaptive-loss/draft-ietf-quic-invariants.html
    A ianswett-adaptive-loss/draft-ietf-quic-invariants.txt
    A ianswett-adaptive-loss/draft-ietf-quic-qpack.html
    A ianswett-adaptive-loss/draft-ietf-quic-qpack.txt
    A ianswett-adaptive-loss/draft-ietf-quic-recovery.html
    A ianswett-adaptive-loss/draft-ietf-quic-recovery.txt
    A ianswett-adaptive-loss/draft-ietf-quic-tls.html
    A ianswett-adaptive-loss/draft-ietf-quic-tls.txt
    A ianswett-adaptive-loss/draft-ietf-quic-transport.html
    A ianswett-adaptive-loss/draft-ietf-quic-transport.txt
    A ianswett-adaptive-loss/index.html
    A ianswett-appendix-recommended/draft-ietf-quic-http.html
    A ianswett-appendix-recommended/draft-ietf-quic-http.txt
    A ianswett-appendix-recommended/draft-ietf-quic-invariants.html
    A ianswett-appendix-recommended/draft-ietf-quic-invariants.txt
    A ianswett-appendix-recommended/draft-ietf-quic-qpack.html
    A ianswett-appendix-recommended/draft-ietf-quic-qpack.txt
    A ianswett-appendix-recommended/draft-ietf-quic-recovery.html
    A ianswett-appendix-recommended/draft-ietf-quic-recovery.txt
    A ianswett-appendix-recommended/draft-ietf-quic-tls.html
    A ianswett-appendix-recommended/draft-ietf-quic-tls.txt
    A ianswett-appendix-recommended/draft-ietf-quic-transport.html
    A ianswett-appendix-recommended/draft-ietf-quic-transport.txt
    A ianswett-appendix-recommended/index.html
    A ianswett-ed-sending-probe-packets/draft-ietf-quic-http.html
    A ianswett-ed-sending-probe-packets/draft-ietf-quic-http.txt
    A ianswett-ed-sending-probe-packets/draft-ietf-quic-invariants.html
    A ianswett-ed-sending-probe-packets/draft-ietf-quic-invariants.txt
    A ianswett-ed-sending-probe-packets/draft-ietf-quic-qpack.html
    A ianswett-ed-sending-probe-packets/draft-ietf-quic-qpack.txt
    A ianswett-ed-sending-probe-packets/draft-ietf-quic-recovery.html
    A ianswett-ed-sending-probe-packets/draft-ietf-quic-recovery.txt
    A ianswett-ed-sending-probe-packets/draft-ietf-quic-tls.html
    A ianswett-ed-sending-probe-packets/draft-ietf-quic-tls.txt
    A ianswett-ed-sending-probe-packets/draft-ietf-quic-transport.html
    A ianswett-ed-sending-probe-packets/draft-ietf-quic-transport.txt
    A ianswett-ed-sending-probe-packets/index.html
    A ianswett-initial-pto/draft-ietf-quic-http.html
    A ianswett-initial-pto/draft-ietf-quic-http.txt
    A ianswett-initial-pto/draft-ietf-quic-invariants.html
    A ianswett-initial-pto/draft-ietf-quic-invariants.txt
    A ianswett-initial-pto/draft-ietf-quic-qpack.html
    A ianswett-initial-pto/draft-ietf-quic-qpack.txt
    A ianswett-initial-pto/draft-ietf-quic-recovery.html
    A ianswett-initial-pto/draft-ietf-quic-recovery.txt
    A ianswett-initial-pto/draft-ietf-quic-tls.html
    A ianswett-initial-pto/draft-ietf-quic-tls.txt
    A ianswett-initial-pto/draft-ietf-quic-transport.html
    A ianswett-initial-pto/draft-ietf-quic-transport.txt
    A ianswett-initial-pto/index.html
    A ianswett-loss-first/draft-ietf-quic-http.html
    A ianswett-loss-first/draft-ietf-quic-http.txt
    A ianswett-loss-first/draft-ietf-quic-invariants.html
    A ianswett-loss-first/draft-ietf-quic-invariants.txt
    A ianswett-loss-first/draft-ietf-quic-qpack.html
    A ianswett-loss-first/draft-ietf-quic-qpack.txt
    A ianswett-loss-first/draft-ietf-quic-recovery.html
    A ianswett-loss-first/draft-ietf-quic-recovery.txt
    A ianswett-loss-first/draft-ietf-quic-tls.html
    A ianswett-loss-first/draft-ietf-quic-tls.txt
    A ianswett-loss-first/draft-ietf-quic-transport.html
    A ianswett-loss-first/draft-ietf-quic-transport.txt
    A ianswett-loss-first/index.html
    A ianswett-pto-counts/draft-ietf-quic-http.html
    A ianswett-pto-counts/draft-ietf-quic-http.txt
    A ianswett-pto-counts/draft-ietf-quic-invariants.html
    A ianswett-pto-counts/draft-ietf-quic-invariants.txt
    A ianswett-pto-counts/draft-ietf-quic-qpack.html
    A ianswett-pto-counts/draft-ietf-quic-qpack.txt
    A ianswett-pto-counts/draft-ietf-quic-recovery.html
    A ianswett-pto-counts/draft-ietf-quic-recovery.txt
    A ianswett-pto-counts/draft-ietf-quic-tls.html
    A ianswett-pto-counts/draft-ietf-quic-tls.txt
    A ianswett-pto-counts/draft-ietf-quic-transport.html
    A ianswett-pto-counts/draft-ietf-quic-transport.txt
    A ianswett-pto-counts/index.html
    A ianswett-pto-deadlock-now/draft-ietf-quic-http.html
    A ianswett-pto-deadlock-now/draft-ietf-quic-http.txt
    A ianswett-pto-deadlock-now/draft-ietf-quic-invariants.html
    A ianswett-pto-deadlock-now/draft-ietf-quic-invariants.txt
    A ianswett-pto-deadlock-now/draft-ietf-quic-qpack.html
    A ianswett-pto-deadlock-now/draft-ietf-quic-qpack.txt
    A ianswett-pto-deadlock-now/draft-ietf-quic-recovery.html
    A ianswett-pto-deadlock-now/draft-ietf-quic-recovery.txt
    A ianswett-pto-deadlock-now/draft-ietf-quic-tls.html
    A ianswett-pto-deadlock-now/draft-ietf-quic-tls.txt
    A ianswett-pto-deadlock-now/draft-ietf-quic-transport.html
    A ianswett-pto-deadlock-now/draft-ietf-quic-transport.txt
    A ianswett-pto-deadlock-now/index.html
    A ianswett-remove-must/draft-ietf-quic-http.html
    A ianswett-remove-must/draft-ietf-quic-http.txt
    A ianswett-remove-must/draft-ietf-quic-invariants.html
    A ianswett-remove-must/draft-ietf-quic-invariants.txt
    A ianswett-remove-must/draft-ietf-quic-qpack.html
    A ianswett-remove-must/draft-ietf-quic-qpack.txt
    A ianswett-remove-must/draft-ietf-quic-recovery.html
    A ianswett-remove-must/draft-ietf-quic-recovery.txt
    A ianswett-remove-must/draft-ietf-quic-tls.html
    A ianswett-remove-must/draft-ietf-quic-tls.txt
    A ianswett-remove-must/draft-ietf-quic-transport.html
    A ianswett-remove-must/draft-ietf-quic-transport.txt
    A ianswett-remove-must/index.html
    A ianswett-retire-prior-to/draft-ietf-quic-http.html
    A ianswett-retire-prior-to/draft-ietf-quic-http.txt
    A ianswett-retire-prior-to/draft-ietf-quic-invariants.html
    A ianswett-retire-prior-to/draft-ietf-quic-invariants.txt
    A ianswett-retire-prior-to/draft-ietf-quic-qpack.html
    A ianswett-retire-prior-to/draft-ietf-quic-qpack.txt
    A ianswett-retire-prior-to/draft-ietf-quic-recovery.html
    A ianswett-retire-prior-to/draft-ietf-quic-recovery.txt
    A ianswett-retire-prior-to/draft-ietf-quic-tls.html
    A ianswett-retire-prior-to/draft-ietf-quic-tls.txt
    A ianswett-retire-prior-to/draft-ietf-quic-transport.html
    A ianswett-retire-prior-to/draft-ietf-quic-transport.txt
    A ianswett-retire-prior-to/index.html
    A ignore-same-version-vn/draft-ietf-quic-http.html
    A ignore-same-version-vn/draft-ietf-quic-http.txt
    A ignore-same-version-vn/draft-ietf-quic-invariants.html
    A ignore-same-version-vn/draft-ietf-quic-invariants.txt
    A ignore-same-version-vn/draft-ietf-quic-qpack.html
    A ignore-same-version-vn/draft-ietf-quic-qpack.txt
    A ignore-same-version-vn/draft-ietf-quic-recovery.html
    A ignore-same-version-vn/draft-ietf-quic-recovery.txt
    A ignore-same-version-vn/draft-ietf-quic-tls.html
    A ignore-same-version-vn/draft-ietf-quic-tls.txt
    A ignore-same-version-vn/draft-ietf-quic-transport.html
    A ignore-same-version-vn/draft-ietf-quic-transport.txt
    A ignore-same-version-vn/index.html
    A index.html
    A issues.html
    A issues.js
    A janaiyengar-patch-1/draft-ietf-quic-http.html
    A janaiyengar-patch-1/draft-ietf-quic-http.txt
    A janaiyengar-patch-1/draft-ietf-quic-invariants.html
    A janaiyengar-patch-1/draft-ietf-quic-invariants.txt
    A janaiyengar-patch-1/draft-ietf-quic-qpack.html
    A janaiyengar-patch-1/draft-ietf-quic-qpack.txt
    A janaiyengar-patch-1/draft-ietf-quic-recovery.html
    A janaiyengar-patch-1/draft-ietf-quic-recovery.txt
    A janaiyengar-patch-1/draft-ietf-quic-tls.html
    A janaiyengar-patch-1/draft-ietf-quic-tls.txt
    A janaiyengar-patch-1/draft-ietf-quic-transport.html
    A janaiyengar-patch-1/draft-ietf-quic-transport.txt
    A janaiyengar-patch-1/index.html
    A jri/ack-ranges/draft-ietf-quic-http.html
    A jri/ack-ranges/draft-ietf-quic-http.txt
    A jri/ack-ranges/draft-ietf-quic-invariants.html
    A jri/ack-ranges/draft-ietf-quic-invariants.txt
    A jri/ack-ranges/draft-ietf-quic-qpack.html
    A jri/ack-ranges/draft-ietf-quic-qpack.txt
    A jri/ack-ranges/draft-ietf-quic-recovery.html
    A jri/ack-ranges/draft-ietf-quic-recovery.txt
    A jri/ack-ranges/draft-ietf-quic-tls.html
    A jri/ack-ranges/draft-ietf-quic-tls.txt
    A jri/ack-ranges/draft-ietf-quic-transport.html
    A jri/ack-ranges/draft-ietf-quic-transport.txt
    A jri/ack-ranges/index.html
    A jri/cids/draft-ietf-quic-http.html
    A jri/cids/draft-ietf-quic-http.txt
    A jri/cids/draft-ietf-quic-invariants.html
    A jri/cids/draft-ietf-quic-invariants.txt
    A jri/cids/draft-ietf-quic-qpack.html
    A jri/cids/draft-ietf-quic-qpack.txt
    A jri/cids/draft-ietf-quic-recovery.html
    A jri/cids/draft-ietf-quic-recovery.txt
    A jri/cids/draft-ietf-quic-tls.html
    A jri/cids/draft-ietf-quic-tls.txt
    A jri/cids/draft-ietf-quic-transport.html
    A jri/cids/draft-ietf-quic-transport.txt
    A jri/cids/index.html
    A jri/fix-normative/draft-ietf-quic-http.html
    A jri/fix-normative/draft-ietf-quic-http.txt
    A jri/fix-normative/draft-ietf-quic-invariants.html
    A jri/fix-normative/draft-ietf-quic-invariants.txt
    A jri/fix-normative/draft-ietf-quic-qpack.html
    A jri/fix-normative/draft-ietf-quic-qpack.txt
    A jri/fix-normative/draft-ietf-quic-recovery.html
    A jri/fix-normative/draft-ietf-quic-recovery.txt
    A jri/fix-normative/draft-ietf-quic-tls.html
    A jri/fix-normative/draft-ietf-quic-tls.txt
    A jri/fix-normative/draft-ietf-quic-transport.html
    A jri/fix-normative/draft-ietf-quic-transport.txt
    A jri/fix-normative/index.html
    A keep-acknowledged/draft-ietf-quic-http.html
    A keep-acknowledged/draft-ietf-quic-http.txt
    A keep-acknowledged/draft-ietf-quic-invariants.html
    A keep-acknowledged/draft-ietf-quic-invariants.txt
    A keep-acknowledged/draft-ietf-quic-qpack.html
    A keep-acknowledged/draft-ietf-quic-qpack.txt
    A keep-acknowledged/draft-ietf-quic-recovery.html
    A keep-acknowledged/draft-ietf-quic-recovery.txt
    A keep-acknowledged/draft-ietf-quic-tls.html
    A keep-acknowledged/draft-ietf-quic-tls.txt
    A keep-acknowledged/draft-ietf-quic-transport.html
    A keep-acknowledged/draft-ietf-quic-transport.txt
    A keep-acknowledged/index.html
    A kramdown-updates/draft-ietf-quic-http.html
    A kramdown-updates/draft-ietf-quic-http.txt
    A kramdown-updates/draft-ietf-quic-invariants.html
    A kramdown-updates/draft-ietf-quic-invariants.txt
    A kramdown-updates/draft-ietf-quic-qpack.html
    A kramdown-updates/draft-ietf-quic-qpack.txt
    A kramdown-updates/draft-ietf-quic-recovery.html
    A kramdown-updates/draft-ietf-quic-recovery.txt
    A kramdown-updates/draft-ietf-quic-tls.html
    A kramdown-updates/draft-ietf-quic-tls.txt
    A kramdown-updates/draft-ietf-quic-transport.html
    A kramdown-updates/draft-ietf-quic-transport.txt
    A kramdown-updates/index.html
    A link-preferred-address/draft-ietf-quic-http.html
    A link-preferred-address/draft-ietf-quic-http.txt
    A link-preferred-address/draft-ietf-quic-invariants.html
    A link-preferred-address/draft-ietf-quic-invariants.txt
    A link-preferred-address/draft-ietf-quic-qpack.html
    A link-preferred-address/draft-ietf-quic-qpack.txt
    A link-preferred-address/draft-ietf-quic-recovery.html
    A link-preferred-address/draft-ietf-quic-recovery.txt
    A link-preferred-address/draft-ietf-quic-tls.html
    A link-preferred-address/draft-ietf-quic-tls.txt
    A link-preferred-address/draft-ietf-quic-transport.html
    A link-preferred-address/draft-ietf-quic-transport.txt
    A link-preferred-address/index.html
    A preferred_ncid/draft-ietf-quic-http.html
    A preferred_ncid/draft-ietf-quic-http.txt
    A preferred_ncid/draft-ietf-quic-invariants.html
    A preferred_ncid/draft-ietf-quic-invariants.txt
    A preferred_ncid/draft-ietf-quic-qpack.html
    A preferred_ncid/draft-ietf-quic-qpack.txt
    A preferred_ncid/draft-ietf-quic-recovery.html
    A preferred_ncid/draft-ietf-quic-recovery.txt
    A preferred_ncid/draft-ietf-quic-tls.html
    A preferred_ncid/draft-ietf-quic-tls.txt
    A preferred_ncid/draft-ietf-quic-transport.html
    A preferred_ncid/draft-ietf-quic-transport.txt
    A preferred_ncid/index.html
    A qpack-example-fix/draft-ietf-quic-http.html
    A qpack-example-fix/draft-ietf-quic-http.txt
    A qpack-example-fix/draft-ietf-quic-invariants.html
    A qpack-example-fix/draft-ietf-quic-invariants.txt
    A qpack-example-fix/draft-ietf-quic-qpack.html
    A qpack-example-fix/draft-ietf-quic-qpack.txt
    A qpack-example-fix/draft-ietf-quic-recovery.html
    A qpack-example-fix/draft-ietf-quic-recovery.txt
    A qpack-example-fix/draft-ietf-quic-tls.html
    A qpack-example-fix/draft-ietf-quic-tls.txt
    A qpack-example-fix/draft-ietf-quic-transport.html
    A qpack-example-fix/draft-ietf-quic-transport.txt
    A qpack-example-fix/index.html
    A qpack-security/draft-ietf-quic-http.html
    A qpack-security/draft-ietf-quic-http.txt
    A qpack-security/draft-ietf-quic-invariants.html
    A qpack-security/draft-ietf-quic-invariants.txt
    A qpack-security/draft-ietf-quic-qpack.html
    A qpack-security/draft-ietf-quic-qpack.txt
    A qpack-security/draft-ietf-quic-recovery.html
    A qpack-security/draft-ietf-quic-recovery.txt
    A qpack-security/draft-ietf-quic-tls.html
    A qpack-security/draft-ietf-quic-tls.txt
    A qpack-security/draft-ietf-quic-transport.html
    A qpack-security/draft-ietf-quic-transport.txt
    A qpack-security/index.html
    A qpack-static-comment/draft-ietf-quic-http.html
    A qpack-static-comment/draft-ietf-quic-http.txt
    A qpack-static-comment/draft-ietf-quic-invariants.html
    A qpack-static-comment/draft-ietf-quic-invariants.txt
    A qpack-static-comment/draft-ietf-quic-qpack.html
    A qpack-static-comment/draft-ietf-quic-qpack.txt
    A qpack-static-comment/draft-ietf-quic-recovery.html
    A qpack-static-comment/draft-ietf-quic-recovery.txt
    A qpack-static-comment/draft-ietf-quic-tls.html
    A qpack-static-comment/draft-ietf-quic-tls.txt
    A qpack-static-comment/draft-ietf-quic-transport.html
    A qpack-static-comment/draft-ietf-quic-transport.txt
    A qpack-static-comment/index.html
    A qpack/core_terminology/draft-ietf-quic-http.html
    A qpack/core_terminology/draft-ietf-quic-http.txt
    A qpack/core_terminology/draft-ietf-quic-invariants.html
    A qpack/core_terminology/draft-ietf-quic-invariants.txt
    A qpack/core_terminology/draft-ietf-quic-qpack.html
    A qpack/core_terminology/draft-ietf-quic-qpack.txt
    A qpack/core_terminology/draft-ietf-quic-recovery.html
    A qpack/core_terminology/draft-ietf-quic-recovery.txt
    A qpack/core_terminology/draft-ietf-quic-tls.html
    A qpack/core_terminology/draft-ietf-quic-tls.txt
    A qpack/core_terminology/draft-ietf-quic-transport.html
    A qpack/core_terminology/draft-ietf-quic-transport.txt
    A qpack/core_terminology/index.html
    A resumption/draft-ietf-quic-http.html
    A resumption/draft-ietf-quic-http.txt
    A resumption/draft-ietf-quic-invariants.html
    A resumption/draft-ietf-quic-invariants.txt
    A resumption/draft-ietf-quic-qpack.html
    A resumption/draft-ietf-quic-qpack.txt
    A resumption/draft-ietf-quic-recovery.html
    A resumption/draft-ietf-quic-recovery.txt
    A resumption/draft-ietf-quic-tls.html
    A resumption/draft-ietf-quic-tls.txt
    A resumption/draft-ietf-quic-transport.html
    A resumption/draft-ietf-quic-transport.txt
    A resumption/index.html
    A retry-split/draft-ietf-quic-http.html
    A retry-split/draft-ietf-quic-http.txt
    A retry-split/draft-ietf-quic-invariants.html
    A retry-split/draft-ietf-quic-invariants.txt
    A retry-split/draft-ietf-quic-qpack.html
    A retry-split/draft-ietf-quic-qpack.txt
    A retry-split/draft-ietf-quic-recovery.html
    A retry-split/draft-ietf-quic-recovery.txt
    A retry-split/draft-ietf-quic-tls.html
    A retry-split/draft-ietf-quic-tls.txt
    A retry-split/draft-ietf-quic-transport.html
    A retry-split/draft-ietf-quic-transport.txt
    A retry-split/index.html
    A transport/extension_dragons/draft-ietf-quic-http.html
    A transport/extension_dragons/draft-ietf-quic-http.txt
    A transport/extension_dragons/draft-ietf-quic-invariants.html
    A transport/extension_dragons/draft-ietf-quic-invariants.txt
    A transport/extension_dragons/draft-ietf-quic-qpack.html
    A transport/extension_dragons/draft-ietf-quic-qpack.txt
    A transport/extension_dragons/draft-ietf-quic-recovery.html
    A transport/extension_dragons/draft-ietf-quic-recovery.txt
    A transport/extension_dragons/draft-ietf-quic-tls.html
    A transport/extension_dragons/draft-ietf-quic-tls.txt
    A transport/extension_dragons/draft-ietf-quic-transport.html
    A transport/extension_dragons/draft-ietf-quic-transport.txt
    A transport/extension_dragons/index.html
    A transport/why_retire/draft-ietf-quic-http.html
    A transport/why_retire/draft-ietf-quic-http.txt
    A transport/why_retire/draft-ietf-quic-invariants.html
    A transport/why_retire/draft-ietf-quic-invariants.txt
    A transport/why_retire/draft-ietf-quic-qpack.html
    A transport/why_retire/draft-ietf-quic-qpack.txt
    A transport/why_retire/draft-ietf-quic-recovery.html
    A transport/why_retire/draft-ietf-quic-recovery.txt
    A transport/why_retire/draft-ietf-quic-tls.html
    A transport/why_retire/draft-ietf-quic-tls.txt
    A transport/why_retire/draft-ietf-quic-transport.html
    A transport/why_retire/draft-ietf-quic-transport.txt
    A transport/why_retire/index.html

  Log Message:
  -----------
  Script updating gh-pages from f746d7f9. [ci skip]


  Commit: 92ac86c3540f6c236fd846355295b903ede42aff
      https://github.com/quicwg/base-drafts/commit/92ac86c3540f6c236fd846355295b903ede42aff
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-19 (Sun, 19 Apr 2020)

  Changed paths:
    R expire_reflog/draft-ietf-quic-http.html
    R expire_reflog/draft-ietf-quic-http.txt
    R expire_reflog/draft-ietf-quic-invariants.html
    R expire_reflog/draft-ietf-quic-invariants.txt
    R expire_reflog/draft-ietf-quic-qpack.html
    R expire_reflog/draft-ietf-quic-qpack.txt
    R expire_reflog/draft-ietf-quic-recovery.html
    R expire_reflog/draft-ietf-quic-recovery.txt
    R expire_reflog/draft-ietf-quic-tls.html
    R expire_reflog/draft-ietf-quic-tls.txt
    R expire_reflog/draft-ietf-quic-transport.html
    R expire_reflog/draft-ietf-quic-transport.txt
    R expire_reflog/index.html
    A ianswett-min-cwnd/draft-ietf-quic-http.html
    A ianswett-min-cwnd/draft-ietf-quic-http.txt
    A ianswett-min-cwnd/draft-ietf-quic-invariants.html
    A ianswett-min-cwnd/draft-ietf-quic-invariants.txt
    A ianswett-min-cwnd/draft-ietf-quic-qpack.html
    A ianswett-min-cwnd/draft-ietf-quic-qpack.txt
    A ianswett-min-cwnd/draft-ietf-quic-recovery.html
    A ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    A ianswett-min-cwnd/draft-ietf-quic-tls.html
    A ianswett-min-cwnd/draft-ietf-quic-tls.txt
    A ianswett-min-cwnd/draft-ietf-quic-transport.html
    A ianswett-min-cwnd/draft-ietf-quic-transport.txt
    A ianswett-min-cwnd/index.html
    R ignore-same-version-vn/draft-ietf-quic-http.html
    R ignore-same-version-vn/draft-ietf-quic-http.txt
    R ignore-same-version-vn/draft-ietf-quic-invariants.html
    R ignore-same-version-vn/draft-ietf-quic-invariants.txt
    R ignore-same-version-vn/draft-ietf-quic-qpack.html
    R ignore-same-version-vn/draft-ietf-quic-qpack.txt
    R ignore-same-version-vn/draft-ietf-quic-recovery.html
    R ignore-same-version-vn/draft-ietf-quic-recovery.txt
    R ignore-same-version-vn/draft-ietf-quic-tls.html
    R ignore-same-version-vn/draft-ietf-quic-tls.txt
    R ignore-same-version-vn/draft-ietf-quic-transport.html
    R ignore-same-version-vn/draft-ietf-quic-transport.txt
    R ignore-same-version-vn/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 66fb2929. [ci skip]


  Commit: 09c65886848c6c655d39ba5dbe3e2afb0390e228
      https://github.com/quicwg/base-drafts/commit/09c65886848c6c655d39ba5dbe3e2afb0390e228
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-19 (Sun, 19 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-19T21:44:55Z. [ci skip]


  Commit: 939c18d9429cfede79719d6f01446f2854cc76c9
      https://github.com/quicwg/base-drafts/commit/939c18d9429cfede79719d6f01446f2854cc76c9
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-19 (Sun, 19 Apr 2020)

  Changed paths:
    M ianswett-initial-pto/draft-ietf-quic-http.html
    M ianswett-initial-pto/draft-ietf-quic-http.txt
    M ianswett-initial-pto/draft-ietf-quic-invariants.html
    M ianswett-initial-pto/draft-ietf-quic-invariants.txt
    M ianswett-initial-pto/draft-ietf-quic-qpack.html
    M ianswett-initial-pto/draft-ietf-quic-qpack.txt
    M ianswett-initial-pto/draft-ietf-quic-recovery.html
    M ianswett-initial-pto/draft-ietf-quic-recovery.txt
    M ianswett-initial-pto/draft-ietf-quic-tls.html
    M ianswett-initial-pto/draft-ietf-quic-tls.txt
    M ianswett-initial-pto/draft-ietf-quic-transport.html
    M ianswett-initial-pto/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from beca7cd8. [ci skip]


  Commit: fc2138d3075cfd33ea1da8aa7bc175bc6f44f36f
      https://github.com/quicwg/base-drafts/commit/fc2138d3075cfd33ea1da8aa7bc175bc6f44f36f
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-19 (Sun, 19 Apr 2020)

  Changed paths:
    M ianswett-initial-pto/draft-ietf-quic-recovery.html
    M ianswett-initial-pto/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 1f178bd4. [ci skip]


  Commit: fdd551bfc76e388deb1afdd007338f8c06577f42
      https://github.com/quicwg/base-drafts/commit/fdd551bfc76e388deb1afdd007338f8c06577f42
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-19 (Sun, 19 Apr 2020)

  Changed paths:
    M ianswett-initial-pto/draft-ietf-quic-recovery.html
    M ianswett-initial-pto/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from eb935271. [ci skip]


  Commit: a1c0ae67e87dc952a97e82fa79e40d735ac02578
      https://github.com/quicwg/base-drafts/commit/a1c0ae67e87dc952a97e82fa79e40d735ac02578
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-19 (Sun, 19 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6db7436f. [ci skip]


  Commit: 606d901a4d658c7635beab38ef0d8c21322693af
      https://github.com/quicwg/base-drafts/commit/606d901a4d658c7635beab38ef0d8c21322693af
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from db65357e. [ci skip]


  Commit: 0dcf56c5591f9bc7845f4b367aff99833bca40a3
      https://github.com/quicwg/base-drafts/commit/0dcf56c5591f9bc7845f4b367aff99833bca40a3
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 70772cb0. [ci skip]


  Commit: 914025f7774d59471b508b1be0c2648b90ff6de1
      https://github.com/quicwg/base-drafts/commit/914025f7774d59471b508b1be0c2648b90ff6de1
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from bf3876a1. [ci skip]


  Commit: 4dbb6762df08d77bce5400ddbd0b8a8d6a284426
      https://github.com/quicwg/base-drafts/commit/4dbb6762df08d77bce5400ddbd0b8a8d6a284426
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M alternative-format/draft-ietf-quic-http.html
    M alternative-format/draft-ietf-quic-http.txt
    M alternative-format/draft-ietf-quic-invariants.html
    M alternative-format/draft-ietf-quic-invariants.txt
    M alternative-format/draft-ietf-quic-qpack.html
    M alternative-format/draft-ietf-quic-qpack.txt
    M alternative-format/draft-ietf-quic-recovery.html
    M alternative-format/draft-ietf-quic-recovery.txt
    M alternative-format/draft-ietf-quic-tls.html
    M alternative-format/draft-ietf-quic-tls.txt
    M alternative-format/draft-ietf-quic-transport.html
    M alternative-format/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from e05726eb. [ci skip]


  Commit: 20088bf1fd4887ab75597c12770a1c2a1e48a669
      https://github.com/quicwg/base-drafts/commit/20088bf1fd4887ab75597c12770a1c2a1e48a669
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M index.html
    M link-preferred-address/draft-ietf-quic-http.html
    M link-preferred-address/draft-ietf-quic-http.txt
    M link-preferred-address/draft-ietf-quic-invariants.html
    M link-preferred-address/draft-ietf-quic-invariants.txt
    M link-preferred-address/draft-ietf-quic-qpack.html
    M link-preferred-address/draft-ietf-quic-qpack.txt
    M link-preferred-address/draft-ietf-quic-recovery.html
    M link-preferred-address/draft-ietf-quic-recovery.txt
    M link-preferred-address/draft-ietf-quic-tls.html
    M link-preferred-address/draft-ietf-quic-tls.txt
    M link-preferred-address/draft-ietf-quic-transport.html
    M link-preferred-address/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 8ec6c3ab. [ci skip]


  Commit: 5d7bc65887e58ec97812426393cc2fbe4203fd7d
      https://github.com/quicwg/base-drafts/commit/5d7bc65887e58ec97812426393cc2fbe4203fd7d
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-20T05:49:52Z. [ci skip]


  Commit: f4fa64e478e4b315c924cec3224721aeea55dedb
      https://github.com/quicwg/base-drafts/commit/f4fa64e478e4b315c924cec3224721aeea55dedb
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    A hs-mitm/draft-ietf-quic-http.html
    A hs-mitm/draft-ietf-quic-http.txt
    A hs-mitm/draft-ietf-quic-invariants.html
    A hs-mitm/draft-ietf-quic-invariants.txt
    A hs-mitm/draft-ietf-quic-qpack.html
    A hs-mitm/draft-ietf-quic-qpack.txt
    A hs-mitm/draft-ietf-quic-recovery.html
    A hs-mitm/draft-ietf-quic-recovery.txt
    A hs-mitm/draft-ietf-quic-tls.html
    A hs-mitm/draft-ietf-quic-tls.txt
    A hs-mitm/draft-ietf-quic-transport.html
    A hs-mitm/draft-ietf-quic-transport.txt
    A hs-mitm/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 5e5a61d9. [ci skip]


  Commit: a3a98fd562bc9c71a91e0c5af369d047c6bdc7e3
      https://github.com/quicwg/base-drafts/commit/a3a98fd562bc9c71a91e0c5af369d047c6bdc7e3
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M index.html
    A spa-clarifications/draft-ietf-quic-http.html
    A spa-clarifications/draft-ietf-quic-http.txt
    A spa-clarifications/draft-ietf-quic-invariants.html
    A spa-clarifications/draft-ietf-quic-invariants.txt
    A spa-clarifications/draft-ietf-quic-qpack.html
    A spa-clarifications/draft-ietf-quic-qpack.txt
    A spa-clarifications/draft-ietf-quic-recovery.html
    A spa-clarifications/draft-ietf-quic-recovery.txt
    A spa-clarifications/draft-ietf-quic-tls.html
    A spa-clarifications/draft-ietf-quic-tls.txt
    A spa-clarifications/draft-ietf-quic-transport.html
    A spa-clarifications/draft-ietf-quic-transport.txt
    A spa-clarifications/index.html

  Log Message:
  -----------
  Script updating gh-pages from 4ca64723. [ci skip]


  Commit: bd11c8a100d2054e2505a12b4b2ec0cbf48d6114
      https://github.com/quicwg/base-drafts/commit/bd11c8a100d2054e2505a12b4b2ec0cbf48d6114
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M hs-mitm/draft-ietf-quic-transport.html
    M hs-mitm/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 9c911c71. [ci skip]


  Commit: b6ccddbc7f864d874c92c115dc15748cc14c702c
      https://github.com/quicwg/base-drafts/commit/b6ccddbc7f864d874c92c115dc15748cc14c702c
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6e6501fd. [ci skip]


  Commit: e8af2502bb3b6b0fa94b8d92007a55848c16af81
      https://github.com/quicwg/base-drafts/commit/e8af2502bb3b6b0fa94b8d92007a55848c16af81
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-20T15:04:30Z. [ci skip]


  Commit: 7bab5ed6412693a86437b87675ab44516e3904d4
      https://github.com/quicwg/base-drafts/commit/7bab5ed6412693a86437b87675ab44516e3904d4
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    A http/explicit_failure/draft-ietf-quic-http.html
    A http/explicit_failure/draft-ietf-quic-http.txt
    A http/explicit_failure/draft-ietf-quic-invariants.html
    A http/explicit_failure/draft-ietf-quic-invariants.txt
    A http/explicit_failure/draft-ietf-quic-qpack.html
    A http/explicit_failure/draft-ietf-quic-qpack.txt
    A http/explicit_failure/draft-ietf-quic-recovery.html
    A http/explicit_failure/draft-ietf-quic-recovery.txt
    A http/explicit_failure/draft-ietf-quic-tls.html
    A http/explicit_failure/draft-ietf-quic-tls.txt
    A http/explicit_failure/draft-ietf-quic-transport.html
    A http/explicit_failure/draft-ietf-quic-transport.txt
    A http/explicit_failure/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b87481c8. [ci skip]


  Commit: f9291589a59203e8cdeb5e70c8c532db8e2ac2cb
      https://github.com/quicwg/base-drafts/commit/f9291589a59203e8cdeb5e70c8c532db8e2ac2cb
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-http.html
    M ianswett-min-cwnd/draft-ietf-quic-http.txt
    M ianswett-min-cwnd/draft-ietf-quic-invariants.html
    M ianswett-min-cwnd/draft-ietf-quic-invariants.txt
    M ianswett-min-cwnd/draft-ietf-quic-qpack.html
    M ianswett-min-cwnd/draft-ietf-quic-qpack.txt
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M ianswett-min-cwnd/draft-ietf-quic-tls.html
    M ianswett-min-cwnd/draft-ietf-quic-tls.txt
    M ianswett-min-cwnd/draft-ietf-quic-transport.html
    M ianswett-min-cwnd/draft-ietf-quic-transport.txt
    R ianswett-remove-must/draft-ietf-quic-http.html
    R ianswett-remove-must/draft-ietf-quic-http.txt
    R ianswett-remove-must/draft-ietf-quic-invariants.html
    R ianswett-remove-must/draft-ietf-quic-invariants.txt
    R ianswett-remove-must/draft-ietf-quic-qpack.html
    R ianswett-remove-must/draft-ietf-quic-qpack.txt
    R ianswett-remove-must/draft-ietf-quic-recovery.html
    R ianswett-remove-must/draft-ietf-quic-recovery.txt
    R ianswett-remove-must/draft-ietf-quic-tls.html
    R ianswett-remove-must/draft-ietf-quic-tls.txt
    R ianswett-remove-must/draft-ietf-quic-transport.html
    R ianswett-remove-must/draft-ietf-quic-transport.txt
    R ianswett-remove-must/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6d95aa65. [ci skip]


  Commit: 54e1bb7e563fce275824748849d35ec828788472
      https://github.com/quicwg/base-drafts/commit/54e1bb7e563fce275824748849d35ec828788472
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from ce6ab340. [ci skip]


  Commit: f559ca6631051256735ed49ad7c4d2be8e2b4958
      https://github.com/quicwg/base-drafts/commit/f559ca6631051256735ed49ad7c4d2be8e2b4958
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 5580b7a5. [ci skip]


  Commit: 182bee9c7fe739f939c96f18c6d52ae824ee745b
      https://github.com/quicwg/base-drafts/commit/182bee9c7fe739f939c96f18c6d52ae824ee745b
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-21 (Tue, 21 Apr 2020)

  Changed paths:
    M hs-mitm/draft-ietf-quic-http.html
    M hs-mitm/draft-ietf-quic-http.txt
    M hs-mitm/draft-ietf-quic-invariants.html
    M hs-mitm/draft-ietf-quic-invariants.txt
    M hs-mitm/draft-ietf-quic-qpack.html
    M hs-mitm/draft-ietf-quic-qpack.txt
    M hs-mitm/draft-ietf-quic-recovery.html
    M hs-mitm/draft-ietf-quic-recovery.txt
    M hs-mitm/draft-ietf-quic-tls.html
    M hs-mitm/draft-ietf-quic-tls.txt
    M hs-mitm/draft-ietf-quic-transport.html
    M hs-mitm/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 4df3184f. [ci skip]


  Commit: b7a419e6b04f42e345ad8517916d242ae59436a5
      https://github.com/quicwg/base-drafts/commit/b7a419e6b04f42e345ad8517916d242ae59436a5
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-21 (Tue, 21 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-21T07:17:51Z. [ci skip]


  Commit: 7e4fa418aba9f7f038caff6141422b8617f221ef
      https://github.com/quicwg/base-drafts/commit/7e4fa418aba9f7f038caff6141422b8617f221ef
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-21 (Tue, 21 Apr 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-http.html
    M ianswett-min-cwnd/draft-ietf-quic-http.txt
    M ianswett-min-cwnd/draft-ietf-quic-invariants.html
    M ianswett-min-cwnd/draft-ietf-quic-invariants.txt
    M ianswett-min-cwnd/draft-ietf-quic-qpack.html
    M ianswett-min-cwnd/draft-ietf-quic-qpack.txt
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M ianswett-min-cwnd/draft-ietf-quic-tls.html
    M ianswett-min-cwnd/draft-ietf-quic-tls.txt
    M ianswett-min-cwnd/draft-ietf-quic-transport.html
    M ianswett-min-cwnd/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 72c7eced. [ci skip]


  Commit: 862fc990a96eb44d4c772bdd16d208480ec6099f
      https://github.com/quicwg/base-drafts/commit/862fc990a96eb44d4c772bdd16d208480ec6099f
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-21 (Tue, 21 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-21T22:06:52Z. [ci skip]


  Commit: f28bb1de453c889664693d5211bb3c45a856652d
      https://github.com/quicwg/base-drafts/commit/f28bb1de453c889664693d5211bb3c45a856652d
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-21 (Tue, 21 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 757a2023. [ci skip]


  Commit: 0fea2ba317e9ba7d763e14a07df7fa12f6bc17e3
      https://github.com/quicwg/base-drafts/commit/0fea2ba317e9ba7d763e14a07df7fa12f6bc17e3
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-21 (Tue, 21 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from aa60cc18. [ci skip]


  Commit: 5924a5bc28dd51d1291fef6c460888e7f68e37cd
      https://github.com/quicwg/base-drafts/commit/5924a5bc28dd51d1291fef6c460888e7f68e37cd
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-21 (Tue, 21 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 1e4f3f50. [ci skip]


  Commit: 6272fc6069cb4b9244ad8b5d92977935b8288058
      https://github.com/quicwg/base-drafts/commit/6272fc6069cb4b9244ad8b5d92977935b8288058
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-21 (Tue, 21 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 8fac2f26. [ci skip]


  Commit: 82d278683ffe3460f9e6007dd499bc1798c7b5db
      https://github.com/quicwg/base-drafts/commit/82d278683ffe3460f9e6007dd499bc1798c7b5db
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-21 (Tue, 21 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6701ef18. [ci skip]


  Commit: 73a09fb87d2db4e179de5e940d47fc498a5ad8b6
      https://github.com/quicwg/base-drafts/commit/73a09fb87d2db4e179de5e940d47fc498a5ad8b6
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-21 (Tue, 21 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6cdd4fda. [ci skip]


  Commit: 45c15f0a6d837ca967ef8f1da1ce7e0f4486b665
      https://github.com/quicwg/base-drafts/commit/45c15f0a6d837ca967ef8f1da1ce7e0f4486b665
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-21 (Tue, 21 Apr 2020)

  Changed paths:
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from bdbfb41d. [ci skip]


  Commit: e1d62e68163f2d4f2c638e49b3bfcd746dde94f6
      https://github.com/quicwg/base-drafts/commit/e1d62e68163f2d4f2c638e49b3bfcd746dde94f6
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-22 (Wed, 22 Apr 2020)

  Changed paths:
    R dont-remember-max_ack_delay/draft-ietf-quic-http.html
    R dont-remember-max_ack_delay/draft-ietf-quic-http.txt
    R dont-remember-max_ack_delay/draft-ietf-quic-invariants.html
    R dont-remember-max_ack_delay/draft-ietf-quic-invariants.txt
    R dont-remember-max_ack_delay/draft-ietf-quic-qpack.html
    R dont-remember-max_ack_delay/draft-ietf-quic-qpack.txt
    R dont-remember-max_ack_delay/draft-ietf-quic-recovery.html
    R dont-remember-max_ack_delay/draft-ietf-quic-recovery.txt
    R dont-remember-max_ack_delay/draft-ietf-quic-tls.html
    R dont-remember-max_ack_delay/draft-ietf-quic-tls.txt
    R dont-remember-max_ack_delay/draft-ietf-quic-transport.html
    R dont-remember-max_ack_delay/draft-ietf-quic-transport.txt
    R dont-remember-max_ack_delay/index.html
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    R ianswett-appendix-recommended/draft-ietf-quic-http.html
    R ianswett-appendix-recommended/draft-ietf-quic-http.txt
    R ianswett-appendix-recommended/draft-ietf-quic-invariants.html
    R ianswett-appendix-recommended/draft-ietf-quic-invariants.txt
    R ianswett-appendix-recommended/draft-ietf-quic-qpack.html
    R ianswett-appendix-recommended/draft-ietf-quic-qpack.txt
    R ianswett-appendix-recommended/draft-ietf-quic-recovery.html
    R ianswett-appendix-recommended/draft-ietf-quic-recovery.txt
    R ianswett-appendix-recommended/draft-ietf-quic-tls.html
    R ianswett-appendix-recommended/draft-ietf-quic-tls.txt
    R ianswett-appendix-recommended/draft-ietf-quic-transport.html
    R ianswett-appendix-recommended/draft-ietf-quic-transport.txt
    R ianswett-appendix-recommended/index.html
    M index.html
    R transport/extension_dragons/draft-ietf-quic-http.html
    R transport/extension_dragons/draft-ietf-quic-http.txt
    R transport/extension_dragons/draft-ietf-quic-invariants.html
    R transport/extension_dragons/draft-ietf-quic-invariants.txt
    R transport/extension_dragons/draft-ietf-quic-qpack.html
    R transport/extension_dragons/draft-ietf-quic-qpack.txt
    R transport/extension_dragons/draft-ietf-quic-recovery.html
    R transport/extension_dragons/draft-ietf-quic-recovery.txt
    R transport/extension_dragons/draft-ietf-quic-tls.html
    R transport/extension_dragons/draft-ietf-quic-tls.txt
    R transport/extension_dragons/draft-ietf-quic-transport.html
    R transport/extension_dragons/draft-ietf-quic-transport.txt
    R transport/extension_dragons/index.html
    R transport/why_retire/draft-ietf-quic-http.html
    R transport/why_retire/draft-ietf-quic-http.txt
    R transport/why_retire/draft-ietf-quic-invariants.html
    R transport/why_retire/draft-ietf-quic-invariants.txt
    R transport/why_retire/draft-ietf-quic-qpack.html
    R transport/why_retire/draft-ietf-quic-qpack.txt
    R transport/why_retire/draft-ietf-quic-recovery.html
    R transport/why_retire/draft-ietf-quic-recovery.txt
    R transport/why_retire/draft-ietf-quic-tls.html
    R transport/why_retire/draft-ietf-quic-tls.txt
    R transport/why_retire/draft-ietf-quic-transport.html
    R transport/why_retire/draft-ietf-quic-transport.txt
    R transport/why_retire/index.html

  Log Message:
  -----------
  Script updating gh-pages from 5a642a3f. [ci skip]


  Commit: c8b56db771ef165cc4f7b37210db8b8db33051c2
      https://github.com/quicwg/base-drafts/commit/c8b56db771ef165cc4f7b37210db8b8db33051c2
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-22 (Wed, 22 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-22T20:17:33Z. [ci skip]


  Commit: 17bb4b32acf7d2eb4bb1116c2fd98ab14975fac1
      https://github.com/quicwg/base-drafts/commit/17bb4b32acf7d2eb4bb1116c2fd98ab14975fac1
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-22 (Wed, 22 Apr 2020)

  Changed paths:
    M index.html
    A tls-compat-mode/draft-ietf-quic-http.html
    A tls-compat-mode/draft-ietf-quic-http.txt
    A tls-compat-mode/draft-ietf-quic-invariants.html
    A tls-compat-mode/draft-ietf-quic-invariants.txt
    A tls-compat-mode/draft-ietf-quic-qpack.html
    A tls-compat-mode/draft-ietf-quic-qpack.txt
    A tls-compat-mode/draft-ietf-quic-recovery.html
    A tls-compat-mode/draft-ietf-quic-recovery.txt
    A tls-compat-mode/draft-ietf-quic-tls.html
    A tls-compat-mode/draft-ietf-quic-tls.txt
    A tls-compat-mode/draft-ietf-quic-transport.html
    A tls-compat-mode/draft-ietf-quic-transport.txt
    A tls-compat-mode/index.html

  Log Message:
  -----------
  Script updating gh-pages from d4baa8a6. [ci skip]


  Commit: 11398a691295a9ce6e51263e8b6ba8e52fa2df9d
      https://github.com/quicwg/base-drafts/commit/11398a691295a9ce6e51263e8b6ba8e52fa2df9d
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-23 (Thu, 23 Apr 2020)

  Changed paths:
    M index.html
    M tls-compat-mode/draft-ietf-quic-http.html
    M tls-compat-mode/draft-ietf-quic-http.txt
    M tls-compat-mode/draft-ietf-quic-invariants.html
    M tls-compat-mode/draft-ietf-quic-invariants.txt
    M tls-compat-mode/draft-ietf-quic-qpack.html
    M tls-compat-mode/draft-ietf-quic-qpack.txt
    M tls-compat-mode/draft-ietf-quic-recovery.html
    M tls-compat-mode/draft-ietf-quic-recovery.txt
    M tls-compat-mode/draft-ietf-quic-tls.html
    M tls-compat-mode/draft-ietf-quic-tls.txt
    M tls-compat-mode/draft-ietf-quic-transport.html
    M tls-compat-mode/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from cf939cc1. [ci skip]


  Commit: 61d35bf2cd3ba33f7a099e41189f60db91a9b055
      https://github.com/quicwg/base-drafts/commit/61d35bf2cd3ba33f7a099e41189f60db91a9b055
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-23 (Thu, 23 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-23T07:54:43Z. [ci skip]


  Commit: 17ef5d3567582bebd21b479979bcc6e586ca3176
      https://github.com/quicwg/base-drafts/commit/17ef5d3567582bebd21b479979bcc6e586ca3176
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-23 (Thu, 23 Apr 2020)

  Changed paths:
    M ianswett-adaptive-loss/draft-ietf-quic-http.html
    M ianswett-adaptive-loss/draft-ietf-quic-http.txt
    M ianswett-adaptive-loss/draft-ietf-quic-invariants.html
    M ianswett-adaptive-loss/draft-ietf-quic-invariants.txt
    M ianswett-adaptive-loss/draft-ietf-quic-qpack.html
    M ianswett-adaptive-loss/draft-ietf-quic-qpack.txt
    M ianswett-adaptive-loss/draft-ietf-quic-recovery.html
    M ianswett-adaptive-loss/draft-ietf-quic-recovery.txt
    M ianswett-adaptive-loss/draft-ietf-quic-tls.html
    M ianswett-adaptive-loss/draft-ietf-quic-tls.txt
    M ianswett-adaptive-loss/draft-ietf-quic-transport.html
    M ianswett-adaptive-loss/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 089f74a7. [ci skip]


  Commit: 78a401a4c450e5c8ed6873c82ac908990ff528c5
      https://github.com/quicwg/base-drafts/commit/78a401a4c450e5c8ed6873c82ac908990ff528c5
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-23 (Thu, 23 Apr 2020)

  Changed paths:
    M index.html
    M qpack/core_terminology/draft-ietf-quic-http.html
    M qpack/core_terminology/draft-ietf-quic-http.txt
    M qpack/core_terminology/draft-ietf-quic-invariants.html
    M qpack/core_terminology/draft-ietf-quic-invariants.txt
    M qpack/core_terminology/draft-ietf-quic-qpack.html
    M qpack/core_terminology/draft-ietf-quic-qpack.txt
    M qpack/core_terminology/draft-ietf-quic-recovery.html
    M qpack/core_terminology/draft-ietf-quic-recovery.txt
    M qpack/core_terminology/draft-ietf-quic-tls.html
    M qpack/core_terminology/draft-ietf-quic-tls.txt
    M qpack/core_terminology/draft-ietf-quic-transport.html
    M qpack/core_terminology/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 337dfa0d. [ci skip]


  Commit: a4eb0b6072996d4fcfe044579524547e90f748e1
      https://github.com/quicwg/base-drafts/commit/a4eb0b6072996d4fcfe044579524547e90f748e1
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-23 (Thu, 23 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-23T18:43:21Z. [ci skip]


  Commit: 7a0d6ae18e6575f4872fae33b8ee124f7f3ef40d
      https://github.com/quicwg/base-drafts/commit/7a0d6ae18e6575f4872fae33b8ee124f7f3ef40d
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-23 (Thu, 23 Apr 2020)

  Changed paths:
    M index.html
    M qpack/core_terminology/draft-ietf-quic-http.html
    M qpack/core_terminology/draft-ietf-quic-http.txt
    M qpack/core_terminology/draft-ietf-quic-invariants.html
    M qpack/core_terminology/draft-ietf-quic-invariants.txt
    M qpack/core_terminology/draft-ietf-quic-qpack.html
    M qpack/core_terminology/draft-ietf-quic-qpack.txt
    M qpack/core_terminology/draft-ietf-quic-recovery.html
    M qpack/core_terminology/draft-ietf-quic-recovery.txt
    M qpack/core_terminology/draft-ietf-quic-tls.html
    M qpack/core_terminology/draft-ietf-quic-tls.txt
    M qpack/core_terminology/draft-ietf-quic-transport.html
    M qpack/core_terminology/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from ef94156b. [ci skip]


  Commit: ada89ec7267dd9b92097e4cf1a00a22372122ede
      https://github.com/quicwg/base-drafts/commit/ada89ec7267dd9b92097e4cf1a00a22372122ede
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-23 (Thu, 23 Apr 2020)

  Changed paths:
    A ianswett-1-key/draft-ietf-quic-http.html
    A ianswett-1-key/draft-ietf-quic-http.txt
    A ianswett-1-key/draft-ietf-quic-invariants.html
    A ianswett-1-key/draft-ietf-quic-invariants.txt
    A ianswett-1-key/draft-ietf-quic-qpack.html
    A ianswett-1-key/draft-ietf-quic-qpack.txt
    A ianswett-1-key/draft-ietf-quic-recovery.html
    A ianswett-1-key/draft-ietf-quic-recovery.txt
    A ianswett-1-key/draft-ietf-quic-tls.html
    A ianswett-1-key/draft-ietf-quic-tls.txt
    A ianswett-1-key/draft-ietf-quic-transport.html
    A ianswett-1-key/draft-ietf-quic-transport.txt
    A ianswett-1-key/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 7f887a92. [ci skip]


  Commit: 26d23572f4fa7181861c603bd421b8ac6fcbd731
      https://github.com/quicwg/base-drafts/commit/26d23572f4fa7181861c603bd421b8ac6fcbd731
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-23 (Thu, 23 Apr 2020)

  Changed paths:
    M ianswett-1-key/draft-ietf-quic-recovery.html
    M ianswett-1-key/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from f4408896. [ci skip]


  Commit: 7d051a054c96dc4e340df3b83253f9bbc95d58fa
      https://github.com/quicwg/base-drafts/commit/7d051a054c96dc4e340df3b83253f9bbc95d58fa
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    R ianswett-retire-prior-to/draft-ietf-quic-http.html
    R ianswett-retire-prior-to/draft-ietf-quic-http.txt
    R ianswett-retire-prior-to/draft-ietf-quic-invariants.html
    R ianswett-retire-prior-to/draft-ietf-quic-invariants.txt
    R ianswett-retire-prior-to/draft-ietf-quic-qpack.html
    R ianswett-retire-prior-to/draft-ietf-quic-qpack.txt
    R ianswett-retire-prior-to/draft-ietf-quic-recovery.html
    R ianswett-retire-prior-to/draft-ietf-quic-recovery.txt
    R ianswett-retire-prior-to/draft-ietf-quic-tls.html
    R ianswett-retire-prior-to/draft-ietf-quic-tls.txt
    R ianswett-retire-prior-to/draft-ietf-quic-transport.html
    R ianswett-retire-prior-to/draft-ietf-quic-transport.txt
    R ianswett-retire-prior-to/index.html
    M index.html
    A version-greasing/draft-ietf-quic-http.html
    A version-greasing/draft-ietf-quic-http.txt
    A version-greasing/draft-ietf-quic-invariants.html
    A version-greasing/draft-ietf-quic-invariants.txt
    A version-greasing/draft-ietf-quic-qpack.html
    A version-greasing/draft-ietf-quic-qpack.txt
    A version-greasing/draft-ietf-quic-recovery.html
    A version-greasing/draft-ietf-quic-recovery.txt
    A version-greasing/draft-ietf-quic-tls.html
    A version-greasing/draft-ietf-quic-tls.txt
    A version-greasing/draft-ietf-quic-transport.html
    A version-greasing/draft-ietf-quic-transport.txt
    A version-greasing/index.html

  Log Message:
  -----------
  Script updating gh-pages from 514e5b4b. [ci skip]


  Commit: 89d64eac1868c1f58cee2b1e9832b117bb485b5c
      https://github.com/quicwg/base-drafts/commit/89d64eac1868c1f58cee2b1e9832b117bb485b5c
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-28T03:26:23Z. [ci skip]


  Commit: c17093f5acd32298b37dbbecc407c2f548ea027e
      https://github.com/quicwg/base-drafts/commit/c17093f5acd32298b37dbbecc407c2f548ea027e
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    A cid-limit-flip/draft-ietf-quic-http.html
    A cid-limit-flip/draft-ietf-quic-http.txt
    A cid-limit-flip/draft-ietf-quic-invariants.html
    A cid-limit-flip/draft-ietf-quic-invariants.txt
    A cid-limit-flip/draft-ietf-quic-qpack.html
    A cid-limit-flip/draft-ietf-quic-qpack.txt
    A cid-limit-flip/draft-ietf-quic-recovery.html
    A cid-limit-flip/draft-ietf-quic-recovery.txt
    A cid-limit-flip/draft-ietf-quic-tls.html
    A cid-limit-flip/draft-ietf-quic-tls.txt
    A cid-limit-flip/draft-ietf-quic-transport.html
    A cid-limit-flip/draft-ietf-quic-transport.txt
    A cid-limit-flip/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 1bba65d0. [ci skip]


  Commit: e253de55656a619d55b6f4e78b987d6a3187e977
      https://github.com/quicwg/base-drafts/commit/e253de55656a619d55b6f4e78b987d6a3187e977
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    A alpn-generic/draft-ietf-quic-http.html
    A alpn-generic/draft-ietf-quic-http.txt
    A alpn-generic/draft-ietf-quic-invariants.html
    A alpn-generic/draft-ietf-quic-invariants.txt
    A alpn-generic/draft-ietf-quic-qpack.html
    A alpn-generic/draft-ietf-quic-qpack.txt
    A alpn-generic/draft-ietf-quic-recovery.html
    A alpn-generic/draft-ietf-quic-recovery.txt
    A alpn-generic/draft-ietf-quic-tls.html
    A alpn-generic/draft-ietf-quic-tls.txt
    A alpn-generic/draft-ietf-quic-transport.html
    A alpn-generic/draft-ietf-quic-transport.txt
    A alpn-generic/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b41c848f. [ci skip]


  Commit: ad2a5b89a93b9a94ef1e3de0ebe0a873da04de29
      https://github.com/quicwg/base-drafts/commit/ad2a5b89a93b9a94ef1e3de0ebe0a873da04de29
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    A ianswett-deadlock-handshake-pto/draft-ietf-quic-http.html
    A ianswett-deadlock-handshake-pto/draft-ietf-quic-http.txt
    A ianswett-deadlock-handshake-pto/draft-ietf-quic-invariants.html
    A ianswett-deadlock-handshake-pto/draft-ietf-quic-invariants.txt
    A ianswett-deadlock-handshake-pto/draft-ietf-quic-qpack.html
    A ianswett-deadlock-handshake-pto/draft-ietf-quic-qpack.txt
    A ianswett-deadlock-handshake-pto/draft-ietf-quic-recovery.html
    A ianswett-deadlock-handshake-pto/draft-ietf-quic-recovery.txt
    A ianswett-deadlock-handshake-pto/draft-ietf-quic-tls.html
    A ianswett-deadlock-handshake-pto/draft-ietf-quic-tls.txt
    A ianswett-deadlock-handshake-pto/draft-ietf-quic-transport.html
    A ianswett-deadlock-handshake-pto/draft-ietf-quic-transport.txt
    A ianswett-deadlock-handshake-pto/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from cb3e9a49. [ci skip]


  Commit: 22d71c37c77dd0eae231687dc54b30c345b46117
      https://github.com/quicwg/base-drafts/commit/22d71c37c77dd0eae231687dc54b30c345b46117
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-28T18:02:58Z. [ci skip]


  Commit: 5c8614568e8b5b98ffa99719b3767e704dc484a3
      https://github.com/quicwg/base-drafts/commit/5c8614568e8b5b98ffa99719b3767e704dc484a3
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M ianswett-deadlock-handshake-pto/draft-ietf-quic-recovery.html
    M ianswett-deadlock-handshake-pto/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from eac517cf. [ci skip]


  Commit: 1eb2d2f37cf0460e369d7cf78d9605d8fc23af77
      https://github.com/quicwg/base-drafts/commit/1eb2d2f37cf0460e369d7cf78d9605d8fc23af77
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 5faae5c7. [ci skip]


  Commit: 7b99ed1410f4bbef36fa6ec04f8fb789e2d9ca02
      https://github.com/quicwg/base-drafts/commit/7b99ed1410f4bbef36fa6ec04f8fb789e2d9ca02
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    A ianswett-pto-handshake-complete/draft-ietf-quic-http.html
    A ianswett-pto-handshake-complete/draft-ietf-quic-http.txt
    A ianswett-pto-handshake-complete/draft-ietf-quic-invariants.html
    A ianswett-pto-handshake-complete/draft-ietf-quic-invariants.txt
    A ianswett-pto-handshake-complete/draft-ietf-quic-qpack.html
    A ianswett-pto-handshake-complete/draft-ietf-quic-qpack.txt
    A ianswett-pto-handshake-complete/draft-ietf-quic-recovery.html
    A ianswett-pto-handshake-complete/draft-ietf-quic-recovery.txt
    A ianswett-pto-handshake-complete/draft-ietf-quic-tls.html
    A ianswett-pto-handshake-complete/draft-ietf-quic-tls.txt
    A ianswett-pto-handshake-complete/draft-ietf-quic-transport.html
    A ianswett-pto-handshake-complete/draft-ietf-quic-transport.txt
    A ianswett-pto-handshake-complete/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d9ed15b2. [ci skip]


  Commit: 0ea79d34e35fb840794831bf4d0b0e2150387c5f
      https://github.com/quicwg/base-drafts/commit/0ea79d34e35fb840794831bf4d0b0e2150387c5f
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 681ade21. [ci skip]


  Commit: 64f5371f21b68641c39525a52913afc6ee010d57
      https://github.com/quicwg/base-drafts/commit/64f5371f21b68641c39525a52913afc6ee010d57
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 88a2d691. [ci skip]


  Commit: 82f974f8868ca49266c71a56b75f3ebf03117092
      https://github.com/quicwg/base-drafts/commit/82f974f8868ca49266c71a56b75f3ebf03117092
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 49476e60. [ci skip]


  Commit: 92c386d6836ade4c7ff9fa401d5f12cfb487d562
      https://github.com/quicwg/base-drafts/commit/92c386d6836ade4c7ff9fa401d5f12cfb487d562
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 1c7e1332. [ci skip]


  Commit: 00690811c4d21df0ceb5145b19fab13fabba9b0a
      https://github.com/quicwg/base-drafts/commit/00690811c4d21df0ceb5145b19fab13fabba9b0a
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M index.html
    M keep-acknowledged/draft-ietf-quic-http.html
    M keep-acknowledged/draft-ietf-quic-http.txt
    M keep-acknowledged/draft-ietf-quic-invariants.html
    M keep-acknowledged/draft-ietf-quic-invariants.txt
    M keep-acknowledged/draft-ietf-quic-qpack.html
    M keep-acknowledged/draft-ietf-quic-qpack.txt
    M keep-acknowledged/draft-ietf-quic-recovery.html
    M keep-acknowledged/draft-ietf-quic-recovery.txt
    M keep-acknowledged/draft-ietf-quic-tls.html
    M keep-acknowledged/draft-ietf-quic-tls.txt
    M keep-acknowledged/draft-ietf-quic-transport.html
    M keep-acknowledged/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 88bbc30a. [ci skip]


  Commit: 545bc4142e2e1771d4d8ab3d45d858d8a9a49965
      https://github.com/quicwg/base-drafts/commit/545bc4142e2e1771d4d8ab3d45d858d8a9a49965
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M alpn-generic/draft-ietf-quic-tls.html
    M alpn-generic/draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 475242d0. [ci skip]


  Commit: a44f4427c4748496de91ab7db0e344d4f053edaa
      https://github.com/quicwg/base-drafts/commit/a44f4427c4748496de91ab7db0e344d4f053edaa
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-28 (Tue, 28 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 948cb8ec. [ci skip]


  Commit: d44a6c934521f7c559c7ffb0cc9d4aecde370163
      https://github.com/quicwg/base-drafts/commit/d44a6c934521f7c559c7ffb0cc9d4aecde370163
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    R ianswett-ed-sending-probe-packets/draft-ietf-quic-http.html
    R ianswett-ed-sending-probe-packets/draft-ietf-quic-http.txt
    R ianswett-ed-sending-probe-packets/draft-ietf-quic-invariants.html
    R ianswett-ed-sending-probe-packets/draft-ietf-quic-invariants.txt
    R ianswett-ed-sending-probe-packets/draft-ietf-quic-qpack.html
    R ianswett-ed-sending-probe-packets/draft-ietf-quic-qpack.txt
    R ianswett-ed-sending-probe-packets/draft-ietf-quic-recovery.html
    R ianswett-ed-sending-probe-packets/draft-ietf-quic-recovery.txt
    R ianswett-ed-sending-probe-packets/draft-ietf-quic-tls.html
    R ianswett-ed-sending-probe-packets/draft-ietf-quic-tls.txt
    R ianswett-ed-sending-probe-packets/draft-ietf-quic-transport.html
    R ianswett-ed-sending-probe-packets/draft-ietf-quic-transport.txt
    R ianswett-ed-sending-probe-packets/index.html
    R ianswett-pto-counts/draft-ietf-quic-http.html
    R ianswett-pto-counts/draft-ietf-quic-http.txt
    R ianswett-pto-counts/draft-ietf-quic-invariants.html
    R ianswett-pto-counts/draft-ietf-quic-invariants.txt
    R ianswett-pto-counts/draft-ietf-quic-qpack.html
    R ianswett-pto-counts/draft-ietf-quic-qpack.txt
    R ianswett-pto-counts/draft-ietf-quic-recovery.html
    R ianswett-pto-counts/draft-ietf-quic-recovery.txt
    R ianswett-pto-counts/draft-ietf-quic-tls.html
    R ianswett-pto-counts/draft-ietf-quic-tls.txt
    R ianswett-pto-counts/draft-ietf-quic-transport.html
    R ianswett-pto-counts/draft-ietf-quic-transport.txt
    R ianswett-pto-counts/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from da3ad003. [ci skip]


  Commit: 02ffe4b5f1d5ba3f4685e1621f4b5a84649cb572
      https://github.com/quicwg/base-drafts/commit/02ffe4b5f1d5ba3f4685e1621f4b5a84649cb572
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    A dplpmtudtdtd/draft-ietf-quic-http.html
    A dplpmtudtdtd/draft-ietf-quic-http.txt
    A dplpmtudtdtd/draft-ietf-quic-invariants.html
    A dplpmtudtdtd/draft-ietf-quic-invariants.txt
    A dplpmtudtdtd/draft-ietf-quic-qpack.html
    A dplpmtudtdtd/draft-ietf-quic-qpack.txt
    A dplpmtudtdtd/draft-ietf-quic-recovery.html
    A dplpmtudtdtd/draft-ietf-quic-recovery.txt
    A dplpmtudtdtd/draft-ietf-quic-tls.html
    A dplpmtudtdtd/draft-ietf-quic-tls.txt
    A dplpmtudtdtd/draft-ietf-quic-transport.html
    A dplpmtudtdtd/draft-ietf-quic-transport.txt
    A dplpmtudtdtd/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 8e68ce62. [ci skip]


  Commit: f8cc868bd16bbdb9db7c0483fd38295a77ccf488
      https://github.com/quicwg/base-drafts/commit/f8cc868bd16bbdb9db7c0483fd38295a77ccf488
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-29T06:53:08Z. [ci skip]


  Commit: dcd2732f0ef4a88bd1cb11961da7593d3ef54665
      https://github.com/quicwg/base-drafts/commit/dcd2732f0ef4a88bd1cb11961da7593d3ef54665
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M index.html
    A semi-colons/draft-ietf-quic-http.html
    A semi-colons/draft-ietf-quic-http.txt
    A semi-colons/draft-ietf-quic-invariants.html
    A semi-colons/draft-ietf-quic-invariants.txt
    A semi-colons/draft-ietf-quic-qpack.html
    A semi-colons/draft-ietf-quic-qpack.txt
    A semi-colons/draft-ietf-quic-recovery.html
    A semi-colons/draft-ietf-quic-recovery.txt
    A semi-colons/draft-ietf-quic-tls.html
    A semi-colons/draft-ietf-quic-tls.txt
    A semi-colons/draft-ietf-quic-transport.html
    A semi-colons/draft-ietf-quic-transport.txt
    A semi-colons/index.html

  Log Message:
  -----------
  Script updating gh-pages from 49983b1f. [ci skip]


  Commit: bba31f811635012c43d977bf74b32e7d2b17047a
      https://github.com/quicwg/base-drafts/commit/bba31f811635012c43d977bf74b32e7d2b17047a
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M index.html
    A semicolons/draft-ietf-quic-http.html
    A semicolons/draft-ietf-quic-http.txt
    A semicolons/draft-ietf-quic-invariants.html
    A semicolons/draft-ietf-quic-invariants.txt
    A semicolons/draft-ietf-quic-qpack.html
    A semicolons/draft-ietf-quic-qpack.txt
    A semicolons/draft-ietf-quic-recovery.html
    A semicolons/draft-ietf-quic-recovery.txt
    A semicolons/draft-ietf-quic-tls.html
    A semicolons/draft-ietf-quic-tls.txt
    A semicolons/draft-ietf-quic-transport.html
    A semicolons/draft-ietf-quic-transport.txt
    A semicolons/index.html

  Log Message:
  -----------
  Script updating gh-pages from 49983b1f. [ci skip]


  Commit: 8886c5cc6bea88eee8440ef7922649e576bfd2a6
      https://github.com/quicwg/base-drafts/commit/8886c5cc6bea88eee8440ef7922649e576bfd2a6
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    A http/acknowledgements/draft-ietf-quic-http.html
    A http/acknowledgements/draft-ietf-quic-http.txt
    A http/acknowledgements/draft-ietf-quic-invariants.html
    A http/acknowledgements/draft-ietf-quic-invariants.txt
    A http/acknowledgements/draft-ietf-quic-qpack.html
    A http/acknowledgements/draft-ietf-quic-qpack.txt
    A http/acknowledgements/draft-ietf-quic-recovery.html
    A http/acknowledgements/draft-ietf-quic-recovery.txt
    A http/acknowledgements/draft-ietf-quic-tls.html
    A http/acknowledgements/draft-ietf-quic-tls.txt
    A http/acknowledgements/draft-ietf-quic-transport.html
    A http/acknowledgements/draft-ietf-quic-transport.txt
    A http/acknowledgements/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from a5adc8d4. [ci skip]


  Commit: d493d60591a5304f870677430ca49744ba722659
      https://github.com/quicwg/base-drafts/commit/d493d60591a5304f870677430ca49744ba722659
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-29T19:02:31Z. [ci skip]


  Commit: eb6469c58c701a95e51e02c158cffda3540adf02
      https://github.com/quicwg/base-drafts/commit/eb6469c58c701a95e51e02c158cffda3540adf02
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M index.html
    A transport/contributor_bullets/draft-ietf-quic-http.html
    A transport/contributor_bullets/draft-ietf-quic-http.txt
    A transport/contributor_bullets/draft-ietf-quic-invariants.html
    A transport/contributor_bullets/draft-ietf-quic-invariants.txt
    A transport/contributor_bullets/draft-ietf-quic-qpack.html
    A transport/contributor_bullets/draft-ietf-quic-qpack.txt
    A transport/contributor_bullets/draft-ietf-quic-recovery.html
    A transport/contributor_bullets/draft-ietf-quic-recovery.txt
    A transport/contributor_bullets/draft-ietf-quic-tls.html
    A transport/contributor_bullets/draft-ietf-quic-tls.txt
    A transport/contributor_bullets/draft-ietf-quic-transport.html
    A transport/contributor_bullets/draft-ietf-quic-transport.txt
    A transport/contributor_bullets/index.html

  Log Message:
  -----------
  Script updating gh-pages from cedaac6a. [ci skip]


  Commit: 745b08bd9bc8f0cb7f93b9a19bdaf0a2b15423f1
      https://github.com/quicwg/base-drafts/commit/745b08bd9bc8f0cb7f93b9a19bdaf0a2b15423f1
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 59e87b8a. [ci skip]


  Commit: cf6fe561710009d368258980c26860432f664be8
      https://github.com/quicwg/base-drafts/commit/cf6fe561710009d368258980c26860432f664be8
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from f254feb0. [ci skip]


  Commit: 1c4ee9e13124646856a9bd02d722c53bd325ca2c
      https://github.com/quicwg/base-drafts/commit/1c4ee9e13124646856a9bd02d722c53bd325ca2c
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    R ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-http.html
    R ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-http.txt
    R ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-invariants.html
    R ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-invariants.txt
    R ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-qpack.html
    R ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-qpack.txt
    R ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-recovery.html
    R ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-recovery.txt
    R ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-tls.html
    R ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-tls.txt
    R ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-transport.html
    R ianswett-PeerNotAwaitingAddressValidation/draft-ietf-quic-transport.txt
    R ianswett-PeerNotAwaitingAddressValidation/index.html
    M index.html
    M semicolons/draft-ietf-quic-transport.html
    M semicolons/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from d1644e73. [ci skip]


  Commit: 2813a2b97450c6c5668c111ae548db1d3deaa1b5
      https://github.com/quicwg/base-drafts/commit/2813a2b97450c6c5668c111ae548db1d3deaa1b5
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 568bd282. [ci skip]


  Commit: 66dd409a06d976050a9c175229d8359652a8b28d
      https://github.com/quicwg/base-drafts/commit/66dd409a06d976050a9c175229d8359652a8b28d
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 83cc29e7. [ci skip]


  Commit: 81a92ddc2432ad88ee79099b94e9f983b231994c
      https://github.com/quicwg/base-drafts/commit/81a92ddc2432ad88ee79099b94e9f983b231994c
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-29 (Wed, 29 Apr 2020)

  Changed paths:
    M dplpmtudtdtd/draft-ietf-quic-transport.html
    M dplpmtudtdtd/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 2c874dc1. [ci skip]


  Commit: cc35e6fe4cf0de294032afd15a7a26c4e000455d
      https://github.com/quicwg/base-drafts/commit/cc35e6fe4cf0de294032afd15a7a26c4e000455d
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    M index.html
    M link-preferred-address/draft-ietf-quic-http.html
    M link-preferred-address/draft-ietf-quic-http.txt
    M link-preferred-address/draft-ietf-quic-invariants.html
    M link-preferred-address/draft-ietf-quic-invariants.txt
    M link-preferred-address/draft-ietf-quic-qpack.html
    M link-preferred-address/draft-ietf-quic-qpack.txt
    M link-preferred-address/draft-ietf-quic-recovery.html
    M link-preferred-address/draft-ietf-quic-recovery.txt
    M link-preferred-address/draft-ietf-quic-tls.html
    M link-preferred-address/draft-ietf-quic-tls.txt
    M link-preferred-address/draft-ietf-quic-transport.html
    M link-preferred-address/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 7d5089a7. [ci skip]


  Commit: ba9868d5aa5ccaeaf24ab064805746056619a11d
      https://github.com/quicwg/base-drafts/commit/ba9868d5aa5ccaeaf24ab064805746056619a11d
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    M index.html
    A simple-routing-rephrase/draft-ietf-quic-http.html
    A simple-routing-rephrase/draft-ietf-quic-http.txt
    A simple-routing-rephrase/draft-ietf-quic-invariants.html
    A simple-routing-rephrase/draft-ietf-quic-invariants.txt
    A simple-routing-rephrase/draft-ietf-quic-qpack.html
    A simple-routing-rephrase/draft-ietf-quic-qpack.txt
    A simple-routing-rephrase/draft-ietf-quic-recovery.html
    A simple-routing-rephrase/draft-ietf-quic-recovery.txt
    A simple-routing-rephrase/draft-ietf-quic-tls.html
    A simple-routing-rephrase/draft-ietf-quic-tls.txt
    A simple-routing-rephrase/draft-ietf-quic-transport.html
    A simple-routing-rephrase/draft-ietf-quic-transport.txt
    A simple-routing-rephrase/index.html

  Log Message:
  -----------
  Script updating gh-pages from bcda6c22. [ci skip]


  Commit: 1b2c057c9c3f62be21aaf3060801ad751fbd6ddc
      https://github.com/quicwg/base-drafts/commit/1b2c057c9c3f62be21aaf3060801ad751fbd6ddc
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-30T03:59:56Z. [ci skip]


  Commit: 98b7dee89e9899fef228ebd54f07e24303fe4823
      https://github.com/quicwg/base-drafts/commit/98b7dee89e9899fef228ebd54f07e24303fe4823
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    A backticks/draft-ietf-quic-http.html
    A backticks/draft-ietf-quic-http.txt
    A backticks/draft-ietf-quic-invariants.html
    A backticks/draft-ietf-quic-invariants.txt
    A backticks/draft-ietf-quic-qpack.html
    A backticks/draft-ietf-quic-qpack.txt
    A backticks/draft-ietf-quic-recovery.html
    A backticks/draft-ietf-quic-recovery.txt
    A backticks/draft-ietf-quic-tls.html
    A backticks/draft-ietf-quic-tls.txt
    A backticks/draft-ietf-quic-transport.html
    A backticks/draft-ietf-quic-transport.txt
    A backticks/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 5fd61877. [ci skip]


  Commit: af1ca14cfab55ce64fb86b37d7fe7b4b80ffa6b6
      https://github.com/quicwg/base-drafts/commit/af1ca14cfab55ce64fb86b37d7fe7b4b80ffa6b6
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from f62641bd. [ci skip]


  Commit: ccf64087cb776b6822935ea9a3be9f366c888b8b
      https://github.com/quicwg/base-drafts/commit/ccf64087cb776b6822935ea9a3be9f366c888b8b
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-04-30T15:39:53Z. [ci skip]


  Commit: 8da070a3de7ec9ac7c36191b25bf6fc0b02124ba
      https://github.com/quicwg/base-drafts/commit/8da070a3de7ec9ac7c36191b25bf6fc0b02124ba
  Author: ID Bot <idbot@example.com>
  Date:   2020-04-30 (Thu, 30 Apr 2020)

  Changed paths:
    M ianswett-adaptive-loss/draft-ietf-quic-http.html
    M ianswett-adaptive-loss/draft-ietf-quic-http.txt
    M ianswett-adaptive-loss/draft-ietf-quic-invariants.html
    M ianswett-adaptive-loss/draft-ietf-quic-invariants.txt
    M ianswett-adaptive-loss/draft-ietf-quic-qpack.html
    M ianswett-adaptive-loss/draft-ietf-quic-qpack.txt
    M ianswett-adaptive-loss/draft-ietf-quic-recovery.html
    M ianswett-adaptive-loss/draft-ietf-quic-recovery.txt
    M ianswett-adaptive-loss/draft-ietf-quic-tls.html
    M ianswett-adaptive-loss/draft-ietf-quic-tls.txt
    M ianswett-adaptive-loss/draft-ietf-quic-transport.html
    M ianswett-adaptive-loss/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 4d3e918f. [ci skip]


  Commit: edae042a72460c19e614b649060e39ee45dc86cc
      https://github.com/quicwg/base-drafts/commit/edae042a72460c19e614b649060e39ee45dc86cc
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    R ianswett-loss-first/draft-ietf-quic-http.html
    R ianswett-loss-first/draft-ietf-quic-http.txt
    R ianswett-loss-first/draft-ietf-quic-invariants.html
    R ianswett-loss-first/draft-ietf-quic-invariants.txt
    R ianswett-loss-first/draft-ietf-quic-qpack.html
    R ianswett-loss-first/draft-ietf-quic-qpack.txt
    R ianswett-loss-first/draft-ietf-quic-recovery.html
    R ianswett-loss-first/draft-ietf-quic-recovery.txt
    R ianswett-loss-first/draft-ietf-quic-tls.html
    R ianswett-loss-first/draft-ietf-quic-tls.txt
    R ianswett-loss-first/draft-ietf-quic-transport.html
    R ianswett-loss-first/draft-ietf-quic-transport.txt
    R ianswett-loss-first/index.html
    R ianswett-pto-deadlock-now/draft-ietf-quic-http.html
    R ianswett-pto-deadlock-now/draft-ietf-quic-http.txt
    R ianswett-pto-deadlock-now/draft-ietf-quic-invariants.html
    R ianswett-pto-deadlock-now/draft-ietf-quic-invariants.txt
    R ianswett-pto-deadlock-now/draft-ietf-quic-qpack.html
    R ianswett-pto-deadlock-now/draft-ietf-quic-qpack.txt
    R ianswett-pto-deadlock-now/draft-ietf-quic-recovery.html
    R ianswett-pto-deadlock-now/draft-ietf-quic-recovery.txt
    R ianswett-pto-deadlock-now/draft-ietf-quic-tls.html
    R ianswett-pto-deadlock-now/draft-ietf-quic-tls.txt
    R ianswett-pto-deadlock-now/draft-ietf-quic-transport.html
    R ianswett-pto-deadlock-now/draft-ietf-quic-transport.txt
    R ianswett-pto-deadlock-now/index.html
    M index.html
    M simple-routing-rephrase/draft-ietf-quic-http.html
    M simple-routing-rephrase/draft-ietf-quic-http.txt
    M simple-routing-rephrase/draft-ietf-quic-invariants.html
    M simple-routing-rephrase/draft-ietf-quic-invariants.txt
    M simple-routing-rephrase/draft-ietf-quic-qpack.html
    M simple-routing-rephrase/draft-ietf-quic-qpack.txt
    M simple-routing-rephrase/draft-ietf-quic-recovery.html
    M simple-routing-rephrase/draft-ietf-quic-recovery.txt
    M simple-routing-rephrase/draft-ietf-quic-tls.html
    M simple-routing-rephrase/draft-ietf-quic-tls.txt
    M simple-routing-rephrase/draft-ietf-quic-transport.html
    M simple-routing-rephrase/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from bca51a97. [ci skip]


  Commit: e33ccb05116bdaa39c35ba298f9b4d742cbaabbd
      https://github.com/quicwg/base-drafts/commit/e33ccb05116bdaa39c35ba298f9b4d742cbaabbd
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-01T02:09:20Z. [ci skip]


  Commit: c6629697ffd765888e4ab7dcf989819799d6f814
      https://github.com/quicwg/base-drafts/commit/c6629697ffd765888e4ab7dcf989819799d6f814
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 68f81c2b. [ci skip]


  Commit: 521b988f79711a40917d9dc23c765b44f49037be
      https://github.com/quicwg/base-drafts/commit/521b988f79711a40917d9dc23c765b44f49037be
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    A forgery-limit/draft-ietf-quic-http.html
    A forgery-limit/draft-ietf-quic-http.txt
    A forgery-limit/draft-ietf-quic-invariants.html
    A forgery-limit/draft-ietf-quic-invariants.txt
    A forgery-limit/draft-ietf-quic-qpack.html
    A forgery-limit/draft-ietf-quic-qpack.txt
    A forgery-limit/draft-ietf-quic-recovery.html
    A forgery-limit/draft-ietf-quic-recovery.txt
    A forgery-limit/draft-ietf-quic-tls.html
    A forgery-limit/draft-ietf-quic-tls.txt
    A forgery-limit/draft-ietf-quic-transport.html
    A forgery-limit/draft-ietf-quic-transport.txt
    A forgery-limit/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 2417e9d9. [ci skip]


  Commit: 54b7c8808e0a156e6251d9afdfd076037c15fed5
      https://github.com/quicwg/base-drafts/commit/54b7c8808e0a156e6251d9afdfd076037c15fed5
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b192a052. [ci skip]


  Commit: 1700978376b18f996bcf54f4b068de84ef131b97
      https://github.com/quicwg/base-drafts/commit/1700978376b18f996bcf54f4b068de84ef131b97
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from dee37615. [ci skip]


  Commit: a4ab9cf6426edf6bbde5c18a14b31d13330214ef
      https://github.com/quicwg/base-drafts/commit/a4ab9cf6426edf6bbde5c18a14b31d13330214ef
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M index.html
    A list-tls-contribs/draft-ietf-quic-http.html
    A list-tls-contribs/draft-ietf-quic-http.txt
    A list-tls-contribs/draft-ietf-quic-invariants.html
    A list-tls-contribs/draft-ietf-quic-invariants.txt
    A list-tls-contribs/draft-ietf-quic-qpack.html
    A list-tls-contribs/draft-ietf-quic-qpack.txt
    A list-tls-contribs/draft-ietf-quic-recovery.html
    A list-tls-contribs/draft-ietf-quic-recovery.txt
    A list-tls-contribs/draft-ietf-quic-tls.html
    A list-tls-contribs/draft-ietf-quic-tls.txt
    A list-tls-contribs/draft-ietf-quic-transport.html
    A list-tls-contribs/draft-ietf-quic-transport.txt
    A list-tls-contribs/index.html

  Log Message:
  -----------
  Script updating gh-pages from 3b2a2846. [ci skip]


  Commit: 06ae3a92951771bb0615ca06a63fd3fd2ba0e804
      https://github.com/quicwg/base-drafts/commit/06ae3a92951771bb0615ca06a63fd3fd2ba0e804
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d5012822. [ci skip]


  Commit: 58c5610281ef89ed2af5ceac543d5277757f1419
      https://github.com/quicwg/base-drafts/commit/58c5610281ef89ed2af5ceac543d5277757f1419
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-01T14:00:09Z. [ci skip]


  Commit: 3b43edae9ecd900a849ce54fd8a1f81c884c4659
      https://github.com/quicwg/base-drafts/commit/3b43edae9ecd900a849ce54fd8a1f81c884c4659
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-04 (Mon, 04 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 7c19197c. [ci skip]


  Commit: 7c846cdd3049c0b3c198943d81b70907497c1e53
      https://github.com/quicwg/base-drafts/commit/7c846cdd3049c0b3c198943d81b70907497c1e53
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-04 (Mon, 04 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-04T04:51:28Z. [ci skip]


  Commit: da5baf05388d05c6d34235a8e98badf5eea77fc1
      https://github.com/quicwg/base-drafts/commit/da5baf05388d05c6d34235a8e98badf5eea77fc1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-04 (Mon, 04 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 66d56893. [ci skip]


  Commit: 0c69c652475e334e653137ae22ad43744bc33996
      https://github.com/quicwg/base-drafts/commit/0c69c652475e334e653137ae22ad43744bc33996
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from fd1142b0. [ci skip]


  Commit: 2f347ed360fc8d0ed7511a8604671a63713d1c11
      https://github.com/quicwg/base-drafts/commit/2f347ed360fc8d0ed7511a8604671a63713d1c11
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-05T17:46:14Z. [ci skip]


  Commit: 525f2b7c0bde8c7e3a7d6414fe657d3489e1fc1f
      https://github.com/quicwg/base-drafts/commit/525f2b7c0bde8c7e3a7d6414fe657d3489e1fc1f
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6da585a5. [ci skip]


  Commit: 45060f4ef476641b088e1cc997818cff05f5b9f0
      https://github.com/quicwg/base-drafts/commit/45060f4ef476641b088e1cc997818cff05f5b9f0
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6a1ea10a. [ci skip]


  Commit: 2836ec7e33b7e1b1fe25efc53a5e0d6e2facc04e
      https://github.com/quicwg/base-drafts/commit/2836ec7e33b7e1b1fe25efc53a5e0d6e2facc04e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-http.html
    M ianswett-min-cwnd/draft-ietf-quic-http.txt
    M ianswett-min-cwnd/draft-ietf-quic-invariants.html
    M ianswett-min-cwnd/draft-ietf-quic-invariants.txt
    M ianswett-min-cwnd/draft-ietf-quic-qpack.html
    M ianswett-min-cwnd/draft-ietf-quic-qpack.txt
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M ianswett-min-cwnd/draft-ietf-quic-tls.html
    M ianswett-min-cwnd/draft-ietf-quic-tls.txt
    M ianswett-min-cwnd/draft-ietf-quic-transport.html
    M ianswett-min-cwnd/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 1e67d0fb. [ci skip]


  Commit: 0dd67f102cd1b8f5935d41bde215cd67511d7900
      https://github.com/quicwg/base-drafts/commit/0dd67f102cd1b8f5935d41bde215cd67511d7900
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b32ab8c3. [ci skip]


  Commit: 19d476c48adea93e37e5094e3f6d94711f4f5582
      https://github.com/quicwg/base-drafts/commit/19d476c48adea93e37e5094e3f6d94711f4f5582
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c6a32d20. [ci skip]


  Commit: f4b910864da3240a13c5747044065d380413737a
      https://github.com/quicwg/base-drafts/commit/f4b910864da3240a13c5747044065d380413737a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M index.html
    A qpack-backtick/draft-ietf-quic-http.html
    A qpack-backtick/draft-ietf-quic-http.txt
    A qpack-backtick/draft-ietf-quic-invariants.html
    A qpack-backtick/draft-ietf-quic-invariants.txt
    A qpack-backtick/draft-ietf-quic-qpack.html
    A qpack-backtick/draft-ietf-quic-qpack.txt
    A qpack-backtick/draft-ietf-quic-recovery.html
    A qpack-backtick/draft-ietf-quic-recovery.txt
    A qpack-backtick/draft-ietf-quic-tls.html
    A qpack-backtick/draft-ietf-quic-tls.txt
    A qpack-backtick/draft-ietf-quic-transport.html
    A qpack-backtick/draft-ietf-quic-transport.txt
    A qpack-backtick/index.html

  Log Message:
  -----------
  Script updating gh-pages from beb5e70c. [ci skip]


  Commit: a15363b78980f56b739775560728c9660a19545e
      https://github.com/quicwg/base-drafts/commit/a15363b78980f56b739775560728c9660a19545e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 58a2fbbc. [ci skip]


  Commit: 5b35d638fbe4721521a5c215553d4d8930897ad7
      https://github.com/quicwg/base-drafts/commit/5b35d638fbe4721521a5c215553d4d8930897ad7
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from a09979ec. [ci skip]


  Commit: b1388225d9641111f00c90b419f8c67b6c5ce9b4
      https://github.com/quicwg/base-drafts/commit/b1388225d9641111f00c90b419f8c67b6c5ce9b4
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M index.html
    M qpack-security/draft-ietf-quic-http.html
    M qpack-security/draft-ietf-quic-http.txt
    M qpack-security/draft-ietf-quic-invariants.html
    M qpack-security/draft-ietf-quic-invariants.txt
    M qpack-security/draft-ietf-quic-qpack.html
    M qpack-security/draft-ietf-quic-qpack.txt
    M qpack-security/draft-ietf-quic-recovery.html
    M qpack-security/draft-ietf-quic-recovery.txt
    M qpack-security/draft-ietf-quic-tls.html
    M qpack-security/draft-ietf-quic-tls.txt
    M qpack-security/draft-ietf-quic-transport.html
    M qpack-security/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 090e7225. [ci skip]


  Commit: 5aa2c7a621767e70c892efd740a775d2665f5427
      https://github.com/quicwg/base-drafts/commit/5aa2c7a621767e70c892efd740a775d2665f5427
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b2704517. [ci skip]


  Commit: f820c2c01d2992a75b6eac49c0676092d8b325c2
      https://github.com/quicwg/base-drafts/commit/f820c2c01d2992a75b6eac49c0676092d8b325c2
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M index.html
    M qpack-security/draft-ietf-quic-qpack.html
    M qpack-security/draft-ietf-quic-qpack.txt

  Log Message:
  -----------
  Script updating gh-pages from 753a49d8. [ci skip]


  Commit: d35f1c305bf6dd57193b16c4b4d0182f88448627
      https://github.com/quicwg/base-drafts/commit/d35f1c305bf6dd57193b16c4b4d0182f88448627
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 9f773931. [ci skip]


  Commit: 439a9523c503acfcd693b9a7dcbe33e3fa44ca7e
      https://github.com/quicwg/base-drafts/commit/439a9523c503acfcd693b9a7dcbe33e3fa44ca7e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c5b9e728. [ci skip]


  Commit: 21f098f152c1200621b9242884ecd28117519cc9
      https://github.com/quicwg/base-drafts/commit/21f098f152c1200621b9242884ecd28117519cc9
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M ianswett-min-cwnd/draft-ietf-quic-recovery.html
    M ianswett-min-cwnd/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 9a69f882. [ci skip]


  Commit: 9916b0ed94da575056f8c6a41b184b8699ae0a54
      https://github.com/quicwg/base-drafts/commit/9916b0ed94da575056f8c6a41b184b8699ae0a54
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 1f66975c. [ci skip]


  Commit: 98db7b8effe7a0b00057b02897a1fe206e07220c
      https://github.com/quicwg/base-drafts/commit/98db7b8effe7a0b00057b02897a1fe206e07220c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M index.html
    A recovery-quoting/draft-ietf-quic-http.html
    A recovery-quoting/draft-ietf-quic-http.txt
    A recovery-quoting/draft-ietf-quic-invariants.html
    A recovery-quoting/draft-ietf-quic-invariants.txt
    A recovery-quoting/draft-ietf-quic-qpack.html
    A recovery-quoting/draft-ietf-quic-qpack.txt
    A recovery-quoting/draft-ietf-quic-recovery.html
    A recovery-quoting/draft-ietf-quic-recovery.txt
    A recovery-quoting/draft-ietf-quic-tls.html
    A recovery-quoting/draft-ietf-quic-tls.txt
    A recovery-quoting/draft-ietf-quic-transport.html
    A recovery-quoting/draft-ietf-quic-transport.txt
    A recovery-quoting/index.html

  Log Message:
  -----------
  Script updating gh-pages from 26608422. [ci skip]


  Commit: 86450a1ba4b451205a66d9c368b9cfc5474f0b87
      https://github.com/quicwg/base-drafts/commit/86450a1ba4b451205a66d9c368b9cfc5474f0b87
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-05 (Tue, 05 May 2020)

  Changed paths:
    M index.html
    A section-ref-titlecase/draft-ietf-quic-http.html
    A section-ref-titlecase/draft-ietf-quic-http.txt
    A section-ref-titlecase/draft-ietf-quic-invariants.html
    A section-ref-titlecase/draft-ietf-quic-invariants.txt
    A section-ref-titlecase/draft-ietf-quic-qpack.html
    A section-ref-titlecase/draft-ietf-quic-qpack.txt
    A section-ref-titlecase/draft-ietf-quic-recovery.html
    A section-ref-titlecase/draft-ietf-quic-recovery.txt
    A section-ref-titlecase/draft-ietf-quic-tls.html
    A section-ref-titlecase/draft-ietf-quic-tls.txt
    A section-ref-titlecase/draft-ietf-quic-transport.html
    A section-ref-titlecase/draft-ietf-quic-transport.txt
    A section-ref-titlecase/index.html

  Log Message:
  -----------
  Script updating gh-pages from f39b1b71. [ci skip]


  Commit: c6515756969475d566b5695d5c35e4261bdc5feb
      https://github.com/quicwg/base-drafts/commit/c6515756969475d566b5695d5c35e4261bdc5feb
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 4e9c4ee4. [ci skip]


  Commit: 68b493b855f32a2f65da209efe5b60e31ec92e80
      https://github.com/quicwg/base-drafts/commit/68b493b855f32a2f65da209efe5b60e31ec92e80
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6c90af6e. [ci skip]


  Commit: dd8fdd4abbc406fc194132108a48dd6f54c1d9a5
      https://github.com/quicwg/base-drafts/commit/dd8fdd4abbc406fc194132108a48dd6f54c1d9a5
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M index.html
    A pacing-dfn/draft-ietf-quic-http.html
    A pacing-dfn/draft-ietf-quic-http.txt
    A pacing-dfn/draft-ietf-quic-invariants.html
    A pacing-dfn/draft-ietf-quic-invariants.txt
    A pacing-dfn/draft-ietf-quic-qpack.html
    A pacing-dfn/draft-ietf-quic-qpack.txt
    A pacing-dfn/draft-ietf-quic-recovery.html
    A pacing-dfn/draft-ietf-quic-recovery.txt
    A pacing-dfn/draft-ietf-quic-tls.html
    A pacing-dfn/draft-ietf-quic-tls.txt
    A pacing-dfn/draft-ietf-quic-transport.html
    A pacing-dfn/draft-ietf-quic-transport.txt
    A pacing-dfn/index.html

  Log Message:
  -----------
  Script updating gh-pages from ca9cd611. [ci skip]


  Commit: 1199e15c16351d04dc70089288bcacea41fabd96
      https://github.com/quicwg/base-drafts/commit/1199e15c16351d04dc70089288bcacea41fabd96
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-06T05:10:45Z. [ci skip]


  Commit: 90dd41e90a070b58e7de2c7f9b7098185948885d
      https://github.com/quicwg/base-drafts/commit/90dd41e90a070b58e7de2c7f9b7098185948885d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt

  Log Message:
  -----------
  Script updating gh-pages from f001162b. [ci skip]


  Commit: 23dca6563c991aba4117bc40dd61b336f70f278e
      https://github.com/quicwg/base-drafts/commit/23dca6563c991aba4117bc40dd61b336f70f278e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt

  Log Message:
  -----------
  Script updating gh-pages from 561df07e. [ci skip]


  Commit: 8b253a5102221e2ade1538541fb5d5c7eda3ee3a
      https://github.com/quicwg/base-drafts/commit/8b253a5102221e2ade1538541fb5d5c7eda3ee3a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-http.html
    M forgery-limit/draft-ietf-quic-http.txt
    M forgery-limit/draft-ietf-quic-invariants.html
    M forgery-limit/draft-ietf-quic-invariants.txt
    M forgery-limit/draft-ietf-quic-qpack.html
    M forgery-limit/draft-ietf-quic-qpack.txt
    M forgery-limit/draft-ietf-quic-recovery.html
    M forgery-limit/draft-ietf-quic-recovery.txt
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from f94409a0. [ci skip]


  Commit: 36b27d4c00ca46b5f5f2f01708e3c1435f4b83ce
      https://github.com/quicwg/base-drafts/commit/36b27d4c00ca46b5f5f2f01708e3c1435f4b83ce
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-http.html
    M forgery-limit/draft-ietf-quic-http.txt
    M forgery-limit/draft-ietf-quic-qpack.html
    M forgery-limit/draft-ietf-quic-qpack.txt
    M forgery-limit/draft-ietf-quic-recovery.html
    M forgery-limit/draft-ietf-quic-recovery.txt
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 5efe1df7. [ci skip]


  Commit: efc640ed4afbcf16e881693058bc5adaabed9e43
      https://github.com/quicwg/base-drafts/commit/efc640ed4afbcf16e881693058bc5adaabed9e43
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c5063a3c. [ci skip]


  Commit: fd018b2be181c09f0b8bb3c9eebeb8e732176712
      https://github.com/quicwg/base-drafts/commit/fd018b2be181c09f0b8bb3c9eebeb8e732176712
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-06T20:18:27Z. [ci skip]


  Commit: 821ddb3e7365fd0dee51998503228233f5395d8f
      https://github.com/quicwg/base-drafts/commit/821ddb3e7365fd0dee51998503228233f5395d8f
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-06 (Wed, 06 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from dcf603b4. [ci skip]


  Commit: 3334faa25d76dfba2d072b580d872d02d2b0a6f9
      https://github.com/quicwg/base-drafts/commit/3334faa25d76dfba2d072b580d872d02d2b0a6f9
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-http.html
    M forgery-limit/draft-ietf-quic-http.txt
    M forgery-limit/draft-ietf-quic-invariants.html
    M forgery-limit/draft-ietf-quic-invariants.txt
    M forgery-limit/draft-ietf-quic-qpack.html
    M forgery-limit/draft-ietf-quic-qpack.txt
    M forgery-limit/draft-ietf-quic-recovery.html
    M forgery-limit/draft-ietf-quic-recovery.txt
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from acb7b227. [ci skip]


  Commit: eee182b8957b9930d884d78a1b32efb7e3f361d9
      https://github.com/quicwg/base-drafts/commit/eee182b8957b9930d884d78a1b32efb7e3f361d9
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-http.html
    M pacing-dfn/draft-ietf-quic-http.txt
    M pacing-dfn/draft-ietf-quic-invariants.html
    M pacing-dfn/draft-ietf-quic-invariants.txt
    M pacing-dfn/draft-ietf-quic-qpack.html
    M pacing-dfn/draft-ietf-quic-qpack.txt
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt
    M pacing-dfn/draft-ietf-quic-tls.html
    M pacing-dfn/draft-ietf-quic-tls.txt
    M pacing-dfn/draft-ietf-quic-transport.html
    M pacing-dfn/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from a4b888ea. [ci skip]


  Commit: 26fe2e542ccae97af169f458a025257e1a42c9cf
      https://github.com/quicwg/base-drafts/commit/26fe2e542ccae97af169f458a025257e1a42c9cf
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html
    R preferred_ncid/draft-ietf-quic-http.html
    R preferred_ncid/draft-ietf-quic-http.txt
    R preferred_ncid/draft-ietf-quic-invariants.html
    R preferred_ncid/draft-ietf-quic-invariants.txt
    R preferred_ncid/draft-ietf-quic-qpack.html
    R preferred_ncid/draft-ietf-quic-qpack.txt
    R preferred_ncid/draft-ietf-quic-recovery.html
    R preferred_ncid/draft-ietf-quic-recovery.txt
    R preferred_ncid/draft-ietf-quic-tls.html
    R preferred_ncid/draft-ietf-quic-tls.txt
    R preferred_ncid/draft-ietf-quic-transport.html
    R preferred_ncid/draft-ietf-quic-transport.txt
    R preferred_ncid/index.html

  Log Message:
  -----------
  Script updating gh-pages from 32b432f4. [ci skip]


  Commit: 45fcfb7733a73fca64443df3541870cd473b68a0
      https://github.com/quicwg/base-drafts/commit/45fcfb7733a73fca64443df3541870cd473b68a0
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-07T14:22:29Z. [ci skip]


  Commit: de2a724bf4c02aa377d0491e4bdfeef299d6c3aa
      https://github.com/quicwg/base-drafts/commit/de2a724bf4c02aa377d0491e4bdfeef299d6c3aa
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M index.html
    A invariants/consistency/draft-ietf-quic-http.html
    A invariants/consistency/draft-ietf-quic-http.txt
    A invariants/consistency/draft-ietf-quic-invariants.html
    A invariants/consistency/draft-ietf-quic-invariants.txt
    A invariants/consistency/draft-ietf-quic-qpack.html
    A invariants/consistency/draft-ietf-quic-qpack.txt
    A invariants/consistency/draft-ietf-quic-recovery.html
    A invariants/consistency/draft-ietf-quic-recovery.txt
    A invariants/consistency/draft-ietf-quic-tls.html
    A invariants/consistency/draft-ietf-quic-tls.txt
    A invariants/consistency/draft-ietf-quic-transport.html
    A invariants/consistency/draft-ietf-quic-transport.txt
    A invariants/consistency/index.html

  Log Message:
  -----------
  Script updating gh-pages from 1b967ade. [ci skip]


  Commit: 84b77a80b1951ad4b73435c77e02d7d54163f08e
      https://github.com/quicwg/base-drafts/commit/84b77a80b1951ad4b73435c77e02d7d54163f08e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M index.html
    M invariants/consistency/draft-ietf-quic-invariants.html
    M invariants/consistency/draft-ietf-quic-invariants.txt

  Log Message:
  -----------
  Script updating gh-pages from 5ddd5814. [ci skip]


  Commit: 05b1b9e33fadc0eb404d998ecd106da0c26ff81d
      https://github.com/quicwg/base-drafts/commit/05b1b9e33fadc0eb404d998ecd106da0c26ff81d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-07T23:47:07Z. [ci skip]


  Commit: 6ca8b5908f473b83aea51de16ed2f6633c69a117
      https://github.com/quicwg/base-drafts/commit/6ca8b5908f473b83aea51de16ed2f6633c69a117
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 7d982461. [ci skip]


  Commit: d3b73b962bf7c4b7091ea75c2854ef97157c0331
      https://github.com/quicwg/base-drafts/commit/d3b73b962bf7c4b7091ea75c2854ef97157c0331
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d5613bc3. [ci skip]


  Commit: 86ad95005e39c9a5ea71cfa5e4feacc8244610f9
      https://github.com/quicwg/base-drafts/commit/86ad95005e39c9a5ea71cfa5e4feacc8244610f9
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-07 (Thu, 07 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 103cfce7. [ci skip]


  Commit: bee027bf6ba3ecede4a4f60c94fece3d0d309e92
      https://github.com/quicwg/base-drafts/commit/bee027bf6ba3ecede4a4f60c94fece3d0d309e92
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-http.html
    M forgery-limit/draft-ietf-quic-http.txt
    M forgery-limit/draft-ietf-quic-invariants.html
    M forgery-limit/draft-ietf-quic-invariants.txt
    M forgery-limit/draft-ietf-quic-qpack.html
    M forgery-limit/draft-ietf-quic-qpack.txt
    M forgery-limit/draft-ietf-quic-recovery.html
    M forgery-limit/draft-ietf-quic-recovery.txt
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from cdf65530. [ci skip]


  Commit: bd1f384d04a744e9adb80ef0a4a66f86fe6490b1
      https://github.com/quicwg/base-drafts/commit/bd1f384d04a744e9adb80ef0a4a66f86fe6490b1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 20d77df1. [ci skip]


  Commit: 6e70a36f2b02f09f0c0afde6dfed37296282910b
      https://github.com/quicwg/base-drafts/commit/6e70a36f2b02f09f0c0afde6dfed37296282910b
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    R dead-hp-note/draft-ietf-quic-http.html
    R dead-hp-note/draft-ietf-quic-http.txt
    R dead-hp-note/draft-ietf-quic-invariants.html
    R dead-hp-note/draft-ietf-quic-invariants.txt
    R dead-hp-note/draft-ietf-quic-qpack.html
    R dead-hp-note/draft-ietf-quic-qpack.txt
    R dead-hp-note/draft-ietf-quic-recovery.html
    R dead-hp-note/draft-ietf-quic-recovery.txt
    R dead-hp-note/draft-ietf-quic-tls.html
    R dead-hp-note/draft-ietf-quic-tls.txt
    R dead-hp-note/draft-ietf-quic-transport.html
    R dead-hp-note/draft-ietf-quic-transport.txt
    R dead-hp-note/index.html
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 7d4f2ac7. [ci skip]


  Commit: 89a29a8644d777236a13c7e5aeac2e6e69ea4420
      https://github.com/quicwg/base-drafts/commit/89a29a8644d777236a13c7e5aeac2e6e69ea4420
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M index.html
    R retry-split/draft-ietf-quic-http.html
    R retry-split/draft-ietf-quic-http.txt
    R retry-split/draft-ietf-quic-invariants.html
    R retry-split/draft-ietf-quic-invariants.txt
    R retry-split/draft-ietf-quic-qpack.html
    R retry-split/draft-ietf-quic-qpack.txt
    R retry-split/draft-ietf-quic-recovery.html
    R retry-split/draft-ietf-quic-recovery.txt
    R retry-split/draft-ietf-quic-tls.html
    R retry-split/draft-ietf-quic-tls.txt
    R retry-split/draft-ietf-quic-transport.html
    R retry-split/draft-ietf-quic-transport.txt
    R retry-split/index.html

  Log Message:
  -----------
  Script updating gh-pages from f756508d. [ci skip]


  Commit: ab97aa2721e6d17b3e36f1a7c1222948c04a67d1
      https://github.com/quicwg/base-drafts/commit/ab97aa2721e6d17b3e36f1a7c1222948c04a67d1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-08T08:05:07Z. [ci skip]


  Commit: fe1d9e1af213b6820fa9ca24f7794ebadd2827c4
      https://github.com/quicwg/base-drafts/commit/fe1d9e1af213b6820fa9ca24f7794ebadd2827c4
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    A ianswett-anti-amplification/draft-ietf-quic-http.html
    A ianswett-anti-amplification/draft-ietf-quic-http.txt
    A ianswett-anti-amplification/draft-ietf-quic-invariants.html
    A ianswett-anti-amplification/draft-ietf-quic-invariants.txt
    A ianswett-anti-amplification/draft-ietf-quic-qpack.html
    A ianswett-anti-amplification/draft-ietf-quic-qpack.txt
    A ianswett-anti-amplification/draft-ietf-quic-recovery.html
    A ianswett-anti-amplification/draft-ietf-quic-recovery.txt
    A ianswett-anti-amplification/draft-ietf-quic-tls.html
    A ianswett-anti-amplification/draft-ietf-quic-tls.txt
    A ianswett-anti-amplification/draft-ietf-quic-transport.html
    A ianswett-anti-amplification/draft-ietf-quic-transport.txt
    A ianswett-anti-amplification/index.html
    M index.html
    R jri/ack-ranges/draft-ietf-quic-http.html
    R jri/ack-ranges/draft-ietf-quic-http.txt
    R jri/ack-ranges/draft-ietf-quic-invariants.html
    R jri/ack-ranges/draft-ietf-quic-invariants.txt
    R jri/ack-ranges/draft-ietf-quic-qpack.html
    R jri/ack-ranges/draft-ietf-quic-qpack.txt
    R jri/ack-ranges/draft-ietf-quic-recovery.html
    R jri/ack-ranges/draft-ietf-quic-recovery.txt
    R jri/ack-ranges/draft-ietf-quic-tls.html
    R jri/ack-ranges/draft-ietf-quic-tls.txt
    R jri/ack-ranges/draft-ietf-quic-transport.html
    R jri/ack-ranges/draft-ietf-quic-transport.txt
    R jri/ack-ranges/index.html
    R jri/cids/draft-ietf-quic-http.html
    R jri/cids/draft-ietf-quic-http.txt
    R jri/cids/draft-ietf-quic-invariants.html
    R jri/cids/draft-ietf-quic-invariants.txt
    R jri/cids/draft-ietf-quic-qpack.html
    R jri/cids/draft-ietf-quic-qpack.txt
    R jri/cids/draft-ietf-quic-recovery.html
    R jri/cids/draft-ietf-quic-recovery.txt
    R jri/cids/draft-ietf-quic-tls.html
    R jri/cids/draft-ietf-quic-tls.txt
    R jri/cids/draft-ietf-quic-transport.html
    R jri/cids/draft-ietf-quic-transport.txt
    R jri/cids/index.html
    R jri/fix-normative/draft-ietf-quic-http.html
    R jri/fix-normative/draft-ietf-quic-http.txt
    R jri/fix-normative/draft-ietf-quic-invariants.html
    R jri/fix-normative/draft-ietf-quic-invariants.txt
    R jri/fix-normative/draft-ietf-quic-qpack.html
    R jri/fix-normative/draft-ietf-quic-qpack.txt
    R jri/fix-normative/draft-ietf-quic-recovery.html
    R jri/fix-normative/draft-ietf-quic-recovery.txt
    R jri/fix-normative/draft-ietf-quic-tls.html
    R jri/fix-normative/draft-ietf-quic-tls.txt
    R jri/fix-normative/draft-ietf-quic-transport.html
    R jri/fix-normative/draft-ietf-quic-transport.txt
    R jri/fix-normative/index.html
    R kramdown-updates/draft-ietf-quic-http.html
    R kramdown-updates/draft-ietf-quic-http.txt
    R kramdown-updates/draft-ietf-quic-invariants.html
    R kramdown-updates/draft-ietf-quic-invariants.txt
    R kramdown-updates/draft-ietf-quic-qpack.html
    R kramdown-updates/draft-ietf-quic-qpack.txt
    R kramdown-updates/draft-ietf-quic-recovery.html
    R kramdown-updates/draft-ietf-quic-recovery.txt
    R kramdown-updates/draft-ietf-quic-tls.html
    R kramdown-updates/draft-ietf-quic-tls.txt
    R kramdown-updates/draft-ietf-quic-transport.html
    R kramdown-updates/draft-ietf-quic-transport.txt
    R kramdown-updates/index.html

  Log Message:
  -----------
  Script updating gh-pages from 010574ee. [ci skip]


  Commit: 8d6d72bb604b99ca176fc83bc99e402cd1ea0e2a
      https://github.com/quicwg/base-drafts/commit/8d6d72bb604b99ca176fc83bc99e402cd1ea0e2a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-10T20:06:46Z. [ci skip]


  Commit: 6cb2d6dd813edb7aba37b5dd724cdb84d9a070f1
      https://github.com/quicwg/base-drafts/commit/6cb2d6dd813edb7aba37b5dd724cdb84d9a070f1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M ianswett-anti-amplification/draft-ietf-quic-recovery.html
    M ianswett-anti-amplification/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c8fa3f8b. [ci skip]


  Commit: f12bf5e546bd8dfaa76633a62b5cc784049c5506
      https://github.com/quicwg/base-drafts/commit/f12bf5e546bd8dfaa76633a62b5cc784049c5506
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M index.html
    M tls-compat-mode/draft-ietf-quic-http.html
    M tls-compat-mode/draft-ietf-quic-http.txt
    M tls-compat-mode/draft-ietf-quic-invariants.html
    M tls-compat-mode/draft-ietf-quic-invariants.txt
    M tls-compat-mode/draft-ietf-quic-qpack.html
    M tls-compat-mode/draft-ietf-quic-qpack.txt
    M tls-compat-mode/draft-ietf-quic-recovery.html
    M tls-compat-mode/draft-ietf-quic-recovery.txt
    M tls-compat-mode/draft-ietf-quic-tls.html
    M tls-compat-mode/draft-ietf-quic-tls.txt
    M tls-compat-mode/draft-ietf-quic-transport.html
    M tls-compat-mode/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 3a633d8b. [ci skip]


  Commit: 713abdea1befb53f79e5141a59edfb5b64003fbe
      https://github.com/quicwg/base-drafts/commit/713abdea1befb53f79e5141a59edfb5b64003fbe
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M index.html
    M tls-compat-mode/draft-ietf-quic-tls.html
    M tls-compat-mode/draft-ietf-quic-tls.txt

  Log Message:
  -----------
  Script updating gh-pages from 6a4c95ef. [ci skip]


  Commit: 891af06d4cd6192c0dbbf4e8794db0c27c01b564
      https://github.com/quicwg/base-drafts/commit/891af06d4cd6192c0dbbf4e8794db0c27c01b564
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M index.html
    M link-preferred-address/draft-ietf-quic-http.html
    M link-preferred-address/draft-ietf-quic-http.txt
    M link-preferred-address/draft-ietf-quic-invariants.html
    M link-preferred-address/draft-ietf-quic-invariants.txt
    M link-preferred-address/draft-ietf-quic-qpack.html
    M link-preferred-address/draft-ietf-quic-qpack.txt
    M link-preferred-address/draft-ietf-quic-recovery.html
    M link-preferred-address/draft-ietf-quic-recovery.txt
    M link-preferred-address/draft-ietf-quic-tls.html
    M link-preferred-address/draft-ietf-quic-tls.txt
    M link-preferred-address/draft-ietf-quic-transport.html
    M link-preferred-address/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from b400f094. [ci skip]


  Commit: 2e2799be8f8a792f845728d260355ae9cf9d8071
      https://github.com/quicwg/base-drafts/commit/2e2799be8f8a792f845728d260355ae9cf9d8071
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    A bounded-rcid/draft-ietf-quic-http.html
    A bounded-rcid/draft-ietf-quic-http.txt
    A bounded-rcid/draft-ietf-quic-invariants.html
    A bounded-rcid/draft-ietf-quic-invariants.txt
    A bounded-rcid/draft-ietf-quic-qpack.html
    A bounded-rcid/draft-ietf-quic-qpack.txt
    A bounded-rcid/draft-ietf-quic-recovery.html
    A bounded-rcid/draft-ietf-quic-recovery.txt
    A bounded-rcid/draft-ietf-quic-tls.html
    A bounded-rcid/draft-ietf-quic-tls.txt
    A bounded-rcid/draft-ietf-quic-transport.html
    A bounded-rcid/draft-ietf-quic-transport.txt
    A bounded-rcid/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 67b209c6. [ci skip]


  Commit: e2689af02eaa58a5382b5f7f14a2860e292260d2
      https://github.com/quicwg/base-drafts/commit/e2689af02eaa58a5382b5f7f14a2860e292260d2
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-10 (Sun, 10 May 2020)

  Changed paths:
    M bounded-rcid/draft-ietf-quic-transport.html
    M bounded-rcid/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from dde433fa. [ci skip]


  Commit: aeae59627bb8db7e98feb89e33902d838d10f9c4
      https://github.com/quicwg/base-drafts/commit/aeae59627bb8db7e98feb89e33902d838d10f9c4
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-http.html
    M forgery-limit/draft-ietf-quic-http.txt
    M forgery-limit/draft-ietf-quic-invariants.html
    M forgery-limit/draft-ietf-quic-invariants.txt
    M forgery-limit/draft-ietf-quic-qpack.html
    M forgery-limit/draft-ietf-quic-qpack.txt
    M forgery-limit/draft-ietf-quic-recovery.html
    M forgery-limit/draft-ietf-quic-recovery.txt
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 7958c9f2. [ci skip]


  Commit: 38003b282717a2168dfe83bc3793e81175e37b19
      https://github.com/quicwg/base-drafts/commit/38003b282717a2168dfe83bc3793e81175e37b19
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M authenticate-hs-cid/draft-ietf-quic-http.html
    M authenticate-hs-cid/draft-ietf-quic-http.txt
    M authenticate-hs-cid/draft-ietf-quic-invariants.html
    M authenticate-hs-cid/draft-ietf-quic-invariants.txt
    M authenticate-hs-cid/draft-ietf-quic-qpack.html
    M authenticate-hs-cid/draft-ietf-quic-qpack.txt
    M authenticate-hs-cid/draft-ietf-quic-recovery.html
    M authenticate-hs-cid/draft-ietf-quic-recovery.txt
    M authenticate-hs-cid/draft-ietf-quic-tls.html
    M authenticate-hs-cid/draft-ietf-quic-tls.txt
    M authenticate-hs-cid/draft-ietf-quic-transport.html
    M authenticate-hs-cid/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from e30cf5fc. [ci skip]


  Commit: 9a2d3b172c2fa361bbc04f5d73dc3568881e991d
      https://github.com/quicwg/base-drafts/commit/9a2d3b172c2fa361bbc04f5d73dc3568881e991d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M index.html
    A vn-consistency/draft-ietf-quic-http.html
    A vn-consistency/draft-ietf-quic-http.txt
    A vn-consistency/draft-ietf-quic-invariants.html
    A vn-consistency/draft-ietf-quic-invariants.txt
    A vn-consistency/draft-ietf-quic-qpack.html
    A vn-consistency/draft-ietf-quic-qpack.txt
    A vn-consistency/draft-ietf-quic-recovery.html
    A vn-consistency/draft-ietf-quic-recovery.txt
    A vn-consistency/draft-ietf-quic-tls.html
    A vn-consistency/draft-ietf-quic-tls.txt
    A vn-consistency/draft-ietf-quic-transport.html
    A vn-consistency/draft-ietf-quic-transport.txt
    A vn-consistency/index.html

  Log Message:
  -----------
  Script updating gh-pages from cc13fc68. [ci skip]


  Commit: b7b20e73e1c621af45a5c81654681e0dbd444de1
      https://github.com/quicwg/base-drafts/commit/b7b20e73e1c621af45a5c81654681e0dbd444de1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-11T20:16:13Z. [ci skip]


  Commit: f92bccb179cfa38d3bc7a6c2445a0168aa8b656e
      https://github.com/quicwg/base-drafts/commit/f92bccb179cfa38d3bc7a6c2445a0168aa8b656e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M index.html
    A transport/handshake-tokens/draft-ietf-quic-http.html
    A transport/handshake-tokens/draft-ietf-quic-http.txt
    A transport/handshake-tokens/draft-ietf-quic-invariants.html
    A transport/handshake-tokens/draft-ietf-quic-invariants.txt
    A transport/handshake-tokens/draft-ietf-quic-qpack.html
    A transport/handshake-tokens/draft-ietf-quic-qpack.txt
    A transport/handshake-tokens/draft-ietf-quic-recovery.html
    A transport/handshake-tokens/draft-ietf-quic-recovery.txt
    A transport/handshake-tokens/draft-ietf-quic-tls.html
    A transport/handshake-tokens/draft-ietf-quic-tls.txt
    A transport/handshake-tokens/draft-ietf-quic-transport.html
    A transport/handshake-tokens/draft-ietf-quic-transport.txt
    A transport/handshake-tokens/index.html

  Log Message:
  -----------
  Script updating gh-pages from 52242c6f. [ci skip]


  Commit: 81ae967d202001a0af1ebf5ed78020552f1c54ce
      https://github.com/quicwg/base-drafts/commit/81ae967d202001a0af1ebf5ed78020552f1c54ce
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from a77915f2. [ci skip]


  Commit: c9dfbc7227ef4123ab8320095c72adfa9dd809ed
      https://github.com/quicwg/base-drafts/commit/c9dfbc7227ef4123ab8320095c72adfa9dd809ed
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from cc6e8b75. [ci skip]


  Commit: c51ee44559160457ff44739eb8ca8e40b3b65efc
      https://github.com/quicwg/base-drafts/commit/c51ee44559160457ff44739eb8ca8e40b3b65efc
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M authenticate-hs-cid/draft-ietf-quic-http.html
    M authenticate-hs-cid/draft-ietf-quic-http.txt
    M authenticate-hs-cid/draft-ietf-quic-invariants.html
    M authenticate-hs-cid/draft-ietf-quic-invariants.txt
    M authenticate-hs-cid/draft-ietf-quic-qpack.html
    M authenticate-hs-cid/draft-ietf-quic-qpack.txt
    M authenticate-hs-cid/draft-ietf-quic-recovery.html
    M authenticate-hs-cid/draft-ietf-quic-recovery.txt
    M authenticate-hs-cid/draft-ietf-quic-tls.html
    M authenticate-hs-cid/draft-ietf-quic-tls.txt
    M authenticate-hs-cid/draft-ietf-quic-transport.html
    M authenticate-hs-cid/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6c046207. [ci skip]


  Commit: f01e296097fd3ef5e344af76653d4a9e2632c72e
      https://github.com/quicwg/base-drafts/commit/f01e296097fd3ef5e344af76653d4a9e2632c72e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    A active-cid-limit-rpt/draft-ietf-quic-http.html
    A active-cid-limit-rpt/draft-ietf-quic-http.txt
    A active-cid-limit-rpt/draft-ietf-quic-invariants.html
    A active-cid-limit-rpt/draft-ietf-quic-invariants.txt
    A active-cid-limit-rpt/draft-ietf-quic-qpack.html
    A active-cid-limit-rpt/draft-ietf-quic-qpack.txt
    A active-cid-limit-rpt/draft-ietf-quic-recovery.html
    A active-cid-limit-rpt/draft-ietf-quic-recovery.txt
    A active-cid-limit-rpt/draft-ietf-quic-tls.html
    A active-cid-limit-rpt/draft-ietf-quic-tls.txt
    A active-cid-limit-rpt/draft-ietf-quic-transport.html
    A active-cid-limit-rpt/draft-ietf-quic-transport.txt
    A active-cid-limit-rpt/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b61358a3. [ci skip]


  Commit: be8502045c812d44d76d4d5707c76a6db16bdc4a
      https://github.com/quicwg/base-drafts/commit/be8502045c812d44d76d4d5707c76a6db16bdc4a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M authenticate-hs-cid/draft-ietf-quic-transport.html
    M authenticate-hs-cid/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6ae7f18b. [ci skip]


  Commit: 08355821417042c0679cc1f97db3617bc0ff4d4e
      https://github.com/quicwg/base-drafts/commit/08355821417042c0679cc1f97db3617bc0ff4d4e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M index.html
    A more-semicolon/draft-ietf-quic-http.html
    A more-semicolon/draft-ietf-quic-http.txt
    A more-semicolon/draft-ietf-quic-invariants.html
    A more-semicolon/draft-ietf-quic-invariants.txt
    A more-semicolon/draft-ietf-quic-qpack.html
    A more-semicolon/draft-ietf-quic-qpack.txt
    A more-semicolon/draft-ietf-quic-recovery.html
    A more-semicolon/draft-ietf-quic-recovery.txt
    A more-semicolon/draft-ietf-quic-tls.html
    A more-semicolon/draft-ietf-quic-tls.txt
    A more-semicolon/draft-ietf-quic-transport.html
    A more-semicolon/draft-ietf-quic-transport.txt
    A more-semicolon/index.html

  Log Message:
  -----------
  Script updating gh-pages from 7c61e509. [ci skip]


  Commit: 85cce44fcde7bf8ac2cbdb9f2cf76c5a75f3ea06
      https://github.com/quicwg/base-drafts/commit/85cce44fcde7bf8ac2cbdb9f2cf76c5a75f3ea06
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 821dff86. [ci skip]


  Commit: 84863220e60c9bd5a4476e145584f455b5a541c6
      https://github.com/quicwg/base-drafts/commit/84863220e60c9bd5a4476e145584f455b5a541c6
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M authenticate-hs-cid/draft-ietf-quic-transport.html
    M authenticate-hs-cid/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 27dfb697. [ci skip]


  Commit: 528a94d51085a496603e7c1a27bd4b3f2d766595
      https://github.com/quicwg/base-drafts/commit/528a94d51085a496603e7c1a27bd4b3f2d766595
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M index.html
    A transport/another-one/draft-ietf-quic-http.html
    A transport/another-one/draft-ietf-quic-http.txt
    A transport/another-one/draft-ietf-quic-invariants.html
    A transport/another-one/draft-ietf-quic-invariants.txt
    A transport/another-one/draft-ietf-quic-qpack.html
    A transport/another-one/draft-ietf-quic-qpack.txt
    A transport/another-one/draft-ietf-quic-recovery.html
    A transport/another-one/draft-ietf-quic-recovery.txt
    A transport/another-one/draft-ietf-quic-tls.html
    A transport/another-one/draft-ietf-quic-tls.txt
    A transport/another-one/draft-ietf-quic-transport.html
    A transport/another-one/draft-ietf-quic-transport.txt
    A transport/another-one/index.html

  Log Message:
  -----------
  Script updating gh-pages from fc034211. [ci skip]


  Commit: e7a8c3920283f51ae09b94db997aad52096c1131
      https://github.com/quicwg/base-drafts/commit/e7a8c3920283f51ae09b94db997aad52096c1131
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-12T13:57:05Z. [ci skip]


  Commit: 35c585f706b5759aba7f2803d00e09ca48b3d91f
      https://github.com/quicwg/base-drafts/commit/35c585f706b5759aba7f2803d00e09ca48b3d91f
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from ee4343f3. [ci skip]


  Commit: 9e078b3ba9765bd67bc349c9845311ed9341047f
      https://github.com/quicwg/base-drafts/commit/9e078b3ba9765bd67bc349c9845311ed9341047f
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-12T22:07:54Z. [ci skip]


  Commit: cdfce89dbc66b2586e69d0f42b98f33cd6affb33
      https://github.com/quicwg/base-drafts/commit/cdfce89dbc66b2586e69d0f42b98f33cd6affb33
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from bfc26350. [ci skip]


  Commit: 6f8775ebc12f3dee1dc9f560a0de22bf2dda83e7
      https://github.com/quicwg/base-drafts/commit/6f8775ebc12f3dee1dc9f560a0de22bf2dda83e7
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M index.html
    A period-rttvar/draft-ietf-quic-http.html
    A period-rttvar/draft-ietf-quic-http.txt
    A period-rttvar/draft-ietf-quic-invariants.html
    A period-rttvar/draft-ietf-quic-invariants.txt
    A period-rttvar/draft-ietf-quic-qpack.html
    A period-rttvar/draft-ietf-quic-qpack.txt
    A period-rttvar/draft-ietf-quic-recovery.html
    A period-rttvar/draft-ietf-quic-recovery.txt
    A period-rttvar/draft-ietf-quic-tls.html
    A period-rttvar/draft-ietf-quic-tls.txt
    A period-rttvar/draft-ietf-quic-transport.html
    A period-rttvar/draft-ietf-quic-transport.txt
    A period-rttvar/index.html

  Log Message:
  -----------
  Script updating gh-pages from 3ea9d070. [ci skip]


  Commit: a1c6c731d8da93b5747d436a81f2abd067070239
      https://github.com/quicwg/base-drafts/commit/a1c6c731d8da93b5747d436a81f2abd067070239
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M index.html
    A qpack-thanks/draft-ietf-quic-http.html
    A qpack-thanks/draft-ietf-quic-http.txt
    A qpack-thanks/draft-ietf-quic-invariants.html
    A qpack-thanks/draft-ietf-quic-invariants.txt
    A qpack-thanks/draft-ietf-quic-qpack.html
    A qpack-thanks/draft-ietf-quic-qpack.txt
    A qpack-thanks/draft-ietf-quic-recovery.html
    A qpack-thanks/draft-ietf-quic-recovery.txt
    A qpack-thanks/draft-ietf-quic-tls.html
    A qpack-thanks/draft-ietf-quic-tls.txt
    A qpack-thanks/draft-ietf-quic-transport.html
    A qpack-thanks/draft-ietf-quic-transport.txt
    A qpack-thanks/index.html

  Log Message:
  -----------
  Script updating gh-pages from 3b8ce70e. [ci skip]


  Commit: 720ba4334b8ead6f90b3ec4f6b7fcaa604682452
      https://github.com/quicwg/base-drafts/commit/720ba4334b8ead6f90b3ec4f6b7fcaa604682452
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b3a870e4. [ci skip]


  Commit: 78c2eba43af568e35f9610b50e7b63a759b79d40
      https://github.com/quicwg/base-drafts/commit/78c2eba43af568e35f9610b50e7b63a759b79d40
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M index.html
    A qpack-table-flip/draft-ietf-quic-http.html
    A qpack-table-flip/draft-ietf-quic-http.txt
    A qpack-table-flip/draft-ietf-quic-invariants.html
    A qpack-table-flip/draft-ietf-quic-invariants.txt
    A qpack-table-flip/draft-ietf-quic-qpack.html
    A qpack-table-flip/draft-ietf-quic-qpack.txt
    A qpack-table-flip/draft-ietf-quic-recovery.html
    A qpack-table-flip/draft-ietf-quic-recovery.txt
    A qpack-table-flip/draft-ietf-quic-tls.html
    A qpack-table-flip/draft-ietf-quic-tls.txt
    A qpack-table-flip/draft-ietf-quic-transport.html
    A qpack-table-flip/draft-ietf-quic-transport.txt
    A qpack-table-flip/index.html

  Log Message:
  -----------
  Script updating gh-pages from 7d7c3a2a. [ci skip]


  Commit: e50474b30df882be258a79732ef8176b51fa79c3
      https://github.com/quicwg/base-drafts/commit/e50474b30df882be258a79732ef8176b51fa79c3
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    A alarm-timer/draft-ietf-quic-http.html
    A alarm-timer/draft-ietf-quic-http.txt
    A alarm-timer/draft-ietf-quic-invariants.html
    A alarm-timer/draft-ietf-quic-invariants.txt
    A alarm-timer/draft-ietf-quic-qpack.html
    A alarm-timer/draft-ietf-quic-qpack.txt
    A alarm-timer/draft-ietf-quic-recovery.html
    A alarm-timer/draft-ietf-quic-recovery.txt
    A alarm-timer/draft-ietf-quic-tls.html
    A alarm-timer/draft-ietf-quic-tls.txt
    A alarm-timer/draft-ietf-quic-transport.html
    A alarm-timer/draft-ietf-quic-transport.txt
    A alarm-timer/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 1dc5a83a. [ci skip]


  Commit: ec249c855aaf4c155231b016b7000a0fbf38f5ae
      https://github.com/quicwg/base-drafts/commit/ec249c855aaf4c155231b016b7000a0fbf38f5ae
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 444638c1. [ci skip]


  Commit: 525ce6b5aeede51ba5f6d750373540601863460a
      https://github.com/quicwg/base-drafts/commit/525ce6b5aeede51ba5f6d750373540601863460a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-http.html
    M pacing-dfn/draft-ietf-quic-http.txt
    M pacing-dfn/draft-ietf-quic-invariants.html
    M pacing-dfn/draft-ietf-quic-invariants.txt
    M pacing-dfn/draft-ietf-quic-qpack.html
    M pacing-dfn/draft-ietf-quic-qpack.txt
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt
    M pacing-dfn/draft-ietf-quic-tls.html
    M pacing-dfn/draft-ietf-quic-tls.txt
    M pacing-dfn/draft-ietf-quic-transport.html
    M pacing-dfn/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 75791409. [ci skip]


  Commit: 5694311c2b0ea170dee343ae0b5d705b2a47f13d
      https://github.com/quicwg/base-drafts/commit/5694311c2b0ea170dee343ae0b5d705b2a47f13d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M index.html
    A max-udp-pmtud/draft-ietf-quic-http.html
    A max-udp-pmtud/draft-ietf-quic-http.txt
    A max-udp-pmtud/draft-ietf-quic-invariants.html
    A max-udp-pmtud/draft-ietf-quic-invariants.txt
    A max-udp-pmtud/draft-ietf-quic-qpack.html
    A max-udp-pmtud/draft-ietf-quic-qpack.txt
    A max-udp-pmtud/draft-ietf-quic-recovery.html
    A max-udp-pmtud/draft-ietf-quic-recovery.txt
    A max-udp-pmtud/draft-ietf-quic-tls.html
    A max-udp-pmtud/draft-ietf-quic-tls.txt
    A max-udp-pmtud/draft-ietf-quic-transport.html
    A max-udp-pmtud/draft-ietf-quic-transport.txt
    A max-udp-pmtud/index.html

  Log Message:
  -----------
  Script updating gh-pages from d081726c. [ci skip]


  Commit: 7756febc2aac5f6b1a26bb46cb8b32ca578c4164
      https://github.com/quicwg/base-drafts/commit/7756febc2aac5f6b1a26bb46cb8b32ca578c4164
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M active-cid-limit-rpt/draft-ietf-quic-http.html
    M active-cid-limit-rpt/draft-ietf-quic-http.txt
    M active-cid-limit-rpt/draft-ietf-quic-invariants.html
    M active-cid-limit-rpt/draft-ietf-quic-invariants.txt
    M active-cid-limit-rpt/draft-ietf-quic-qpack.html
    M active-cid-limit-rpt/draft-ietf-quic-qpack.txt
    M active-cid-limit-rpt/draft-ietf-quic-recovery.html
    M active-cid-limit-rpt/draft-ietf-quic-recovery.txt
    M active-cid-limit-rpt/draft-ietf-quic-tls.html
    M active-cid-limit-rpt/draft-ietf-quic-tls.txt
    M active-cid-limit-rpt/draft-ietf-quic-transport.html
    M active-cid-limit-rpt/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 8c7e6033. [ci skip]


  Commit: f76941d1d589b72877ce053991f6b66a53b90419
      https://github.com/quicwg/base-drafts/commit/f76941d1d589b72877ce053991f6b66a53b90419
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M index.html
    A lint-args/draft-ietf-quic-http.html
    A lint-args/draft-ietf-quic-http.txt
    A lint-args/draft-ietf-quic-invariants.html
    A lint-args/draft-ietf-quic-invariants.txt
    A lint-args/draft-ietf-quic-qpack.html
    A lint-args/draft-ietf-quic-qpack.txt
    A lint-args/draft-ietf-quic-recovery.html
    A lint-args/draft-ietf-quic-recovery.txt
    A lint-args/draft-ietf-quic-tls.html
    A lint-args/draft-ietf-quic-tls.txt
    A lint-args/draft-ietf-quic-transport.html
    A lint-args/draft-ietf-quic-transport.txt
    A lint-args/index.html

  Log Message:
  -----------
  Script updating gh-pages from abcb20da. [ci skip]


  Commit: fe89f9c38ab9a0ef70c66052a6375fec5fad65ee
      https://github.com/quicwg/base-drafts/commit/fe89f9c38ab9a0ef70c66052a6375fec5fad65ee
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 48825d06. [ci skip]


  Commit: 023409de9d5924c3da022407d5029b360e06da8c
      https://github.com/quicwg/base-drafts/commit/023409de9d5924c3da022407d5029b360e06da8c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-13T13:09:39Z. [ci skip]


  Commit: d52db97c426df374be3880a4c1b3be29f39c395e
      https://github.com/quicwg/base-drafts/commit/d52db97c426df374be3880a4c1b3be29f39c395e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    A ianswett-onpacketreceived/draft-ietf-quic-http.html
    A ianswett-onpacketreceived/draft-ietf-quic-http.txt
    A ianswett-onpacketreceived/draft-ietf-quic-invariants.html
    A ianswett-onpacketreceived/draft-ietf-quic-invariants.txt
    A ianswett-onpacketreceived/draft-ietf-quic-qpack.html
    A ianswett-onpacketreceived/draft-ietf-quic-qpack.txt
    A ianswett-onpacketreceived/draft-ietf-quic-recovery.html
    A ianswett-onpacketreceived/draft-ietf-quic-recovery.txt
    A ianswett-onpacketreceived/draft-ietf-quic-tls.html
    A ianswett-onpacketreceived/draft-ietf-quic-tls.txt
    A ianswett-onpacketreceived/draft-ietf-quic-transport.html
    A ianswett-onpacketreceived/draft-ietf-quic-transport.txt
    A ianswett-onpacketreceived/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 2a479f63. [ci skip]


  Commit: fb7b1bb31d0c55b8ab2f0b3a0b7684946be44a71
      https://github.com/quicwg/base-drafts/commit/fb7b1bb31d0c55b8ab2f0b3a0b7684946be44a71
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    A ianswett-pto-loss-reorg/draft-ietf-quic-http.html
    A ianswett-pto-loss-reorg/draft-ietf-quic-http.txt
    A ianswett-pto-loss-reorg/draft-ietf-quic-invariants.html
    A ianswett-pto-loss-reorg/draft-ietf-quic-invariants.txt
    A ianswett-pto-loss-reorg/draft-ietf-quic-qpack.html
    A ianswett-pto-loss-reorg/draft-ietf-quic-qpack.txt
    A ianswett-pto-loss-reorg/draft-ietf-quic-recovery.html
    A ianswett-pto-loss-reorg/draft-ietf-quic-recovery.txt
    A ianswett-pto-loss-reorg/draft-ietf-quic-tls.html
    A ianswett-pto-loss-reorg/draft-ietf-quic-tls.txt
    A ianswett-pto-loss-reorg/draft-ietf-quic-transport.html
    A ianswett-pto-loss-reorg/draft-ietf-quic-transport.txt
    A ianswett-pto-loss-reorg/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 3353fd18. [ci skip]


  Commit: 1daf6be81349240d1fbb435f937fa5168091a529
      https://github.com/quicwg/base-drafts/commit/1daf6be81349240d1fbb435f937fa5168091a529
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M ianswett-pto-loss-reorg/draft-ietf-quic-recovery.html
    M ianswett-pto-loss-reorg/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from dfcb5d82. [ci skip]


  Commit: fccc82851a5e47b3faf8cc92b608772523dba08c
      https://github.com/quicwg/base-drafts/commit/fccc82851a5e47b3faf8cc92b608772523dba08c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from beed8a8b. [ci skip]


  Commit: 034a9c8fa82aa7bac28a42a0ef7d63207afe3e92
      https://github.com/quicwg/base-drafts/commit/034a9c8fa82aa7bac28a42a0ef7d63207afe3e92
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 16d3b954. [ci skip]


  Commit: 8c231e22977d4c42d6aaadfaaae0d758fd0a51d8
      https://github.com/quicwg/base-drafts/commit/8c231e22977d4c42d6aaadfaaae0d758fd0a51d8
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M index.html
    M qpack-thanks/draft-ietf-quic-http.html
    M qpack-thanks/draft-ietf-quic-http.txt
    M qpack-thanks/draft-ietf-quic-invariants.html
    M qpack-thanks/draft-ietf-quic-invariants.txt
    M qpack-thanks/draft-ietf-quic-qpack.html
    M qpack-thanks/draft-ietf-quic-qpack.txt
    M qpack-thanks/draft-ietf-quic-recovery.html
    M qpack-thanks/draft-ietf-quic-recovery.txt
    M qpack-thanks/draft-ietf-quic-tls.html
    M qpack-thanks/draft-ietf-quic-tls.txt
    M qpack-thanks/draft-ietf-quic-transport.html
    M qpack-thanks/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 634b2eb1. [ci skip]


  Commit: ad2c862513d8314bdde196f75052866de698259d
      https://github.com/quicwg/base-drafts/commit/ad2c862513d8314bdde196f75052866de698259d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from e58f1b6d. [ci skip]


  Commit: dfc83404f145f0e1e52b133c6b3d92a6f04cd404
      https://github.com/quicwg/base-drafts/commit/dfc83404f145f0e1e52b133c6b3d92a6f04cd404
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html
    R qpack-example-fix/draft-ietf-quic-http.html
    R qpack-example-fix/draft-ietf-quic-http.txt
    R qpack-example-fix/draft-ietf-quic-invariants.html
    R qpack-example-fix/draft-ietf-quic-invariants.txt
    R qpack-example-fix/draft-ietf-quic-qpack.html
    R qpack-example-fix/draft-ietf-quic-qpack.txt
    R qpack-example-fix/draft-ietf-quic-recovery.html
    R qpack-example-fix/draft-ietf-quic-recovery.txt
    R qpack-example-fix/draft-ietf-quic-tls.html
    R qpack-example-fix/draft-ietf-quic-tls.txt
    R qpack-example-fix/draft-ietf-quic-transport.html
    R qpack-example-fix/draft-ietf-quic-transport.txt
    R qpack-example-fix/index.html
    R resumption/draft-ietf-quic-http.html
    R resumption/draft-ietf-quic-http.txt
    R resumption/draft-ietf-quic-invariants.html
    R resumption/draft-ietf-quic-invariants.txt
    R resumption/draft-ietf-quic-qpack.html
    R resumption/draft-ietf-quic-qpack.txt
    R resumption/draft-ietf-quic-recovery.html
    R resumption/draft-ietf-quic-recovery.txt
    R resumption/draft-ietf-quic-tls.html
    R resumption/draft-ietf-quic-tls.txt
    R resumption/draft-ietf-quic-transport.html
    R resumption/draft-ietf-quic-transport.txt
    R resumption/index.html

  Log Message:
  -----------
  Script updating gh-pages from dad1786a. [ci skip]


  Commit: 5e2a954a986043607d7565d5836fb9ef7c3b92a2
      https://github.com/quicwg/base-drafts/commit/5e2a954a986043607d7565d5836fb9ef7c3b92a2
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-14T00:47:18Z. [ci skip]


  Commit: 08d6691c6ed9fc68b249d22835364ae24be2ca94
      https://github.com/quicwg/base-drafts/commit/08d6691c6ed9fc68b249d22835364ae24be2ca94
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 5ddcfde1. [ci skip]


  Commit: c81c28013b2eb85034ce41332cf6ad9502f5b074
      https://github.com/quicwg/base-drafts/commit/c81c28013b2eb85034ce41332cf6ad9502f5b074
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-http.html
    M pacing-dfn/draft-ietf-quic-http.txt
    M pacing-dfn/draft-ietf-quic-invariants.html
    M pacing-dfn/draft-ietf-quic-invariants.txt
    M pacing-dfn/draft-ietf-quic-qpack.html
    M pacing-dfn/draft-ietf-quic-qpack.txt
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt
    M pacing-dfn/draft-ietf-quic-tls.html
    M pacing-dfn/draft-ietf-quic-tls.txt
    M pacing-dfn/draft-ietf-quic-transport.html
    M pacing-dfn/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 7ddcd1d5. [ci skip]


  Commit: e868f39d443286852a520fa4ae8df9a948e021d3
      https://github.com/quicwg/base-drafts/commit/e868f39d443286852a520fa4ae8df9a948e021d3
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt

  Log Message:
  -----------
  Script updating gh-pages from 954f037f. [ci skip]


  Commit: d7d613f9940b8ec0302d430a090578f53dedfaaf
      https://github.com/quicwg/base-drafts/commit/d7d613f9940b8ec0302d430a090578f53dedfaaf
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M index.html
    M max-udp-pmtud/draft-ietf-quic-http.html
    M max-udp-pmtud/draft-ietf-quic-http.txt
    M max-udp-pmtud/draft-ietf-quic-invariants.html
    M max-udp-pmtud/draft-ietf-quic-invariants.txt
    M max-udp-pmtud/draft-ietf-quic-qpack.html
    M max-udp-pmtud/draft-ietf-quic-qpack.txt
    M max-udp-pmtud/draft-ietf-quic-recovery.html
    M max-udp-pmtud/draft-ietf-quic-recovery.txt
    M max-udp-pmtud/draft-ietf-quic-tls.html
    M max-udp-pmtud/draft-ietf-quic-tls.txt
    M max-udp-pmtud/draft-ietf-quic-transport.html
    M max-udp-pmtud/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from defd05ef. [ci skip]


  Commit: 6db6be226d14648b85a31e4d3c6b333211960b9a
      https://github.com/quicwg/base-drafts/commit/6db6be226d14648b85a31e4d3c6b333211960b9a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d891e7d7. [ci skip]


  Commit: 566f2243a5044b1722eae8b32129c17d24a1c276
      https://github.com/quicwg/base-drafts/commit/566f2243a5044b1722eae8b32129c17d24a1c276
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M active-cid-limit-rpt/draft-ietf-quic-http.html
    M active-cid-limit-rpt/draft-ietf-quic-http.txt
    M active-cid-limit-rpt/draft-ietf-quic-invariants.html
    M active-cid-limit-rpt/draft-ietf-quic-invariants.txt
    M active-cid-limit-rpt/draft-ietf-quic-qpack.html
    M active-cid-limit-rpt/draft-ietf-quic-qpack.txt
    M active-cid-limit-rpt/draft-ietf-quic-recovery.html
    M active-cid-limit-rpt/draft-ietf-quic-recovery.txt
    M active-cid-limit-rpt/draft-ietf-quic-tls.html
    M active-cid-limit-rpt/draft-ietf-quic-tls.txt
    M active-cid-limit-rpt/draft-ietf-quic-transport.html
    M active-cid-limit-rpt/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 67dc30dd. [ci skip]


  Commit: 514a023c3269780b0435d5cb826c2a1323885ac7
      https://github.com/quicwg/base-drafts/commit/514a023c3269780b0435d5cb826c2a1323885ac7
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt

  Log Message:
  -----------
  Script updating gh-pages from dbc8ffcf. [ci skip]


  Commit: f70329bf6aef0c73cdfda2cedddf659e7d09aef1
      https://github.com/quicwg/base-drafts/commit/f70329bf6aef0c73cdfda2cedddf659e7d09aef1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt

  Log Message:
  -----------
  Script updating gh-pages from 819f4d0d. [ci skip]


  Commit: 6092603dbca0a903da808803eb93caffbc698bb1
      https://github.com/quicwg/base-drafts/commit/6092603dbca0a903da808803eb93caffbc698bb1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from a5808755. [ci skip]


  Commit: 35600de39165e2f23df2a584fc94e58f8a68d02b
      https://github.com/quicwg/base-drafts/commit/35600de39165e2f23df2a584fc94e58f8a68d02b
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 53dc234d. [ci skip]


  Commit: 10f9869fbb60cc7f0e507624cf4492ce99ec7467
      https://github.com/quicwg/base-drafts/commit/10f9869fbb60cc7f0e507624cf4492ce99ec7467
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 304da575. [ci skip]


  Commit: 0ebb796a92e37af747823a0db59c33f1212c27ae
      https://github.com/quicwg/base-drafts/commit/0ebb796a92e37af747823a0db59c33f1212c27ae
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-14T21:28:38Z. [ci skip]


  Commit: 62416bab8e1fc93b1118738b3f2bc4edff3dd69d
      https://github.com/quicwg/base-drafts/commit/62416bab8e1fc93b1118738b3f2bc4edff3dd69d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from cf0fdf6c. [ci skip]


  Commit: 98c3486694275b52736652a65a5cfe37d5bb7270
      https://github.com/quicwg/base-drafts/commit/98c3486694275b52736652a65a5cfe37d5bb7270
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html
    R qpack-static-comment/draft-ietf-quic-http.html
    R qpack-static-comment/draft-ietf-quic-http.txt
    R qpack-static-comment/draft-ietf-quic-invariants.html
    R qpack-static-comment/draft-ietf-quic-invariants.txt
    R qpack-static-comment/draft-ietf-quic-qpack.html
    R qpack-static-comment/draft-ietf-quic-qpack.txt
    R qpack-static-comment/draft-ietf-quic-recovery.html
    R qpack-static-comment/draft-ietf-quic-recovery.txt
    R qpack-static-comment/draft-ietf-quic-tls.html
    R qpack-static-comment/draft-ietf-quic-tls.txt
    R qpack-static-comment/draft-ietf-quic-transport.html
    R qpack-static-comment/draft-ietf-quic-transport.txt
    R qpack-static-comment/index.html

  Log Message:
  -----------
  Script updating gh-pages from b9cb2b3f. [ci skip]


  Commit: 1deeec4688b531602d3d9d108ebc845254ef16b3
      https://github.com/quicwg/base-drafts/commit/1deeec4688b531602d3d9d108ebc845254ef16b3
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-16 (Sat, 16 May 2020)

  Changed paths:
    R blocked-frame-limit-names/draft-ietf-quic-http.html
    R blocked-frame-limit-names/draft-ietf-quic-http.txt
    R blocked-frame-limit-names/draft-ietf-quic-invariants.html
    R blocked-frame-limit-names/draft-ietf-quic-invariants.txt
    R blocked-frame-limit-names/draft-ietf-quic-qpack.html
    R blocked-frame-limit-names/draft-ietf-quic-qpack.txt
    R blocked-frame-limit-names/draft-ietf-quic-recovery.html
    R blocked-frame-limit-names/draft-ietf-quic-recovery.txt
    R blocked-frame-limit-names/draft-ietf-quic-tls.html
    R blocked-frame-limit-names/draft-ietf-quic-tls.txt
    R blocked-frame-limit-names/draft-ietf-quic-transport.html
    R blocked-frame-limit-names/draft-ietf-quic-transport.txt
    R blocked-frame-limit-names/index.html
    M ianswett-onpacketreceived/draft-ietf-quic-http.html
    M ianswett-onpacketreceived/draft-ietf-quic-http.txt
    M ianswett-onpacketreceived/draft-ietf-quic-invariants.html
    M ianswett-onpacketreceived/draft-ietf-quic-invariants.txt
    M ianswett-onpacketreceived/draft-ietf-quic-qpack.html
    M ianswett-onpacketreceived/draft-ietf-quic-qpack.txt
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.html
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.txt
    M ianswett-onpacketreceived/draft-ietf-quic-tls.html
    M ianswett-onpacketreceived/draft-ietf-quic-tls.txt
    M ianswett-onpacketreceived/draft-ietf-quic-transport.html
    M ianswett-onpacketreceived/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 75aeb2ff. [ci skip]


Compare: https://github.com/quicwg/base-drafts/compare/d8cd09bc9c20...1deeec4688b5


From nobody Sat May 16 12:51:31 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 8EAC73A08D3 for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:51:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.199
X-Spam-Level: 
X-Spam-Status: No, score=-0.199 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 vKqFO7d1MtgU for <quic-issues@ietfa.amsl.com>; Sat, 16 May 2020 12:51:27 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 753753A0880 for <quic-issues@ietf.org>; Sat, 16 May 2020 12:51:27 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id C6FC11200F6 for <quic-issues@ietf.org>; Sat, 16 May 2020 12:51:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589658686; bh=DGGmjJXe9VqbuD9j2dA9vRNcjmCpv3IXVP8BzSG25rg=; h=Date:From:To:Subject:From; b=BpBg4dyupMDRkGgbybGWS/Z1saltjts05Osbsphy6EGit9+Bo1avZBDCO5wmUkr2+ d4oWlRSCV2sq18rwxCQzYBIC3qfxQECJ5C8SIQLCPRgAN0OxiHEPCnI6i5y3UC38CA rqpCP+BfeghSnAZmGZzjo2kaBoMkteSbpYIQnIxU=
Date: Sat, 16 May 2020 12:51:26 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1deeec-bb7b0d@github.com>
Subject: [quicwg/base-drafts] bb7b0d: Script updating archive at 2020-05-16T19:51:09Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cFzfhfCjeFz06E-cTDaYDwh0ibo>
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: Sat, 16 May 2020 19:51:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: bb7b0d6df10331fea63bddc10ea3326d038df57d
      https://github.com/quicwg/base-drafts/commit/bb7b0d6df10331fea63bddc10ea3326d038df57d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-16 (Sat, 16 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-16T19:51:09Z. [ci skip]



From nobody Sun May 17 16:35:03 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 5A5273A08B8 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:35:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 gCVa2S_DdPAf for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:35:01 -0700 (PDT)
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 240EB3A08B6 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:35:01 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 073F0282B34 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:35:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589758500; bh=AQaZFUYfTnTYqyJV2EENIuLWlUIJTMqcc4VGq4vjpAE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VJLwgg24ABzPZdXa+kxhCPaWNiqhmL1uscTyYft7rqS4raO90lyE/7RYS603q8FbF lsJDmInS3LYvOpKF2BQZG6pUCcBEAJC/MD3sTFQtfMMywlh3j/U1EqbTBuzCaJy04E Kpu3Q5HVbFsDyFSq3Z++sqTPCK4PNlBKfRCZ4zWg=
Date: Sun, 17 May 2020 16:34:59 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZMCIVY4EIKV6SP4OF4ZWVSHEVBNHHCJ2QBFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3661/629878939@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3661@github.com>
References: <quicwg/base-drafts/issues/3661@github.com>
Subject: Re: [quicwg/base-drafts] Include epoch in the AAD or the nonce? (#3661)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1ca23eb05f_4c73ff231acd95c928d7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jwdBk_JnYsaC_gJN2UMsEuvGhOs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 17 May 2020 23:35:02 -0000

----==_mimepart_5ec1ca23eb05f_4c73ff231acd95c928d7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In case of QUIC, I wonder if epoch is included already in AAD, as the packet type in the first byte.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3661#issuecomment-629878939
----==_mimepart_5ec1ca23eb05f_4c73ff231acd95c928d7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>In case of QUIC, I wonder if epoch is included already in AAD, as the packet type in the first byte.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3661#issuecomment-629878939">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYGGYWNSQK5LOE6UP3RSBYCHANCNFSM4NCUCTOA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5E46ESQQS4PWYQ3PTRSBYCHA5CNFSM4NCUCTOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWFTBGY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3661#issuecomment-629878939",
"url": "https://github.com/quicwg/base-drafts/issues/3661#issuecomment-629878939",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1ca23eb05f_4c73ff231acd95c928d7--


From nobody Sun May 17 16:56:33 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 86BC33A08ED for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:56:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 vDCQ0llIi2WI for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:56:30 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1A77F3A08EC for <quic-issues@ietf.org>; Sun, 17 May 2020 16:56:29 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 04F321C0637 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:56:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759789; bh=PZmkXkQjL9xFv5LmEl5/X5axoWEZ6SUSpN0S9KFWPEg=; h=Date:From:To:Subject:From; b=aLA1rpzLLVwVo/fDuDSfWo/trX1qobd38sg0FRbryXzpW/NlMBggH4He8Wh7cj4e4 WeJAdcOQSyK/lvBulKrLM59VMsCrzenUh4+nrjdrEtLHSDv9PrZC7BOVRb7b67oP4h xFcxFZuglmlKFMIxMnbGmFXJAkCRYrwZPEfFkqmI=
Date: Sun, 17 May 2020 16:56:28 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/b9cb2b-66cc63@github.com>
Subject: [quicwg/base-drafts] de6e11: Clarify zero-length CIDs and active_connection_id_...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tI_6DmEBLVE5YyFRXqvi4115O2A>
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: Sun, 17 May 2020 23:56:32 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: de6e116638bbdb77a98b998d719cdc00fa56b99c
      https://github.com/quicwg/base-drafts/commit/de6e116638bbdb77a98b998d719cdc00fa56b99c
  Author: Nick Harper <nharper@chromium.org>
  Date:   2020-02-05 (Wed, 05 Feb 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Clarify zero-length CIDs and active_connection_id_limit TP


  Commit: 19e5189c0519c9207a6e81699ea3e802924ad875
      https://github.com/quicwg/base-drafts/commit/19e5189c0519c9207a6e81699ea3e802924ad875
  Author: Nick Harper <nharper@chromium.org>
  Date:   2020-02-06 (Thu, 06 Feb 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Ignore value if zero; clean up some other language.


  Commit: 66894f8b39ba2c10a626972497de31e5c19b6f6a
      https://github.com/quicwg/base-drafts/commit/66894f8b39ba2c10a626972497de31e5c19b6f6a
  Author: Nick Harper <nharper@chromium.org>
  Date:   2020-02-06 (Thu, 06 Feb 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Explain why parameter is ignored in certain cases.

This is @martinthomson's suggestion from the PR with a slight tweak.


  Commit: 6936ea28ba228be60966351b035a06affbc877ab
      https://github.com/quicwg/base-drafts/commit/6936ea28ba228be60966351b035a06affbc877ab
  Author: Nick Harper <github@nharper.org>
  Date:   2020-02-06 (Thu, 06 Feb 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  s/MUST be no less/MUST NOT be less/

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: 7eabbf9eb01302c45b75f3beb5fd9ced655112d6
      https://github.com/quicwg/base-drafts/commit/7eabbf9eb01302c45b75f3beb5fd9ced655112d6
  Author: Nick Harper <nharper@chromium.org>
  Date:   2020-02-10 (Mon, 10 Feb 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Tweak MUST NOT be less/MUST be at least


  Commit: 0b3ff6b60864e9b29657e784c4a85bec36a05694
      https://github.com/quicwg/base-drafts/commit/0b3ff6b60864e9b29657e784c4a85bec36a05694
  Author: Nick Harper <github@nharper.org>
  Date:   2020-04-07 (Tue, 07 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Clarify what to do if an invalid value is received

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 149475babfed6f9f739460dee7ff953bd43c0ad9
      https://github.com/quicwg/base-drafts/commit/149475babfed6f9f739460dee7ff953bd43c0ad9
  Author: Nick Harper <nharper@chromium.org>
  Date:   2020-05-08 (Fri, 08 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Clarify issues instead of uses 0-length CID


  Commit: 66cc63c5c69f9ced7db910d93d5f633d333c8e27
      https://github.com/quicwg/base-drafts/commit/66cc63c5c69f9ced7db910d93d5f633d333c8e27
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3426 from nharper/active-cid-limit-clarity

Clarify zero-length CIDs and active_connection_id_limit TP


Compare: https://github.com/quicwg/base-drafts/compare/b9cb2b3f0a1d...66cc63c5c69f


From nobody Sun May 17 16:56:44 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 2219B3A08EF for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:56:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 F3zhXFdSELvP for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:56:33 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9B4893A0907 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:56:33 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 9E44BE012C for <quic-issues@ietf.org>; Sun, 17 May 2020 16:56:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759792; bh=Nqtcv1g96aPJyEgOI+o6dz04lDddtk8U+Z9rAR6tupQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=F1bjiUaw+vZXcbY1VVoFEt/EiVXBJgwcqbm/2nRSvXPmE5JL0K7pLPUR8hIcZwcFh X9zzZFYD5mSMIbfmez9IQoRaJHnuba013AK2mWqhr7RcWLC//1/zxJVRuDXIZXMnQO gOkVqP3xXOYOtddW8mUgGFPyV6/tSYVAjs80P7Z4=
Date: Sun, 17 May 2020 16:56:32 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ36TFTSTDANDWZKAN4ZWYDBEVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/review/413212398@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1cf308d9dc_3bd43f87be2cd9602585e7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hWimGEMSpwmksltDtIQUs5fDVmU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 17 May 2020 23:56:35 -0000

----==_mimepart_5ec1cf308d9dc_3bd43f87be2cd9602585e7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  Due to network changes outside the control of its
+peer, an endpoint might receive packets from a new source address with the same
+destination connection ID, in which case it MAY continue to use the current
+connection ID with the new remote address while still sending from the same
+local address.

I understand the spirit of the change, which is to make the primary requirement properly conditional, but it does so by burying that requirement.  I'm comfortable with the original.  Happy to iterate again later.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#discussion_r426319693
----==_mimepart_5ec1cf308d9dc_3bd43f87be2cd9602585e7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r426319693">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +Similarly, an endpoint MUST NOT reuse a connection ID when sending to more than
+one destination address.  Due to network changes outside the control of its
+peer, an endpoint might receive packets from a new source address with the same
+destination connection ID, in which case it MAY continue to use the current
+connection ID with the new remote address while still sending from the same
+local address.
</pre>
<p>I understand the spirit of the change, which is to make the primary requirement properly conditional, but it does so by burying that requirement.  I'm comfortable with the original.  Happy to iterate again later.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#discussion_r426319693">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK54Q6T3PCSUI5C4XQLRSB2TBANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZR5VMDIJP4T4JHWYTRSB2TBA5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCQR53Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r426319693",
"url": "https://github.com/quicwg/base-drafts/pull/3589#discussion_r426319693",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1cf308d9dc_3bd43f87be2cd9602585e7--


From nobody Sun May 17 16:56:47 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 B6AB43A08EF for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:56:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 eq3r2VXSagBE for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:56:39 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9F7BF3A08EC for <quic-issues@ietf.org>; Sun, 17 May 2020 16:56:39 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 616DD660085 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:56:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759798; bh=0Hwu3m2YuA062qBxZ/cYiW3om369JHUfzk02zxNHw9E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jp1yFSF4AteJ/BqziAvUnUkbNXQnomjbOAE+FRK5ltqUW8A5l7tpeftOCG/YU/fH8 gWVxn6g5cN+iKXu4bj3iKF9PYqovHVqmaAkNfFTHcR2rDw0hc352Br2zeVPqes46Tq 7kATLR5E8RtGXMiMoMVFsAbLxASsql5inepEc8is=
Date: Sun, 17 May 2020 16:56:38 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6WMDLJCDOFMH4LPZN4ZWYDNEVBNHHCCZ7YJA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3426/issue_event/3345068266@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3426@github.com>
References: <quicwg/base-drafts/pull/3426@github.com>
Subject: Re: [quicwg/base-drafts] Clarify zero-length CIDs and active_connection_id_limit TP (#3426)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1cf3652366_8ac3fad140cd964349048"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/peBkuzBdgrmHBNt0e6QHf1-z_zc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 17 May 2020 23:56:41 -0000

----==_mimepart_5ec1cf3652366_8ac3fad140cd964349048
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3426 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3426#event-3345068266
----==_mimepart_5ec1cf3652366_8ac3fad140cd964349048
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="560461896" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3426" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3426/hovercard" href="https://github.com/quicwg/base-drafts/pull/3426">#3426</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3426#event-3345068266">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK667JSKN65THQIFIJTRSB2TNANCNFSM4KQNOYIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZS5HL67YG45E5EB6LRSB2TNA5CNFSM4KQNOYIKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5Q3B2Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3426#event-3345068266",
"url": "https://github.com/quicwg/base-drafts/pull/3426#event-3345068266",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1cf3652366_8ac3fad140cd964349048--


From nobody Sun May 17 16:56:49 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 426D73A08EC for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:56:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.498
X-Spam-Level: 
X-Spam-Status: No, score=-0.498 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 9Ovvm2-omaCD for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:56:40 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E80403A08ED for <quic-issues@ietf.org>; Sun, 17 May 2020 16:56:39 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 476601204F4 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:56:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759798; bh=DIibplTFmnqAR2SQFeVPIEClWUGjGxOHHOArmutuvmo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TxjCXzK5QSP3zuXzTjXiOYRKvGfOz1FOaigz+nB4t/la46yenoAhg4XqPmdq4lUfY J0IWd5JnrOAqQnCqjIBMFdbvXn2U09VDHenQpTuJuaDKYhV2LV9neYpzNbiGDxEIF/ CeRrFi8w9XtANbXCPHopRHjs5I2Hn6BSxruDRcUQ=
Date: Sun, 17 May 2020 16:56:38 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2CFLNQJRPX7RS2KM54ZWYDLEVBNHHCCZ7ZBM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3427/issue_event/3345068270@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3427@github.com>
References: <quicwg/base-drafts/issues/3427@github.com>
Subject: Re: [quicwg/base-drafts] active_connection_id_limit description is unclear about whose connection ID might be zero length (#3427)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1cf3617ff_11fb3ff39cccd95c209595"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hevyetYHqG-Q7ajfE_H3OnTOQlA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 17 May 2020 23:56:41 -0000

----==_mimepart_5ec1cf3617ff_11fb3ff39cccd95c209595
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3427 via #3426.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3427#event-3345068270
----==_mimepart_5ec1cf3617ff_11fb3ff39cccd95c209595
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="560462091" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3427" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3427/hovercard" href="https://github.com/quicwg/base-drafts/issues/3427">#3427</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="560461896" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3426" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3426/hovercard" href="https://github.com/quicwg/base-drafts/pull/3426">#3426</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3427#event-3345068270">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2WXC6C6ULB2JEDZ2DRSB2TNANCNFSM4KQNO54Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ52G45PI42LV5YR43RSB2TNA5CNFSM4KQNO542YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5Q3B3Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3427#event-3345068270",
"url": "https://github.com/quicwg/base-drafts/issues/3427#event-3345068270",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1cf3617ff_11fb3ff39cccd95c209595--


From nobody Sun May 17 16:57:07 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 E06D53A08F0 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 xhg3vJSrVuUS for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:04 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5A1183A08EF for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:04 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 4A6CD6A0032 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759823; bh=7BHvt7AdEway0rLoLmbxKoE6cm1AyKAmcH+sAkv4H0E=; h=Date:From:To:Subject:From; b=BgwKPETXYUdyKRXMi1TtWqUSYWbk4BEhsr4DCCZukLpmaA3fJynCUAnVsdoPEH82C MNm6T9T85WLu9AiCCVIPrQ8/qSgIuZfWi3ecynTsYBYZjdJC4ck82Mg90xTswZRpHH IVq+GsoqmqVTNQ89Wu6EOCk1DAIlFA2Z1ocIylJ4=
Date: Sun, 17 May 2020 16:57:03 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/66cc63-a3b624@github.com>
Subject: [quicwg/base-drafts] 8162c9: Clarify existing requirements on CID use to consol...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AuBQaDC5ep8C4ndHOXtOqaO-oeY>
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: Sun, 17 May 2020 23:57:06 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8162c9ae05ca0f7189f20d8a0846bf71b9b3f2e6
      https://github.com/quicwg/base-drafts/commit/8162c9ae05ca0f7189f20d8a0846bf71b9b3f2e6
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Clarify existing requirements on CID use to consolidate expected behavior


  Commit: 53c887eb54dd1f57e2ee126f7c7f3f1b1ad19f12
      https://github.com/quicwg/base-drafts/commit/53c887eb54dd1f57e2ee126f7c7f3f1b1ad19f12
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Make {{issue-cid}} and {{retire-cid}} consistent


  Commit: 0e1664e9680b22789418c61579c2ce7d1dee0336
      https://github.com/quicwg/base-drafts/commit/0e1664e9680b22789418c61579c2ce7d1dee0336
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Clarify handshake confirmed for preferred address, note that any CID is valid for use as mentioned later


  Commit: 3cf8eaa6b912fd715691bbdb660967554c01d61a
      https://github.com/quicwg/base-drafts/commit/3cf8eaa6b912fd715691bbdb660967554c01d61a
  Author: Eric Kinnear <32474881+erickinnear@users.noreply.github.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Apply suggestions from code review

Co-Authored-By: Martin Thomson <mt@lowentropy.net>
Co-Authored-By: Mike Bishop <mbishop@evequefou.be>


  Commit: 5509f1d2cd36a7c3dd780cf3722338b2c0348680
      https://github.com/quicwg/base-drafts/commit/5509f1d2cd36a7c3dd780cf3722338b2c0348680
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2020-04-20 (Mon, 20 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Review comments


  Commit: a6a266c9272ffd8db8ebd12a58e69e9d9ba9411e
      https://github.com/quicwg/base-drafts/commit/a6a266c9272ffd8db8ebd12a58e69e9d9ba9411e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-22 (Wed, 22 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-qpack.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge branch 'master' into ek/preferred_address


  Commit: f7a9c3b3bb78485bc65476b894306899f70d8205
      https://github.com/quicwg/base-drafts/commit/f7a9c3b3bb78485bc65476b894306899f70d8205
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Refer to addresses instead of network paths
Reword exception that allows continuing to use the same CID when the peer does not change


  Commit: a7101944f1dec2dd4d4c890e56f3029e1648545d
      https://github.com/quicwg/base-drafts/commit/a7101944f1dec2dd4d4c890e56f3029e1648545d
  Author: Eric Kinnear <32474881+erickinnear@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Remove duplicate MUST

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: ca0decd66b88576741494c0fc077d2b78424e279
      https://github.com/quicwg/base-drafts/commit/ca0decd66b88576741494c0fc077d2b78424e279
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M .lint.py
    M draft-ietf-quic-http.md
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-qpack.md
    M draft-ietf-quic-recovery.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md
    R workflow.xml

  Log Message:
  -----------
  Merge branch 'master' into ek/preferred_address


  Commit: 77b06fcadb8d708a9fb932930ff7742a640b7e0a
      https://github.com/quicwg/base-drafts/commit/77b06fcadb8d708a9fb932930ff7742a640b7e0a
  Author: Eric Kinnear <ekinnear@apple.com>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update whitespace for consistency


  Commit: a3b6242bdda05692e537049b2262cd63bfec6549
      https://github.com/quicwg/base-drafts/commit/a3b6242bdda05692e537049b2262cd63bfec6549
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3589 from erickinnear/ek/preferred_address

Clarify text around preferred address


Compare: https://github.com/quicwg/base-drafts/compare/66cc63c5c69f...a3b6242bdda0


From nobody Sun May 17 16:57:16 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 049663A08F6 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 uxpnOi__4s0U for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:13 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 07B6C3A08F0 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:13 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 55717E0435 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759832; bh=np+RUF6DKQKbe030ZU6BNwcq9IW6lJfrWwU9aRkVsqQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mneoNC6zGnBXHMjOwYJxjFY9+eIWcP9zvMcYGfomYxC/90zwde8icEPm3VPr61SI7 uEydAm19S4tH8N/MwBxPYFTRu9EoqylJbOZjbsZFOo8Q8xfquRXbsjEfHYLhuj/Wpl tryDz0bItGB1z93ReR2tpnstnkJWFkkJPdANLVm4=
Date: Sun, 17 May 2020 16:57:12 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6E42KGFYCA3CZCRA54ZWYFREVBNHHCH4LVNY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3589/issue_event/3345068654@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3589@github.com>
References: <quicwg/base-drafts/pull/3589@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text around preferred address (#3589)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1cf58447ee_721c3f9f35acd960285715"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7WPNarq_4idqPmCtLtiIZ1a7dbQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 17 May 2020 23:57:14 -0000

----==_mimepart_5ec1cf58447ee_721c3f9f35acd960285715
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3589 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3589#event-3345068654
----==_mimepart_5ec1cf58447ee_721c3f9f35acd960285715
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="603026798" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3589" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3589/hovercard" href="https://github.com/quicwg/base-drafts/pull/3589">#3589</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3589#event-3345068654">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYILAHPRNRIFDG75F3RSB2VRANCNFSM4MMG45IQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3STGDNYN43MSJBRT3RSB2VRA5CNFSM4MMG45I2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5Q3E3Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3589#event-3345068654",
"url": "https://github.com/quicwg/base-drafts/pull/3589#event-3345068654",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1cf58447ee_721c3f9f35acd960285715--


From nobody Sun May 17 16:57:20 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 8B96D3A08F0 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 1t63mlhRho4K for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:13 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5D42C3A08EE for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:13 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 8ABA66E032A for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759832; bh=YKIj14oc7ygVigQR1wrogguHdgxqxfi4tYA0F051uKk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uua5iLICv6g+96P1vPB0T6PZSjTLhNx0X3tzVZKTH5SY30B99f0IpZNZjoPeHNrjQ 0lZtgt4nHEdS29XbtnbzxqLvRG7WD85MIV5Vy44boPM+aw57/EJINh5jvZom3IPGdv 4ay8WQxBN+9oGO2D79TL0iFrCJ5L3bcvRrkHP6LE=
Date: Sun, 17 May 2020 16:57:12 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYYD2LL4GYGAJUARFN4ZWYFREVBNHHCBWF2DE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3353/issue_event/3345068658@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3353@github.com>
References: <quicwg/base-drafts/issues/3353@github.com>
Subject: Re: [quicwg/base-drafts] Description of the use of Preferred Address is unclear (#3353)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1cf587ac5a_6bdb3fe7746cd9642599f4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jWSzCrrQ93phKCXdkQKeqD7KgJs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 17 May 2020 23:57:15 -0000

----==_mimepart_5ec1cf587ac5a_6bdb3fe7746cd9642599f4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3353 via #3589.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3353#event-3345068658
----==_mimepart_5ec1cf587ac5a_6bdb3fe7746cd9642599f4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="551074329" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3353" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3353/hovercard" href="https://github.com/quicwg/base-drafts/issues/3353">#3353</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="603026798" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3589" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3589/hovercard" href="https://github.com/quicwg/base-drafts/pull/3589">#3589</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3353#event-3345068658">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK256AOF3VPYBONYHDLRSB2VRANCNFSM4KH3ELRA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4K2TNFCJYYATM2OKTRSB2VRA5CNFSM4KH3ELRKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5Q3E4Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3353#event-3345068658",
"url": "https://github.com/quicwg/base-drafts/issues/3353#event-3345068658",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1cf587ac5a_6bdb3fe7746cd9642599f4--


From nobody Sun May 17 16:57:23 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 D51023A08EE for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 V4TFob-FLpqc for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:13 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8731A3A08F3 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:13 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 9B5EE8C045A for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759832; bh=Xxa0l1kbAk+ZMs8u6+cL3W/ELZIdtt+/TH4Y21YTLUY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jlAXys8iuJhOEqOG/x9vtXHyaUIQgmrHpQjuDFnvdJr9TV1byHRjTHRCwEIRSAJdw nD6tm/gBKWfKzHmeeAu/C+sqriYBH1Mr98mLUIAzmSb+xcpdqaZ2P0GeAtNXT3o/D2 smmYGfjtBmQsHzunImdub7eggTCS8/FD82YylFg0=
Date: Sun, 17 May 2020 16:57:12 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK774UZHKHBCI2COLG54ZWYFREVBNHHCBWRIJQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3354/issue_event/3345068660@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3354@github.com>
References: <quicwg/base-drafts/pull/3354@github.com>
Subject: Re: [quicwg/base-drafts] Better describe the use of Preferred Address (#3354)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1cf588a80d_3b733fe7d6acd96c2063a5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/P9zBP2EAYrTiPQAZ3_D3mha_4vo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 17 May 2020 23:57:15 -0000

----==_mimepart_5ec1cf588a80d_3b733fe7d6acd96c2063a5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3354 via #3589.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3354#event-3345068660
----==_mimepart_5ec1cf588a80d_3b733fe7d6acd96c2063a5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="551168076" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3354" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3354/hovercard" href="https://github.com/quicwg/base-drafts/pull/3354">#3354</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="603026798" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3589" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3589/hovercard" href="https://github.com/quicwg/base-drafts/pull/3589">#3589</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3354#event-3345068660">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5Z36NR5YIWYUDL723RSB2VRANCNFSM4KIBEVSQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZY2O7THVVABJOWWJDRSB2VRA5CNFSM4KIBEVS2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5Q3E5A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3354#event-3345068660",
"url": "https://github.com/quicwg/base-drafts/pull/3354#event-3345068660",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1cf588a80d_3b733fe7d6acd96c2063a5--


From nobody Sun May 17 16:57:38 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 9E3883A08EE for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.2
X-Spam-Level: 
X-Spam-Status: No, score=-0.2 tagged_above=-999 required=5 tests=[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 E888B0KymqUi for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:35 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EB3CF3A08F0 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:34 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 4E99E281AA4 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759854; bh=D3hV8aZH8meGbXVOx6pmb8gTRP99V/+xvcWvq5KmbEA=; h=Date:From:To:Subject:From; b=lk8+PhLENGKC3aqVltKHLR1Z6SV51zy0EzW/40tXrWVoVJU5hzypTWnoH0lvDZie4 JZPoaa2fPGVBkVJviWRlexKKynm0IgVWa3DOeW3OksUZAWYLt6ek4gQC1LqDhDqlu4 rSqu65qfiYqjznnpnIzEAQAgzzYIRFPI04S/BGzY=
Date: Sun, 17 May 2020 16:57:34 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/a3b624-13a75f@github.com>
Subject: [quicwg/base-drafts] 937472: Limit RCID state
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/n9-URdbk7co6MGFE9Lt9Z383Q5w>
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: Sun, 17 May 2020 23:57:37 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9374722d4f723e5cd1889ade44e10ab603bb710b
      https://github.com/quicwg/base-drafts/commit/9374722d4f723e5cd1889ade44e10ab603bb710b
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-03-26 (Thu, 26 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Limit RCID state


  Commit: efd55324649513ffc2cd7299ab3a19e094f81f17
      https://github.com/quicwg/base-drafts/commit/efd55324649513ffc2cd7299ab3a19e094f81f17
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-27 (Fri, 27 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: 9e1d5db348262fab522e0c794698031157aa67d7
      https://github.com/quicwg/base-drafts/commit/9e1d5db348262fab522e0c794698031157aa67d7
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-27 (Fri, 27 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: b98bb9ea461c2099c2c0672e0356fc06b002c826
      https://github.com/quicwg/base-drafts/commit/b98bb9ea461c2099c2c0672e0356fc06b002c826
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-03-27 (Fri, 27 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Ian's comments plus some additional text


  Commit: a62abddacec3745841f89e9b40a76c64811edac6
      https://github.com/quicwg/base-drafts/commit/a62abddacec3745841f89e9b40a76c64811edac6
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-03-27 (Fri, 27 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Whoops, missed one


  Commit: 66c76207669906a0937130fb5dda426e928e3462
      https://github.com/quicwg/base-drafts/commit/66c76207669906a0937130fb5dda426e928e3462
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: c4d24944d60ecfb5fbc4873ff3d7c9438ab1f536
      https://github.com/quicwg/base-drafts/commit/c4d24944d60ecfb5fbc4873ff3d7c9438ab1f536
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: f0b64a1301e329349ef1ba5fe4507d2288170782
      https://github.com/quicwg/base-drafts/commit/f0b64a1301e329349ef1ba5fe4507d2288170782
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: 9ec4b0c1d4086cc17f849563ca55bf2932ca13f9
      https://github.com/quicwg/base-drafts/commit/9ec4b0c1d4086cc17f849563ca55bf2932ca13f9
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Resolved all reviews I know how to address


  Commit: e10134ef4d335a0640286d1437afa16418655df3
      https://github.com/quicwg/base-drafts/commit/e10134ef4d335a0640286d1437afa16418655df3
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 4e3c1263433231a9e98365ec5fb75b541ef9de5e
      https://github.com/quicwg/base-drafts/commit/4e3c1263433231a9e98365ec5fb75b541ef9de5e
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 46f1894b7ec811fd56f54d49a98d6cd32a3aec0e
      https://github.com/quicwg/base-drafts/commit/46f1894b7ec811fd56f54d49a98d6cd32a3aec0e
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  text alignment


  Commit: 33548fd46adf3885542bbbe87ee2498bd2b92d75
      https://github.com/quicwg/base-drafts/commit/33548fd46adf3885542bbbe87ee2498bd2b92d75
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-03-30 (Mon, 30 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  MT's suggestions


  Commit: 6332cedcf7026fdcc1e0c36bca395d718344bae1
      https://github.com/quicwg/base-drafts/commit/6332cedcf7026fdcc1e0c36bca395d718344bae1
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-04-01 (Wed, 01 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  s/outstanding/in flight


  Commit: beca69c7c49847bc0d473c681139bfaa9e882f57
      https://github.com/quicwg/base-drafts/commit/beca69c7c49847bc0d473c681139bfaa9e882f57
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-04-01 (Wed, 01 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  update the rest of the text


  Commit: 495a97423b8b0bb6411f14a533408a6cfbc7fb29
      https://github.com/quicwg/base-drafts/commit/495a97423b8b0bb6411f14a533408a6cfbc7fb29
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-04-07 (Tue, 07 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: Martin Thomson <mt@lowentropy.net>


  Commit: 54e2a1207f926fc32ce23769368a06bbabfd0de1
      https://github.com/quicwg/base-drafts/commit/54e2a1207f926fc32ce23769368a06bbabfd0de1
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-04-08 (Wed, 08 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: 2dea527f716acf2f8a424dd300bd395839b6991d
      https://github.com/quicwg/base-drafts/commit/2dea527f716acf2f8a424dd300bd395839b6991d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-08 (Wed, 08 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md


  Commit: 4393b6dfc35064cc79493021ac6b80d460ad175f
      https://github.com/quicwg/base-drafts/commit/4393b6dfc35064cc79493021ac6b80d460ad175f
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-04-08 (Wed, 08 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md


  Commit: f436727acd7dcd49d613cac8ec032a9934c3f6ef
      https://github.com/quicwg/base-drafts/commit/f436727acd7dcd49d613cac8ec032a9934c3f6ef
  Author: Martin Duke <m.duke@f5.com>
  Date:   2020-04-08 (Wed, 08 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  fixed line endings


  Commit: 017c103440f89092773ab11edd6529972448f2bf
      https://github.com/quicwg/base-drafts/commit/017c103440f89092773ab11edd6529972448f2bf
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-authored-by: ekr <ekr@rtfm.com>


  Commit: 5b9205c5c06f3b3a06dde340d9418d81f9e64a68
      https://github.com/quicwg/base-drafts/commit/5b9205c5c06f3b3a06dde340d9418d81f9e64a68
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-authored-by: Eric Kinnear <32474881+erickinnear@users.noreply.github.com>


  Commit: 51e52b27a79adc4f85472fcc30cd5de04b28b356
      https://github.com/quicwg/base-drafts/commit/51e52b27a79adc4f85472fcc30cd5de04b28b356
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  MT's suggestion for ekr


  Commit: ff574d568b039e4b4e3f691a0d88e2d2ad18a3e9
      https://github.com/quicwg/base-drafts/commit/ff574d568b039e4b4e3f691a0d88e2d2ad18a3e9
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  typos/whitespace


  Commit: 442f5774a16899063d2f3fbae6c46802a6ec86b9
      https://github.com/quicwg/base-drafts/commit/442f5774a16899063d2f3fbae6c46802a6ec86b9
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-authored-by: ekr <ekr@rtfm.com>


  Commit: 47424338c35fc15cc7e022f8077887b45a7ade6c
      https://github.com/quicwg/base-drafts/commit/47424338c35fc15cc7e022f8077887b45a7ade6c
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  ekr's suggestions


  Commit: 13a75fbf507643a6a415680f8fe00dfc154b3af9
      https://github.com/quicwg/base-drafts/commit/13a75fbf507643a6a415680f8fe00dfc154b3af9
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3547 from martinduke/bounded-rcid

Limit RCID state


Compare: https://github.com/quicwg/base-drafts/compare/a3b6242bdda0...13a75fbf5076


From nobody Sun May 17 16:57:46 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 92F943A08EE for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 G7xOJk7MFRKo for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:43 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 542B93A08F0 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:43 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id AAA33C60260 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759862; bh=wKaBr4Wk1mre5kdiXydXUIMeqfkGrGWf1sXIYMifBP0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pU4Ml5RGdiEGr0uWoAIzu7X6yBAJAo/HyJiMCKSv33vj2Ffvk9EkNcW9v1m7AkumA Mpl2BNnTJnUcglFeX0WBcLsP/Z9nFemHpN3ehmgHs9QsVNtyQsBjMaaLYZKsJH2Hgi di6fJPpOJkc0BZU2k/wMMpteorXJAPNkquwRlFj8=
Date: Sun, 17 May 2020 16:57:42 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYDR4UKLI3ZKYQTVDV4ZWYHNEVBNHHCGKQEEY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3553/issue_event/3345068993@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3553@github.com>
References: <quicwg/base-drafts/pull/3553@github.com>
Subject: Re: [quicwg/base-drafts] Cumulative RCID frame (with gaps) (#3553)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1cf769c345_46313febf80cd964237629"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3bv_ZH_YzzivGqAQ7mcJ3zDT5vo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 17 May 2020 23:57:45 -0000

----==_mimepart_5ec1cf769c345_46313febf80cd964237629
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3553 via #3547.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3553#event-3345068993
----==_mimepart_5ec1cf769c345_46313febf80cd964237629
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="589956134" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3553" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3553/hovercard" href="https://github.com/quicwg/base-drafts/pull/3553">#3553</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="588711941" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3547" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3547/hovercard" href="https://github.com/quicwg/base-drafts/pull/3547">#3547</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3553#event-3345068993">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3SFOD4FYVN63TJ2LLRSB2XNANCNFSM4LWHOZXQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ZLRUCDLLJAGPXH4TRSB2XNA5CNFSM4LWHOZX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5Q3HQI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3553#event-3345068993",
"url": "https://github.com/quicwg/base-drafts/pull/3553#event-3345068993",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1cf769c345_46313febf80cd964237629--


From nobody Sun May 17 16:57:50 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 CAD983A08F0 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 qsHw2urmACVp for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:43 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 976C13A08F3 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:43 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id DD15DC602D0 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759862; bh=9UKU58jeKN7XOYFwI3cn1f7xll4OTzHd1GZu1CAxPZc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=L4JKMPKZ9PhCG8qNRJw59HPvtPgAHAjaF9e6gPgFSK2GEZ1X22yA2AZHvfL1wGra+ 3XbYB1h3G2g8cs66NAjEkUaz53O2EXvfmxMDuu8kjFUOE3RBxCFYIe25bc+X0QARmA 9dc53tIZ5cSgmhHAFVj0N4MBj/nrFUgCEhe6Z66E=
Date: Sun, 17 May 2020 16:57:42 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3P7LXF5E6UFCKFRJF4ZWYHNEVBNHHCGJLIMM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3548/issue_event/3345068986@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3548@github.com>
References: <quicwg/base-drafts/pull/3548@github.com>
Subject: Re: [quicwg/base-drafts] Confirm Retire Prior To via Acknowledgement (#3548)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1cf76ce4d8_463d3febf80cd964202021"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VQX5bIiEteippZkJVuoD2J90_Wc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 17 May 2020 23:57:45 -0000

----==_mimepart_5ec1cf76ce4d8_463d3febf80cd964202021
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3548 via #3547.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3548#event-3345068986
----==_mimepart_5ec1cf76ce4d8_463d3febf80cd964202021
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="589654115" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3548" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3548/hovercard" href="https://github.com/quicwg/base-drafts/pull/3548">#3548</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="588711941" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3547" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3547/hovercard" href="https://github.com/quicwg/base-drafts/pull/3547">#3547</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3548#event-3345068986">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYRJNAWZQIE6K37XRLRSB2XNANCNFSM4LVWPKRQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYOQMMIIJV2CXVFYH3RSB2XNA5CNFSM4LVWPKR2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5Q3HOQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3548#event-3345068986",
"url": "https://github.com/quicwg/base-drafts/pull/3548#event-3345068986",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1cf76ce4d8_463d3febf80cd964202021--


From nobody Sun May 17 16:57:52 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 E8F453A08F3 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 T57HDQOnVGS9 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:43 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D67103A08FC for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:43 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 2CB6F8C03C8 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759863; bh=dLXiE/B3+eYlpwsro0H7sVt0TeNW2ylcL+FvFzh9h44=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YNqFAPbCGKqDm91P9HxLiqxfzZMEg9dpM5ZtUZBInQ6YupImBPRRaguFhTiiakJWX xp2QBbfUzS+jFHo6L83B5L5Gn4ILf6k8l5FK+fF7G1PJ9i385yF4oINwMzhC1eJqo9 BJGQ86KGn9MXONV5TsGjdLJ8LqzLBfO+oY6SreUU=
Date: Sun, 17 May 2020 16:57:43 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7KDJCXKZVE7A7FIBF4ZWYHPEVBNHHCGFYIAU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3547/issue_event/3345068977@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3547@github.com>
References: <quicwg/base-drafts/pull/3547@github.com>
Subject: Re: [quicwg/base-drafts] Limit RCID state (#3547)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1cf771c4fe_21f43fa66a6cd964232225"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KZXTtpYPG3icbP695DHu19W4VN4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 17 May 2020 23:57:45 -0000

----==_mimepart_5ec1cf771c4fe_21f43fa66a6cd964232225
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3547 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3547#event-3345068977
----==_mimepart_5ec1cf771c4fe_21f43fa66a6cd964232225
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="588711941" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3547" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3547/hovercard" href="https://github.com/quicwg/base-drafts/pull/3547">#3547</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3547#event-3345068977">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2EZWAOXQQDWKUQNUDRSB2XPANCNFSM4LUQW5DQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYHM7VPNVR62RO2AZDRSB2XPA5CNFSM4LUQW5D2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5Q3HMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3547#event-3345068977",
"url": "https://github.com/quicwg/base-drafts/pull/3547#event-3345068977",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1cf771c4fe_21f43fa66a6cd964232225--


From nobody Sun May 17 16:57:57 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 5A78E3A08EE for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 k0TY9XmIBIIP for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:43 -0700 (PDT)
Received: from out-13.smtp.github.com (out-13.smtp.github.com [192.30.254.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9FCB23A08F4 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:43 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id ED365260195 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759863; bh=bxuc+JsZkBmj8J9SAfoPE3mLUHSqgX+3Gu0QfIrg9O0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pqKnnNgplL0QxGMia/R985pI71n4+3Gxplmz11bbftMeuGWO8Wwj5TQQjm4yWrRtO 1+bid1mzNBS3ogxLmf8uBG/eEqNWdrzxgwddUAgsHMZaoYh57k9pNQ+5aqUeRiSQF8 EIdKEmI7D2XnPEdg8WbDWldGiFwmsHXqaLGXw8Zs=
Date: Sun, 17 May 2020 16:57:42 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6E4MTKTL6QSWXATCN4ZWYHNEVBNHHCFAMG5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3509/issue_event/3345068981@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3509@github.com>
References: <quicwg/base-drafts/issues/3509@github.com>
Subject: Re: [quicwg/base-drafts] Required state for retaining unacked RETIRE_CONNECTION_ID frames is unbound (#3509)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1cf76a8181_5d7a3fb142ccd96c289059"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1j4si0i6KerFCA4LoL3bV0RQh4Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 17 May 2020 23:57:45 -0000

----==_mimepart_5ec1cf76a8181_5d7a3fb142ccd96c289059
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3509 via #3547.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3509#event-3345068981
----==_mimepart_5ec1cf76a8181_5d7a3fb142ccd96c289059
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="578914025" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3509" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3509/hovercard" href="https://github.com/quicwg/base-drafts/issues/3509">#3509</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="588711941" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3547" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3547/hovercard" href="https://github.com/quicwg/base-drafts/pull/3547">#3547</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3509#event-3345068981">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5HXCSGT2QI6RXCZ53RSB2XNANCNFSM4LFJ2P4A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6CVOKRT4VN5CLWGR3RSB2XNA5CNFSM4LFJ2P4KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5Q3HNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3509#event-3345068981",
"url": "https://github.com/quicwg/base-drafts/issues/3509#event-3345068981",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1cf76a8181_5d7a3fb142ccd96c289059--


From nobody Sun May 17 16:58:00 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 30EDC3A08F3 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 ucyEbhgla4yt for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:47 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C1BB63A091E for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:47 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 1F8D61C0BE2 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759867; bh=hRTGwGqCdH3UssYOwtOPkra3UgARu+emWIERI3R1/9o=; h=Date:From:To:Subject:From; b=ce1DGUw6OS49Y75lEcs0pCxR0nvpEZATjE4J7RNv45vx7S26Jngfo9KRWB8Ml+t3B ucp6gbQWFd8ezJsCYrIfiiKvMr/vVvRBjCiJIeUfeeSX7v7A5gjnQHudFlDag8BKgN vofEArB81I/AerARikXzh0Pecb0bbdltvjFOhmkk=
Date: Sun, 17 May 2020 16:57:47 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/13a75f-9b80e9@github.com>
Subject: [quicwg/base-drafts] b61358: Exception for Retire Prior To
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0btWXUJHtAD9TO3iuv0Jo48UvDA>
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: Sun, 17 May 2020 23:57:49 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: b61358a381f7f6ce19f2432b500453aefa1ae257
      https://github.com/quicwg/base-drafts/commit/b61358a381f7f6ce19f2432b500453aefa1ae257
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Exception for Retire Prior To

The rules for the active connection ID limit were such that the brief
bump that NEW_CONNECTION_ID + Retire Prior To could add was not
permitted.  Strictly speaking, if you requested retirement, the
connection IDs that you requested be retired are still active until you
receive a RETIRE_CONNECTION_ID frame.  That means that you were
technically violating this MUST in the spec.  Adding an exception for
this case was the best way I could see to fix this.

The other was to change the definition of "active connection ID".  I
tried that and, while it was a smaller change, it made the definition
less crisp.  This approach seems best.


  Commit: 8c7e6033f60b5064780338971de611723f3c1c09
      https://github.com/quicwg/base-drafts/commit/8c7e6033f60b5064780338971de611723f3c1c09
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Attempt at rewording the NEW_CONNECITON_ID/Retire Prior To validation rule


  Commit: 67dc30dd88c4ceb82fc12343f122e91c17d8b61f
      https://github.com/quicwg/base-drafts/commit/67dc30dd88c4ceb82fc12343f122e91c17d8b61f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Attempt at making smaller sentences


  Commit: 9b80e966caf6178e75b880716348384656326cbe
      https://github.com/quicwg/base-drafts/commit/9b80e966caf6178e75b880716348384656326cbe
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3643 from quicwg/active-cid-limit-rpt

Exception for Retire Prior To


Compare: https://github.com/quicwg/base-drafts/compare/13a75fbf5076...9b80e966caf6


From nobody Sun May 17 16:58:04 2020
Return-Path: <bounces+848413-a050-quic-issues=ietf.org@sgmail.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 72A6C3A08F3 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.2
X-Spam-Level: 
X-Spam-Status: No, score=-0.2 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=0.001, UNPARSEABLE_RELAY=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 94PdNBIMCj2R for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:49 -0700 (PDT)
Received: from o4.sgmail.github.com (o4.sgmail.github.com [192.254.112.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AD8013A090C for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com;  h=from:to:subject:mime-version:content-type:content-transfer-encoding;  s=s20150108; bh=N5k02XraxvnVI3Lipdd3+AetE21CR205/xSNu3IpdpU=; b= OYZdw/D9mIwzzCf+Dyg0+GcfkqE5tAH1hTEwo+z/7j0lqUK86LuTx6r3k/Oa/171 and1XI3w4KDTum9mPhemKPtEMoI2gXa3dttXL9gqPOz/nnrU/F3iwUvQC1rP2NjC +DFqgvJBjM6JAsfZWBLtX61uiQyGVqWxuk7M5XT5daM=
Received: by filter0302p1iad2.sendgrid.net with SMTP id filter0302p1iad2-24806-5EC1CF7B-1B 2020-05-17 23:57:47.844393468 +0000 UTC m=+173992.086136319
Received: from out-28.smtp.github.com (unknown) by ismtpd0046p1mdw1.sendgrid.net (SG) with ESMTP id Bcow3-hZQe26Bm72Vq27fw for <quic-issues@ietf.org>; Sun, 17 May 2020 23:57:47.543 +0000 (UTC)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 4059F8C0026 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:47 -0700 (PDT)
Date: Sun, 17 May 2020 23:57:47 +0000 (UTC)
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/active-cid-limit-rpt/67dc30-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak0+/pzOJD8WoiQVxpmV/xHvZywQrP79WVpYcO zrE7AyiaZ8wBd8b22nOvVe/i/dbfAZQrkWhIBxJt+vS6xwRHzBmM/gaNoeWlKYgQdFYqJOCXVBofK6 5fcv/devxfQ7Rb5R16DUHcoJE/B9mRSYYhT4ekg/uW5MO++myr9mk5s4gXvKVkQWy53nJ0ZlbXqM3P E=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Wa7bK2fMM4HAUIN2dlTCDxdbNLY>
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: Sun, 17 May 2020 23:57:50 -0000

  Branch: refs/heads/active-cid-limit-rpt
  Home:   https://github.com/quicwg/base-drafts


From nobody Sun May 17 16:58:06 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 C8D063A08EE for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 wpADr7H_JP4J for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:49 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 89CFC3A08FB for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:49 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 60348A0189 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759868; bh=e9fom5fQw1XNqRhFXqhQJI02M/NMBbxoFyfe10wt0+A=; h=Date:From:To:Subject:From; b=xtKJRBHqxQIxB0krX66cwCIJ2OabVApUnFi/+k/1Ximfx66zADm3kIlr6FHl0MEcS qFnODYIL2mXgvZ8wkMo2q3oEFkw7zznlpQv0QIF9I6Y9L34YKDfoiSAXdt71kwILeQ Za6ZXMLhZk3aUr5gIoV1NzlYElnM3ji6+YWAPgKM=
Date: Sun, 17 May 2020 16:57:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/bb7b0d-d82917@github.com>
Subject: [quicwg/base-drafts] d82917: Script updating gh-pages from 66cc63c5. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8mae1HeFXht_6WopXlVIV7XT4qk>
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: Sun, 17 May 2020 23:57:51 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d8291745966473f5523484c3a52c1b390fe0a2e3
      https://github.com/quicwg/base-drafts/commit/d8291745966473f5523484c3a52c1b390fe0a2e3
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-17 (Sun, 17 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 66cc63c5. [ci skip]



From nobody Sun May 17 16:58:10 2020
Return-Path: <bounces+848413-a050-quic-issues=ietf.org@sgmail.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 638223A0923 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.152
X-Spam-Level: 
X-Spam-Status: No, score=-0.152 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, UNPARSEABLE_RELAY=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 cS6pYc_qcdjq for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:57:57 -0700 (PDT)
Received: from o4.sgmail.github.com (o4.sgmail.github.com [192.254.112.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 739B23A08F4 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=WnUQHFkYT+oWUiu2Vo0bLeeo2xxw0eVBsl03aQI55yA=; b= Tx6YPwIG6tOdoCO2V2l2DACKvIG9eOvthiKi1KDbXJjhZdv6KB8aHlE8EPfQCbLP DksJ5YZh3jyXDA6HLNT7c4+xGkL/qYO9iPG5zzdtG+a4f6kaMukWdzhJEDqZaBnd tgMfrW/iAUErmCDGrG4n/fFT63nqY5YVoCDVtLf5rI8=
Received: by filter0670p1iad2.sendgrid.net with SMTP id filter0670p1iad2-30993-5EC1CF84-1B 2020-05-17 23:57:56.632228586 +0000 UTC m=+173949.179883708
Received: from out-1.smtp.github.com (unknown) by ismtpd0012p1iad1.sendgrid.net (SG) with ESMTP id o7oTY4qXRBukFtFokw1FMg for <quic-issues@ietf.org>; Sun, 17 May 2020 23:57:56.524 +0000 (UTC)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 3F42DC60617 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:57:56 -0700 (PDT)
Date: Sun, 17 May 2020 23:57:56 +0000 (UTC)
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4RLSE44FI2UMTFVWN4ZWYIJEVBNHHCJO45K4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3643/issue_event/3345069184@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3643@github.com>
References: <quicwg/base-drafts/pull/3643@github.com>
Subject: Re: [quicwg/base-drafts] Exception for Retire Prior To (#3643)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1cf842f6a7_46483febf80cd9647167cc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak0feu+0DqbF0LT6eZU3hMDrTKqxmCfJRh5x4A izLEfPFEjcrywzbh/ADd5cRIYbwkR8+vynewoqbmU/to0Ha9wutdXCyMec3jyDAnttcnALFb/ZFl5R wgtwQQ5ZryBxVQB+0nKYAkECCS0SksG6FWdul0ydg8Ab+YLLm0z/6afru7zG2JsmvvekEa17VkSXoP o=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bEYBRPCn6zv72ZRdu2n0pWv9c6k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 17 May 2020 23:58:01 -0000

----==_mimepart_5ec1cf842f6a7_46483febf80cd9647167cc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3643 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3643#event-3345069184
----==_mimepart_5ec1cf842f6a7_46483febf80cd9647167cc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="616275287" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3643" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3643/hovercard" href="https://github.com/quicwg/base-drafts/pull/3643">#3643</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3643#event-3345069184">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4SNA36BRVUKTLUYHLRSB2YJANCNFSM4M6L6D2A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5RKKMZZXUAUTD52HTRSB2YJA5CNFSM4M6L6D2KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5Q3JAA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3643#event-3345069184",
"url": "https://github.com/quicwg/base-drafts/pull/3643#event-3345069184",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1cf842f6a7_46483febf80cd9647167cc--


From nobody Sun May 17 16:58:14 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 DE91A3A08EE for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:58:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 vzGZfTm6LVy8 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:58:02 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E30703A08F3 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:58:02 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 99D7F1210C3 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:58:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759882; bh=UBzYvDi6xghlIkDN0QZyF4qtIOasIqAO+t91JZuyyGA=; h=Date:From:To:Subject:From; b=Fkn58ED4S1YzhZIrzDEBFufHMIMVz2gp6OKF8RpcBmc16yLiojG03ZSPViJt8ZQm8 99ZAH2eAUAmq5OGfBTdKcb9abG2jR4SO2oobkgwWITJKRuS+ng1UQNsMCCMOMF5Kio PMYzRq5tuusLZcDYCErKXxe7pBxQ9OxgC/HKAvuE=
Date: Sun, 17 May 2020 16:58:02 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d82917-cb47b4@github.com>
Subject: [quicwg/base-drafts] cb47b4: Script updating archive at 2020-05-17T23:57:44Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/phy_DNFiN73EXrK_2NXQZZzGoc0>
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: Sun, 17 May 2020 23:58:04 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: cb47b413bb7181433e190a49a06d4a30a5bcb1c8
      https://github.com/quicwg/base-drafts/commit/cb47b413bb7181433e190a49a06d4a30a5bcb1c8
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-17 (Sun, 17 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-17T23:57:44Z. [ci skip]



From nobody Sun May 17 16:58:26 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 3A45B3A08F0 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:58:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 BEzo67j5KLue for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:58:24 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3C83A3A08EE for <quic-issues@ietf.org>; Sun, 17 May 2020 16:58:24 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 63CB5C603C5 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:58:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759903; bh=rWGj0Me8d1JrQ/FJxUl9VFMCbYzSrEasdKca3i8hAMU=; h=Date:From:To:Subject:From; b=KkbQIxBFzR5W5lHaecUw4NyPqDPd3972NjC73uxb/EhfrG+bawkkkaFbXQsUj4WOd 4M3aHA4IV/u6eVmkgsh/sDnju/JbM3l9SRfswHSZY4yfZxDmyrGxDfGEXvEOgIl2Xi XnkoLaKLWqsr3sbAaT+kZsv5jJFp60mTThMNXTz0=
Date: Sun, 17 May 2020 16:58:23 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/cb47b4-5c1268@github.com>
Subject: [quicwg/base-drafts] 5c1268: Script updating gh-pages from 13a75fbf. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7BygdjDPdIpbBssZN45YIF5W0SA>
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: Sun, 17 May 2020 23:58:25 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5c126800e9c9b108557e54e6f349eb5a16be9bf0
      https://github.com/quicwg/base-drafts/commit/5c126800e9c9b108557e54e6f349eb5a16be9bf0
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-17 (Sun, 17 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 13a75fbf. [ci skip]



From nobody Sun May 17 16:58:51 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 1827F3A08F4 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:58:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Ha97Nwkn3PQ9 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:58:49 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EC90C3A08F0 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:58:48 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 4C89BA0A0E for <quic-issues@ietf.org>; Sun, 17 May 2020 16:58:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759928; bh=cyUTo7peDVgjT0ewmbPeSUUYkQxysMHfWLLPZy3UvXg=; h=Date:From:To:Subject:From; b=0+vfVHRz8HYPQGytorAgpyFC6bnbleO4Tq4PsS1k5d/fWIw2GuU+sWerap4/E7kSf pyF7bFUJstjK78cuiwBcKIrZoYGFwma2ABB/ORlWohwmfsmYphjzn6Hsp1Ge1N4CvG 5fTQjq0/0JWimVlsmAEFCjox9l80a28vLSbTh/FY=
Date: Sun, 17 May 2020 16:58:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/5c1268-c4472e@github.com>
Subject: [quicwg/base-drafts] c4472e: Script updating gh-pages from 9b80e966. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/r_pjErl_Wh-mdiey47fEd25YqRk>
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: Sun, 17 May 2020 23:58:50 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c4472efe4830b5abf446d2e6fbaee53e55788177
      https://github.com/quicwg/base-drafts/commit/c4472efe4830b5abf446d2e6fbaee53e55788177
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-17 (Sun, 17 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 9b80e966. [ci skip]



From nobody Sun May 17 16:59:36 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 994393A08F8 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:59:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 S5k0JNlyo25P for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:59:34 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 176FE3A08FA for <quic-issues@ietf.org>; Sun, 17 May 2020 16:59:34 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 6AD41C60241 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:59:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759973; bh=8nhJY0LNqVqx78rBOOGo4nRQf/39Q6Ww8joY0o4SXRQ=; h=Date:From:To:Subject:From; b=mOh45/MyZR8Wegpxv4PJcJrsIGthb+bgKSMkvD+di2mrcrnam4NPRnopAguqozDQU AuyGrQk1y631nGwK10YVPoec+3j2OmCBTAMg83vBlykf7/kY7SiMH9AYY+LIYd7DpB 6l8PsBCg9rFBycX68gC3hZkg/FsbKx5T9DeFK5c8=
Date: Sun, 17 May 2020 16:59:33 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/819f4d-42a1dd@github.com>
Subject: [quicwg/base-drafts] 42a1dd: Some improvements from Ian
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZnrKgW1C2GMf1TQcn3VpNK6qIno>
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: Sun, 17 May 2020 23:59:36 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: 42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe
      https://github.com/quicwg/base-drafts/commit/42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Some improvements from Ian

Co-authored-by: ianswett <ianswett@users.noreply.github.com>



From nobody Sun May 17 17:00:17 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 316A73A08FC for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:59:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 4fpk1I3MZFKa for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 16:59:43 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 18E2D3A08FA for <quic-issues@ietf.org>; Sun, 17 May 2020 16:59:43 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 5A2588C1007 for <quic-issues@ietf.org>; Sun, 17 May 2020 16:59:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589759982; bh=t6NiLJk1LPGGLUCAfR3nQAESFGqN1pguMw2grSwhw4A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FC0nyIb4ZoBmyaDrP49/W6FvnKDqI2YhRArtxuFAhWYPU3naib5NfIV2AUY2zmDOU WB1+5URcB3zmVaSMJvJA7XxDyoDPH8T9Tyb9LPMQNm9m8DXzrkZ1viqkMnryBxrvIZ z96rRhh9FHAMplObEogQ+LWzVRcEKZLJ7MeTUk7U=
Date: Sun, 17 May 2020 16:59:42 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/push/5086997325@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1cfee4b4ec_36fc3fe43accd96420585b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/amiKTCZTXoiN2-ZcX1G2R5m0-8A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 17 May 2020 23:59:44 -0000

----==_mimepart_5ec1cfee4b4ec_36fc3fe43accd96420585b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe  Some improvements from Ian


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630/files/819f4d0d5710830a2e832acac8afa8e38c1439d6..42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe

----==_mimepart_5ec1cfee4b4ec_36fc3fe43accd96420585b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe">42a1dd8</a>  Some improvements from Ian</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3630/files/819f4d0d5710830a2e832acac8afa8e38c1439d6..42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6I3QLTKZPBWNAHHO3RSB265ANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3PBL5ZUDR7G5G2Y53RSB265A5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTGOBYGMYDOOKQOVZWQIZVGA4DMOJZG4ZTENI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630/files/819f4d0d5710830a2e832acac8afa8e38c1439d6..42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe",
"url": "https://github.com/quicwg/base-drafts/pull/3630/files/819f4d0d5710830a2e832acac8afa8e38c1439d6..42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec1cfee4b4ec_36fc3fe43accd96420585b--


From nobody Sun May 17 17:00:31 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 1B1993A0902 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:00:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 8L0u7yq3SXnl for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:00:24 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0AE653A08FC for <quic-issues@ietf.org>; Sun, 17 May 2020 17:00:24 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 60113A011E for <quic-issues@ietf.org>; Sun, 17 May 2020 17:00:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589760023; bh=T/c/+WTlEFqWkhrdcexXXQzJG+f+f5HgyWMqK7SeJ1E=; h=Date:From:To:Subject:From; b=mOD5b+jhF6Lnjo1azqYniyFVxqD1PdNAIia8Aw+oBa8KIhX2ZyR0IDETOLHjeXPFk brvSBKWnBbnrvLQKqXYQ+3cEPXD7b4HK2q181E9uAPtlUQ3c6pAPHJcTkbxG19eiHv jNcGY6SEbBCs7BWRQoOzM+FmVNMJXLbLhzlNHG/8=
Date: Sun, 17 May 2020 17:00:23 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c4472e-8ac426@github.com>
Subject: [quicwg/base-drafts] 8ac426: Script updating gh-pages from 42a1dd87. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SK7iJwBU2S2bL-NwrYt3W2JCCHQ>
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: Mon, 18 May 2020 00:00:25 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8ac4266f7fe0611b4f60418ea9f9d6974766e9c0
      https://github.com/quicwg/base-drafts/commit/8ac4266f7fe0611b4f60418ea9f9d6974766e9c0
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-http.html
    M pacing-dfn/draft-ietf-quic-http.txt
    M pacing-dfn/draft-ietf-quic-invariants.html
    M pacing-dfn/draft-ietf-quic-invariants.txt
    M pacing-dfn/draft-ietf-quic-qpack.html
    M pacing-dfn/draft-ietf-quic-qpack.txt
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt
    M pacing-dfn/draft-ietf-quic-tls.html
    M pacing-dfn/draft-ietf-quic-tls.txt
    M pacing-dfn/draft-ietf-quic-transport.html
    M pacing-dfn/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 42a1dd87. [ci skip]



From nobody Sun May 17 17:12:03 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 E244A3A0840 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:12:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.2
X-Spam-Level: 
X-Spam-Status: No, score=-1.2 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 epDofLg4NTiR for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:11:59 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9414B3A0916 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:11:59 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id E50F8E0365 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:11:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589760718; bh=JN/v6z7fwzCmc/Toij750DoGfy80Pi90m6lAoatLJYo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=klD6ebeBYGum0XY5NvZkiZxyqBMhz07NXrbWvadfmiF6L/z6nbZDmGopZczLsXAVB 2HesEmUk36aSiuQvXxgalWSgRxpOMs1LWGZRbiNEM7T/t1jRDKdHmjxOf+T8YdrQjr D41eqZppdOJH+Xz8GrdSk61vvXILkubmdVvL7NsY=
Date: Sun, 17 May 2020 17:11:58 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2BUPSKVOS3ZJNCNDN4ZWZ45EVBNHHCJTOADM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/review/413212951@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1d2ced4551_8433fad140cd9643378a3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SamEa33vShlgRLuzKBq2835yFdA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 00:12:01 -0000

----==_mimepart_5ec1d2ced4551_8433fad140cd9643378a3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.

A rewording suggestion; and a minor error correction.

> @@ -1142,6 +1142,21 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Datagram
+
+When a datagram is received, it may allow the server to send
+if the server was previously amplification limited, even if
+none of the packets in it can be processed.
+
+Pseudocode for OnDatagramReceived follows:
+
+~~~
+OnDatagramReceived(datagram):
+  // If this packet unblocks the server, arm the

```suggestion
  // If this datagram unblocks the server, arm the
```

> +When a datagram is received, it may allow the server to send
+if the server was previously amplification limited, even if
+none of the packets in it can be processed.

```suggestion
Receiving a datagram might allow the server to send additional data if the
server was previously blocked by the anti-amplification limits; see
{{before-address-validation}}. This is necessary even if none of the packets in
the datagram are successfully processed.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-413212951
----==_mimepart_5ec1d2ced4551_8433fad140cd9643378a3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> approved this pull request.</p>=0D
=0D
<p>A rewording suggestion; and a minor error correction.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3653#discussi=
on_r426320211">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1142,6 +1142,21 @@ Pseudocode for OnPa=
cketSent follows:=0D
      SetLossDetectionTimer()=0D
 ~~~=0D
 =0D
+## On Receiving a Datagram=0D
+=0D
+When a datagram is received, it may allow the server to send=0D
+if the server was previously amplification limited, even if=0D
+none of the packets in it can be processed.=0D
+=0D
+Pseudocode for OnDatagramReceived follows:=0D
+=0D
+~~~=0D
+OnDatagramReceived(datagram):=0D
+  // If this packet unblocks the server, arm the=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-  // If this packet unblocks the server, arm =
the=0D
+  // If this datagram unblocks the server, arm the=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3653#discussi=
on_r426321297">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +When a datagram is received, it may allow=
 the server to send=0D
+if the server was previously amplification limited, even if=0D
+none of the packets in it can be processed.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-When a datagram is received, it may allow the=
 server to send=0D
-if the server was previously amplification limited, even if=0D
-none of the packets in it can be processed.=0D
+Receiving a datagram might allow the server to send additional data if t=
he=0D
+server was previously blocked by the anti-amplification limits; see=0D
+{{before-address-validation}}. This is necessary even if none of the pac=
kets in=0D
+the datagram are successfully processed.=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3653#pullrequestreview-413212951">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K35UYIKL5FQTCXGSIDRSB4M5ANCNFSM4M7YPO6Q">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKZZT33Y3KCFGYNX2P3RSB4M5A5CNFSM4=
M7YPO62YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCQSCFY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestrev=
iew-413212951",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview=
-413212951",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec1d2ced4551_8433fad140cd9643378a3--


From nobody Sun May 17 17:19:12 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 A37F83A0927 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:19:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.428
X-Spam-Level: 
X-Spam-Status: No, score=0.428 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=1.629, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 CWm9j0DJVAUI for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:19:09 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 851883A0926 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:19:09 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id B58D76E0E02 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:19:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589761148; bh=3PymdJbaS3CEZow9QFU3ZAUw5cjdU4dvoujORPbalF0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2AcpmXyhOLofuwhlV/Uy8JuTkz7IS1tV9hgpz0yhsb1jgblmP8rlxya/Q6XRIy3aQ rznPvyq5Esi5I5RbEZWRQ9h8VLWzs6bbpFjX5tExctI4PtJ7CHIu5jV4sXJf4fWkFK Hdbhn5Ig/Zih0hBjvbkotzq+xwHw6NUqcjbDtlcY=
Date: Sun, 17 May 2020 17:19:08 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7TYFQ5I5IVY3RYI7F4ZW2XZEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/review/413214981@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1d47ca5f66_6c9b3fc3660cd96026813"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lSB6i3m8S_vPdFqNw90EW7zqVXM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 00:19:11 -0000

----==_mimepart_5ec1d47ca5f66_6c9b3fc3660cd96026813
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-413214981
----==_mimepart_5ec1d47ca5f66_6c9b3fc3660cd96026813
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-413214981">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK53JCGOFG4A7XMOHYTRSB5HZANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2OCYGKKIDDT2ZYFGDRSB5HZA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCQSSBI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-413214981",
"url": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-413214981",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1d47ca5f66_6c9b3fc3660cd96026813--


From nobody Sun May 17 17:19:31 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 3E2983A0926 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:19:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.2
X-Spam-Level: 
X-Spam-Status: No, score=-0.2 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 cLa3PWmYBSaQ for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:19:29 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 318A03A0921 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:19:29 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 880128C02BE for <quic-issues@ietf.org>; Sun, 17 May 2020 17:19:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589761168; bh=0QU1U4isiIg5zO1F0NPgoWpFv530JV7AVVPHbfykNTc=; h=Date:From:To:Subject:From; b=QF3SjXiZz106R83naa9xZF11j1Wv5q2tj6opH5E6rZTFbiMPKZi1chTxzcYhQ2Ah+ v5sIOovOZjze17VRBMZ6oLE+6w9JJ1FMzf9B0GTy/u6jxKPViDd9qOj212Y3O1/9uK tl4V4uha9bsJJT+mwKInuOQVzImc7UE1n5GrVXu8=
Date: Sun, 17 May 2020 17:19:28 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-onpacketreceived/75aeb2-54a7e0@github.com>
Subject: [quicwg/base-drafts] 54a7e0: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZPqlRGZNC5mGEG935aEjxLJ_Vo8>
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: Mon, 18 May 2020 00:19:30 -0000

  Branch: refs/heads/ianswett-onpacketreceived
  Home:   https://github.com/quicwg/base-drafts
  Commit: 54a7e018d34939d9bb42a9ea657f75415c10d907
      https://github.com/quicwg/base-drafts/commit/54a7e018d34939d9bb42a9ea657f75415c10d907
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-17 (Sun, 17 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Martin Thomson <mt@lowentropy.net>



From nobody Sun May 17 17:19:40 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 0A6673A0926 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:19:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.5
X-Spam-Level: 
X-Spam-Status: No, score=-0.5 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 E6ftCcRRM0VS for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:19:37 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 59CF13A0921 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:19:37 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id B2C702C0F28 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:19:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589761176; bh=YJQfJp9TwEGFDgcR7NjiGVt3NS4e+cyrIofAeAISnFM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Vg6uWijGBP6cOMjv9QQ5GU8JDIsRr8oe34LqD4D561vDbycXBcjseu5J9R6ma02ZS QXUYNSXkpAnCC5brm2vxGCZ6FVg5CXbdFDGV6HNs1FzqPMdqRCCyITgboZvMLQZSMz +DurlZndkHa6iByQsFTnJSQCAk1iCxyTg1tStL/M=
Date: Sun, 17 May 2020 17:19:36 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/push/5087041633@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1d498a399c_1d893fbcf80cd95c33394d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7qHoYcWaZ1p6nxRSh3RZToXw3pA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 00:19:39 -0000

----==_mimepart_5ec1d498a399c_1d893fbcf80cd95c33394d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

54a7e018d34939d9bb42a9ea657f75415c10d907  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653/files/75aeb2ffb9deaa7bb33ad35b7a6960388f39844a..54a7e018d34939d9bb42a9ea657f75415c10d907

----==_mimepart_5ec1d498a399c_1d893fbcf80cd95c33394d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/54a7e018d34939d9bb42a9ea657f75415c10d907">54a7e01</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3653/files/75aeb2ffb9deaa7bb33ad35b7a6960388f39844a..54a7e018d34939d9bb42a9ea657f75415c10d907">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZRNL2HAZ3VEATFT5LRSB5JRANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4VMWN7URNGA3M64L3RSB5JRA5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTOMZXGQ3DEMSQOVZWQIZVGA4DOMBUGE3DGMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653/files/75aeb2ffb9deaa7bb33ad35b7a6960388f39844a..54a7e018d34939d9bb42a9ea657f75415c10d907",
"url": "https://github.com/quicwg/base-drafts/pull/3653/files/75aeb2ffb9deaa7bb33ad35b7a6960388f39844a..54a7e018d34939d9bb42a9ea657f75415c10d907",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec1d498a399c_1d893fbcf80cd95c33394d--


From nobody Sun May 17 17:20:29 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 57AB63A0927 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:20:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 IlavyeJG_EGX for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:20:27 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 400C03A0912 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:20:27 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 700F76E1323 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:20:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589761226; bh=mRaihP8o/gXJnorHrlgDmTfuwvlsvJ8oEGU+NXfpLrM=; h=Date:From:To:Subject:From; b=QpaK66xKQVlsKJFbKmpeMY5HptXyEbdIXuHQDy1SyfXk5EheR/kolqcpNiAY0kSPg 1wynEDMnG8E4Rm148XukkDDCbpcuqZ+bCaQIvbwbSUb+b3KIzJ0WOB/7elnhyGgd/f 4dXNIirq4iO4F/rg4QuOoWOoDCXpen8weRfUQfEQ=
Date: Sun, 17 May 2020 17:20:26 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8ac426-c8eaa8@github.com>
Subject: [quicwg/base-drafts] c8eaa8: Script updating gh-pages from 54a7e018. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OaAenBMZWMTeblsDkhplpqGwSio>
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: Mon, 18 May 2020 00:20:28 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c8eaa85df280955f74f2cae1bfc5700e6916d43c
      https://github.com/quicwg/base-drafts/commit/c8eaa85df280955f74f2cae1bfc5700e6916d43c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M ianswett-onpacketreceived/draft-ietf-quic-http.html
    M ianswett-onpacketreceived/draft-ietf-quic-http.txt
    M ianswett-onpacketreceived/draft-ietf-quic-invariants.html
    M ianswett-onpacketreceived/draft-ietf-quic-invariants.txt
    M ianswett-onpacketreceived/draft-ietf-quic-qpack.html
    M ianswett-onpacketreceived/draft-ietf-quic-qpack.txt
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.html
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.txt
    M ianswett-onpacketreceived/draft-ietf-quic-tls.html
    M ianswett-onpacketreceived/draft-ietf-quic-tls.txt
    M ianswett-onpacketreceived/draft-ietf-quic-transport.html
    M ianswett-onpacketreceived/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 54a7e018. [ci skip]



From nobody Sun May 17 17:22:02 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 4DD303A092A for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:22:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.2
X-Spam-Level: 
X-Spam-Status: No, score=-0.2 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 m6YtUE0dOB7D for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:22:00 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4B08A3A0929 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:22:00 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 9DEF62C0E59 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:21:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589761319; bh=4DYDdaCFRAPx3JxRSPmcLfwm6ylThIxi0Od7vH3elg4=; h=Date:From:To:Subject:From; b=Oloh1vepcLizFtOZyOg02i/Sn58pEZVIjhUB7IR8bggJyd79r9W9fEl7LlfnBZC4z wloJZFbmWQsthjrlPdz60TQoJQfDAQpDBBQ+iEGyq4XCC1zjRPIETQzmVRO6zFmf+l MfsJnheI3U7hxsJg9HDlEndh7YPhB27+/Y+PvuFw=
Date: Sun, 17 May 2020 17:21:59 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-onpacketreceived/54a7e0-3bdc0e@github.com>
Subject: [quicwg/base-drafts] 3bdc0e: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AUF9O6hm2I9IHkkz2ynF5HW-8wc>
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: Mon, 18 May 2020 00:22:01 -0000

  Branch: refs/heads/ianswett-onpacketreceived
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3bdc0ed6e05a308ee501baf6bcbad206e9231f03
      https://github.com/quicwg/base-drafts/commit/3bdc0ed6e05a308ee501baf6bcbad206e9231f03
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-17 (Sun, 17 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Martin Thomson <mt@lowentropy.net>



From nobody Sun May 17 17:22:13 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 C3F1A3A092A for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:22:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.5
X-Spam-Level: 
X-Spam-Status: No, score=-0.5 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 dGGPkHFt8hUE for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:22:09 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8A74E3A0929 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:22:09 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id CD68C8C024D for <quic-issues@ietf.org>; Sun, 17 May 2020 17:22:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589761328; bh=N6jgrLodZ0kkUni0VxTUjZWw+Fon1lvcaZp8DBj2Euc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NVIBnxYGfIRb7EmUfSlmsZBVpxjqo7+a8F7eP3jQHKIPPBMUIiVYP3t+K/mVsKP/r joUa7EzBBTR3n6I8HJL9NgvOgbLXP+I6X4YhMu1IBfE6VDW+ca3gOxMh7ncbWI/YLm ksCq+nhLlLwN792atuNp7BN4wsavaWClmmmJkA+A=
Date: Sun, 17 May 2020 17:22:08 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/push/5087046975@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1d530be351_37d3fe8a94cd96c30084a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sL_6_gov-F9fbrP7LNYNF-ArMSM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 00:22:11 -0000

----==_mimepart_5ec1d530be351_37d3fe8a94cd96c30084a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

3bdc0ed6e05a308ee501baf6bcbad206e9231f03  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653/files/54a7e018d34939d9bb42a9ea657f75415c10d907..3bdc0ed6e05a308ee501baf6bcbad206e9231f03

----==_mimepart_5ec1d530be351_37d3fe8a94cd96c30084a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/3bdc0ed6e05a308ee501baf6bcbad206e9231f03">3bdc0ed</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3653/files/54a7e018d34939d9bb42a9ea657f75415c10d907..3bdc0ed6e05a308ee501baf6bcbad206e9231f03">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4LFEXMMLDUN7YZ53TRSB5TBANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYNOQHGB4RB5VPINLTRSB5TBA5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTOMZXGQ3DEMSQOVZWQIZVGA4DOMBUGY4TONI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653/files/54a7e018d34939d9bb42a9ea657f75415c10d907..3bdc0ed6e05a308ee501baf6bcbad206e9231f03",
"url": "https://github.com/quicwg/base-drafts/pull/3653/files/54a7e018d34939d9bb42a9ea657f75415c10d907..3bdc0ed6e05a308ee501baf6bcbad206e9231f03",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec1d530be351_37d3fe8a94cd96c30084a--


From nobody Sun May 17 17:22:52 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 516C43A092A for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:22:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 0LZ-lUu53EYH for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:22:49 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 46DA43A0929 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:22:49 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 888282C1701 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:22:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589761368; bh=2dkQkMSANslm4UwmSw+fA2JUASQOflc0yk77HfVNMqY=; h=Date:From:To:Subject:From; b=oN/ivcsKiWv9uDiHxlqptUmwdPLCGbUG6koVft1z512sjx+zpMTB76ZujQmytRjdz 9UQzThlka09kypjKYH5avDof2itDdTIbE6mZws3tv8iIR8h7Zokgr2pQxiuQO7QOwX MLdvRWChGCdMKFxZwmHl+no+jcl5yo/NoPLpkWjk=
Date: Sun, 17 May 2020 17:22:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c8eaa8-4d50fe@github.com>
Subject: [quicwg/base-drafts] 4d50fe: Script updating gh-pages from 3bdc0ed6. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mkiXbfmaudPfJ7vml4i0O4sAiRM>
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: Mon, 18 May 2020 00:22:50 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4d50fe1e3ead4b8781306461ae396b6b0ee42ff8
      https://github.com/quicwg/base-drafts/commit/4d50fe1e3ead4b8781306461ae396b6b0ee42ff8
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.html
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 3bdc0ed6. [ci skip]



From nobody Sun May 17 17:23:23 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 648653A092C for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:23:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 2D_h-Zo_aQ6V for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:23:21 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 683C43A092B for <quic-issues@ietf.org>; Sun, 17 May 2020 17:23:21 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id BC88A6E09FA for <quic-issues@ietf.org>; Sun, 17 May 2020 17:23:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589761400; bh=fOKSxtSgsDEoPVux79jkgkUVK6jUAWiCXEW2CtlOCTA=; h=Date:From:To:Subject:From; b=XC93Ay+YVuNIQqglo15qQnp/f85LdBhn/JAjypOojbC0kbIYx8LSlPKdvKSpN/+iD rjhX6meMMC1MY25JH3P4UXk2XtHIF8mJwRTsM+45rs3cEwmWRnoq4u7F1pHNj/Rzqf fAZMyBlcQbD26sDnFpva6x82A6KN8CgXs427Z8Gg=
Date: Sun, 17 May 2020 17:23:20 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-onpacketreceived/3bdc0e-9be181@github.com>
Subject: [quicwg/base-drafts] 9be181: Remove ref to a section which does not exist.
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GjNEyXjK1NPnQgNOBvUSHSzbEBk>
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: Mon, 18 May 2020 00:23:22 -0000

  Branch: refs/heads/ianswett-onpacketreceived
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9be18130577abf419d42efe0d3dae6f04184c00e
      https://github.com/quicwg/base-drafts/commit/9be18130577abf419d42efe0d3dae6f04184c00e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-17 (Sun, 17 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Remove ref to a section which does not exist.



From nobody Sun May 17 17:23:33 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 65F443A092C for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:23:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 EUDcS94uKkxT for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:23:30 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 334893A092A for <quic-issues@ietf.org>; Sun, 17 May 2020 17:23:30 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 83019660041 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:23:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589761409; bh=r07u+Rpa1XkBbyH9GZUeTJVst+bUPD+DoJTzB0ZrBh0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NHlZu5/nm/wz2eqW44GKlgfRj8ugfeygNoBcVOx4g4CFcDT+Kl9s84ggUEXBY0Ud5 PJwiyCsXw9/xH5VlpKa0IqMZ78FvtETLxeXFwE8OozIWpfvV168D6/0hn988lEN47v Xf+//NzV0Ganu7dL16WGa/QFqReQij2PUgm8N28E=
Date: Sun, 17 May 2020 17:23:29 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/push/5087049696@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1d58172dab_6c1f3fe7746cd964260044"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/A6qHHF4oGnxdFlAEgS8x1L8k8UE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 00:23:31 -0000

----==_mimepart_5ec1d58172dab_6c1f3fe7746cd964260044
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

9be18130577abf419d42efe0d3dae6f04184c00e  Remove ref to a section which does not exist.


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653/files/3bdc0ed6e05a308ee501baf6bcbad206e9231f03..9be18130577abf419d42efe0d3dae6f04184c00e

----==_mimepart_5ec1d58172dab_6c1f3fe7746cd964260044
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/9be18130577abf419d42efe0d3dae6f04184c00e">9be1813</a>  Remove ref to a section which does not exist.</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3653/files/3bdc0ed6e05a308ee501baf6bcbad206e9231f03..9be18130577abf419d42efe0d3dae6f04184c00e">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZSCJ2DGQEZUZHDOZDRSB5YDANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZJZDJ3NRYIKBW5A4LRSB5YDA5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTOMZXGQ3DEMSQOVZWQIZVGA4DOMBUHE3DSNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653/files/3bdc0ed6e05a308ee501baf6bcbad206e9231f03..9be18130577abf419d42efe0d3dae6f04184c00e",
"url": "https://github.com/quicwg/base-drafts/pull/3653/files/3bdc0ed6e05a308ee501baf6bcbad206e9231f03..9be18130577abf419d42efe0d3dae6f04184c00e",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec1d58172dab_6c1f3fe7746cd964260044--


From nobody Sun May 17 17:24:33 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 79C6C3A092A for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:24:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 JmzlVoq-bUfm for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:24:30 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7F3823A0928 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:24:30 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id D3250660049 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:24:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589761469; bh=JqnkJsgFoZuRjBAe3x8zvKao2YYAvN3IHheJaXqlNVk=; h=Date:From:To:Subject:From; b=LkcIfXuv3L90Os4bZryfXnPDoKXdIr0TUNFkNA2sqgbLu6cr8czN4nZzpUjVA5N1p rFDh2qzSw/38vQjjshsLTAqEC7vpqH2G/1BRWig3vFXB/ABIN5X8c3qLM5WvEuBt1W 7n+B5h2IGwPzC34F66aH06m0IgeNVsfN/1e3W+pM=
Date: Sun, 17 May 2020 17:24:29 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4d50fe-ef5a8c@github.com>
Subject: [quicwg/base-drafts] ef5a8c: Script updating gh-pages from 9be18130. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xKHKfnrVwu8XK2Duk6FbdIk1Qm8>
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: Mon, 18 May 2020 00:24:31 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ef5a8c42cde6fa5d8286e97ae60ce44dc1606572
      https://github.com/quicwg/base-drafts/commit/ef5a8c42cde6fa5d8286e97ae60ce44dc1606572
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.html
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 9be18130. [ci skip]



From nobody Sun May 17 17:25:41 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 B9C803A092A for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:25:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 eRFgE3BBcaqU for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:25:38 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7647E3A0928 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:25:38 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id C9BCCA03AE for <quic-issues@ietf.org>; Sun, 17 May 2020 17:25:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589761537; bh=uuQjAIPqNlaojfEcrECXl9X3aW3yE5QfvGroiYF4tYk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LcMt2VeBacSWd5LR2DCGEmImwjAW91vjhgDaT6GfYZ3al4U3cEgMz/DQ78y0X+f6c o+nZCqbsSJbGlWfCk4lJMoIurIrMxq2+xaFVQMZg/Om5iIG8h7tjrIvvFNVr6pATGW m8sDqYAs7hLyU3yUwAnenodL2IlQEZLDrZB2sAmg=
Date: Sun, 17 May 2020 17:25:37 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZA2554OYQ7JEKXL6N4ZW3QDEVBNHHCJTOADM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/review/413215797@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1d601ba1e1_24183f97c9ccd968471572"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/h72lLQOhzj8QsrnMAQpjH3eLckI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 00:25:40 -0000

----==_mimepart_5ec1d601ba1e1_24183f97c9ccd968471572
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> +When a datagram is received, it may allow the server to send
+if the server was previously amplification limited, even if
+none of the packets in it can be processed.

I removed the reference because I couldn't find that section and removed "additional data", because the amplification factor applies to all packets, not just data or ack-eliciting packets.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653#discussion_r426322796
----==_mimepart_5ec1d601ba1e1_24183f97c9ccd968471572
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3653#discussion_r426322796">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; +When a datagram is received, it may allow the server to send
+if the server was previously amplification limited, even if
+none of the packets in it can be processed.
</pre>
<p>I removed the reference because I couldn't find that section and removed "additional data", because the amplification factor applies to all packets, not just data or ack-eliciting packets.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3653#discussion_r426322796">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYTMRCKMCIVLINUUHTRSB6ADANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7WTN4L5HULUCLFU6TRSB6ADA5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCQSYNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653#discussion_r426322796",
"url": "https://github.com/quicwg/base-drafts/pull/3653#discussion_r426322796",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1d601ba1e1_24183f97c9ccd968471572--


From nobody Sun May 17 17:37:27 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 4A1263A0936 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:37:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.474
X-Spam-Level: 
X-Spam-Status: No, score=-0.474 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=0.726, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 Mm3lvT7hxMNg for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:37:24 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B10C83A0935 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:37:24 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 01917A08A7 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:37:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589762244; bh=LzJ/EAf77AYAQDg1ogzwZdK0cnrXJUkMvy8nWfSIOKk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=K1OxhMUV2IFHUc74dm2LNRTIACqIioBXL+Xp1V8hxkB3Oc/bRFx2nVZjUmd5FYrzk AXD/1wxh91jUKgGL0W0qw6ib6fY8rrZJ/N0cOcSSyIyisuWnbdiKfRonr/NQxydJzi cm+hk2GJjNMHvIrfuiBOam5l0EcOi2iZiT3VD/Qs=
Date: Sun, 17 May 2020 17:37:23 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4NCEM3TQCV62GFZAV4ZW44HEVBNHHCJ2QBFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3661/629888016@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3661@github.com>
References: <quicwg/base-drafts/issues/3661@github.com>
Subject: Re: [quicwg/base-drafts] Include epoch in the AAD or the nonce? (#3661)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1d8c3e6192_24303f97c9ccd96833403d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2nq1QL5q4sUd3HeaaUswXRmIrwE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 00:37:26 -0000

----==_mimepart_5ec1d8c3e6192_24303f97c9ccd96833403d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As Kazuho says, the short value is covered by the AAD; it's only the full value that we need to worry about.

This is only an intuition, but my expectation is that the analysis offered in https://www.felixguenther.info/docs/QUIPS2020_RobustChannels.pdf could extend to epochs.  That is, the packet contains the key phase, which is analogous to the packet number.  Endpoints only accept packets within a very narrow window.  For packet numbers, this is determined by the length of the packet number encoding in that analysis; for epochs, this would be the two epochs you keep live, which matches the length of the key phase.  I can make an argument that keeping the number of keys less than the number of epoch values is no worse than one key and no encoded epoch values.

That's not formal though; there might be a trick needed to resolve the odd loop where the value you are relying on is authenticated by the key that it identifies (I don't see that question being addressed in the referenced thread).

The question for me is whether you believe that this requires formal analysis.  Obviously it would be great if someone could find a way to subject this to more formal analysis, but we need to determine how much of a deal-breaker this could be.

Folks in TLS seem to be pushing toward adding more to the AAD, but that doesn't seem to be well supported by anything other than an excess of caution in the absence of any real analysis.  I don't think we should change something without formal analysis supporting additional measures.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3661#issuecomment-629888016
----==_mimepart_5ec1d8c3e6192_24303f97c9ccd96833403d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>As Kazuho says, the short value is covered by the AAD; it's only the full value that we need to worry about.</p>
<p>This is only an intuition, but my expectation is that the analysis offered in <a href="https://www.felixguenther.info/docs/QUIPS2020_RobustChannels.pdf" rel="nofollow">https://www.felixguenther.info/docs/QUIPS2020_RobustChannels.pdf</a> could extend to epochs.  That is, the packet contains the key phase, which is analogous to the packet number.  Endpoints only accept packets within a very narrow window.  For packet numbers, this is determined by the length of the packet number encoding in that analysis; for epochs, this would be the two epochs you keep live, which matches the length of the key phase.  I can make an argument that keeping the number of keys less than the number of epoch values is no worse than one key and no encoded epoch values.</p>
<p>That's not formal though; there might be a trick needed to resolve the odd loop where the value you are relying on is authenticated by the key that it identifies (I don't see that question being addressed in the referenced thread).</p>
<p>The question for me is whether you believe that this requires formal analysis.  Obviously it would be great if someone could find a way to subject this to more formal analysis, but we need to determine how much of a deal-breaker this could be.</p>
<p>Folks in TLS seem to be pushing toward adding more to the AAD, but that doesn't seem to be well supported by anything other than an excess of caution in the absence of any real analysis.  I don't think we should change something without formal analysis supporting additional measures.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3661#issuecomment-629888016">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6ENNNB5I7UYDINIATRSB7MHANCNFSM4NCUCTOA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3D42SE2KHFSPNNDSDRSB7MHA5CNFSM4NCUCTOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWFVIEA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3661#issuecomment-629888016",
"url": "https://github.com/quicwg/base-drafts/issues/3661#issuecomment-629888016",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1d8c3e6192_24303f97c9ccd96833403d--


From nobody Sun May 17 17:51:22 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 EA16C3A00D5 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:51:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 3lg36NH_750U for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:51:19 -0700 (PDT)
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 A84A73A00D4 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:51:19 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id D54A4281005 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:51:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589763078; bh=pO+1H3XzepLmYawucjzXE64BbVAUonTVQ/rX7AvtXgs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nqTvOze8riDK9PKG/G1FkaI/Uq6VIAzGWLkDlk1RTZx8wv03V65AbHgXsvSQGNglz cLmQuEaHPuHASCYG2fvImV+YnxtlxudWIlYAQMERwL/5cy2jbRKrhye2C1qzJyPp2i zdg1mdAYFcEqqxXaZgvGVW8dcCfIyVY9HjStzzfo=
Date: Sun, 17 May 2020 17:51:18 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7L5IC6EFWGVML4LSV4ZW6QNEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/review/413212746@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1dc06c279b_51f03feba92cd95c3815e0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AodMtJ35EFQeOPFPshgbmXQ1ha0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 00:51:21 -0000

----==_mimepart_5ec1dc06c279b_51f03feba92cd95c3815e0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +as the one in this document, that rate can be computed by averaging the
+congestion window over the round-trip time. Expressed as a rate in bytes:
+
+~~~
+rate = N * congestion_window / smoothed_rtt
+~~~
+
+Or, expressed as an inter-packet interval:
+
+~~~
+interval = smoothed_rtt * packet_size / congestion_window / N
+~~~
+
+Using a value for `N` that is small, but at least 1 (for example, 1.25) ensures
+that short-term variations in round-trip time or scheduler delays don't result
+in under-utilization of the congestion window.

Not really comfortable with saying "ack-clocked" without a definition.  Can you say something else?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#discussion_r426319996
----==_mimepart_5ec1dc06c279b_51f03feba92cd95c3815e0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3630#discussion_r426319996">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; +as the one in this document, that rate can be computed by averaging the
+congestion window over the round-trip time. Expressed as a rate in bytes:
+
+~~~
+rate = N * congestion_window / smoothed_rtt
+~~~
+
+Or, expressed as an inter-packet interval:
+
+~~~
+interval = smoothed_rtt * packet_size / congestion_window / N
+~~~
+
+Using a value for `N` that is small, but at least 1 (for example, 1.25) ensures
+that short-term variations in round-trip time or scheduler delays don&#39;t result
+in under-utilization of the congestion window.
</pre>
<p>Not really comfortable with saying "ack-clocked" without a definition.  Can you say something else?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#discussion_r426319996">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7R35SZUJQU4JOXIJLRSCBANANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2INHL4S6YMI5DTN5DRSCBANA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCQSASQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#discussion_r426319996",
"url": "https://github.com/quicwg/base-drafts/pull/3630#discussion_r426319996",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1dc06c279b_51f03feba92cd95c3815e0--


From nobody Sun May 17 17:52:17 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 D60AF3A00D5 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:52:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 EtTQ431DZ6wu for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:52:14 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B89B83A00D4 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:52:14 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 21114660DF9 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:52:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589763134; bh=qzjirTs+slB1CpTgYQweK672Q/3CXKp2F4xIyigzDs8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Gb4Ynf6mICI37wI03SLOSGkAgARePw1aVTuQ9gDJKnAfqjj5yKYmBoolf/QQtK4tv SRLu3VPZ1KoPnXARw3r619PNFOkgIcuN+aPpBvLm6d+9FCS6NFXwg5nSs0GJosz9PO bttQOvqKwRMLQv2SRYSA0mxjU7vAe0uAxHDy8tSE=
Date: Sun, 17 May 2020 17:52:14 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK557T6UIZISB3QKNRV4ZW6T5EVBNHHB6RXLXM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3265/issue_event/3345123663@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3265@github.com>
References: <quicwg/base-drafts/issues/3265@github.com>
Subject: Re: [quicwg/base-drafts] Add capability for sending HTTP metadata (trailer fields) in mid-stream (#3265)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1dc3e105b4_540f3fce206cd968353725"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GPYFWFjVGIRVCySFeum-x0ckC6s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 00:52:16 -0000

----==_mimepart_5ec1dc3e105b4_540f3fce206cd968353725
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3265.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3265#event-3345123663
----==_mimepart_5ec1dc3e105b4_540f3fce206cd968353725
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="524741563" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3265" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3265/hovercard" href="https://github.com/quicwg/base-drafts/issues/3265">#3265</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3265#event-3345123663">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2FSNQSTUHBEUN7URTRSCBD5ANCNFSM4JO5B63A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4QCXQ3M5NQSWMMYZDRSCBD5A5CNFSM4JO5B63KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5RISTY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3265#event-3345123663",
"url": "https://github.com/quicwg/base-drafts/issues/3265#event-3345123663",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1dc3e105b4_540f3fce206cd968353725--


From nobody Sun May 17 17:53:28 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 423053A00D8 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:53:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 h5yxEj0T1iT8 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:53:26 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4449D3A00C9 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:53:26 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 8B125A0329 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:53:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589763205; bh=AbcZtVkFnjLwNAFIGLebCJ8oH/T2Xo2+5BqKq6h9iEI=; h=Date:From:To:Subject:From; b=N9lGeXpMS2it22zVOgOpZ2u8iIBGDjaKFHLBXz/e7XCwJKZUxZQxWFCxKusLUh+aB b1xx7ehwJ6C8eawL9K0i6OyTdG+AI2uVU1rYDY7mNcjQgUa5alCBf40AxeW2UqD+TG Ylqh1NyyvpgKzKIv9qEyMCU/LBXAbK60BYQBtX38=
Date: Sun, 17 May 2020 17:53:25 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/authenticate-hs-cid/27dfb6-62103c@github.com>
Subject: [quicwg/base-drafts] 62103c: Only valid packets change this state
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HoigurLjTPwS86UpcufcDRamtTo>
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: Mon, 18 May 2020 00:53:27 -0000

  Branch: refs/heads/authenticate-hs-cid
  Home:   https://github.com/quicwg/base-drafts
  Commit: 62103ceb9ff5b87b2717bea1af6ff64cff1a989e
      https://github.com/quicwg/base-drafts/commit/62103ceb9ff5b87b2717bea1af6ff64cff1a989e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Only valid packets change this state

Co-authored-by: ekr <ekr@rtfm.com>



From nobody Sun May 17 17:53:37 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 E07B43A00D8 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:53:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.498
X-Spam-Level: 
X-Spam-Status: No, score=-0.498 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 0gELgKBCbJvB for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:53:34 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CC9C93A00C9 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:53:34 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 6BCFD120105 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:53:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589763214; bh=xLa27mn9W7xCjy4V7WAOqjqnkyFCb0txEtBjhgGWZXg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nDxEv+iwp4gsypG28Cyf4Q7ybmYAH0ZAcuQnjdiAoyEe9AXv/Y8sWwTfOAllJRTpm 6f80oDLqcpM0vVon08pJHp7KSs73//ouIVLp53c+WnHHFZ5vMSuHyfhhDadFVOZTZb ItXG8TNvRoTBKVkkrIyWbdBg9nQe3JEQHe/RgQlc=
Date: Sun, 17 May 2020 17:53:34 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/push/5087110802@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1dc8e26330_3bce3f87be2cd96042482d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/F-Dc8IkkUqpNPUFd7_J6VRjqw8U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 00:53:36 -0000

----==_mimepart_5ec1dc8e26330_3bce3f87be2cd96042482d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

62103ceb9ff5b87b2717bea1af6ff64cff1a989e  Only valid packets change this state


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499/files/27dfb6973f76c27fee090c001b6f82427b463806..62103ceb9ff5b87b2717bea1af6ff64cff1a989e

----==_mimepart_5ec1dc8e26330_3bce3f87be2cd96042482d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/62103ceb9ff5b87b2717bea1af6ff64cff1a989e">62103ce</a>  Only valid packets change this state</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3499/files/27dfb6973f76c27fee090c001b6f82427b463806..62103ceb9ff5b87b2717bea1af6ff64cff1a989e">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZXNHXREBUSKC5PBS3RSCBI5ANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4SN2P3HTHJ4VUWESLRSCBI5A5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4DGMZXGEZDKNSQOVZWQIZVGA4DOMJRGA4DAMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499/files/27dfb6973f76c27fee090c001b6f82427b463806..62103ceb9ff5b87b2717bea1af6ff64cff1a989e",
"url": "https://github.com/quicwg/base-drafts/pull/3499/files/27dfb6973f76c27fee090c001b6f82427b463806..62103ceb9ff5b87b2717bea1af6ff64cff1a989e",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec1dc8e26330_3bce3f87be2cd96042482d--


From nobody Sun May 17 17:53:57 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 D6C0B3A00D8 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:53:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 X1toq7eDxCmA for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:53:54 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 24C083A00C9 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:53:54 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 94CE7260405 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:53:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589763233; bh=effF8CTgtqqtbZnc53Eraoxeq31Lb40KlZfxw2QFYCg=; h=Date:From:To:Subject:From; b=Xyv9EMq2IgozUXblsq4UwQqno+8CjHyQxLbJgiGKAdibhJ6fp/pe4X0RGQM4b/6G/ qr6FLMeFU04pnpkR8k+TDI/Ay+tTHTnwNFKd9sR0781C4qmghUaH9sqU2Ak9Mbs9Ev dBUThQbcGf6SttoZSfpAEV9vE+sf6Q20aCIAbt7c=
Date: Sun, 17 May 2020 17:53:53 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/9b80e9-e8531a@github.com>
Subject: [quicwg/base-drafts] 2fc515: Authenticate connection IDs
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tzyAOdaMWNp_3njPc7eHbPWZjP4>
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: Mon, 18 May 2020 00:53:56 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2fc5157ed013ae8f84f17e44409c42be87660feb
      https://github.com/quicwg/base-drafts/commit/2fc5157ed013ae8f84f17e44409c42be87660feb
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-03-11 (Wed, 11 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Authenticate connection IDs

This authenticates all of them.

Note that I have chosen to use position in the protocol (Source vs.
Destination) as opposed to who selects the values (client vs. server) as
the means of deciding where each lies.  This avoids regressing an
existing protocol characteristic.

This changes the definition of original_connection_id so that it is
mandatory for the server to include always.  A new
handshake_connection_id (which might be initial_connection_id, but I
think that's confusing) is also mandatory for both roles.  The
retry_connection_id is used when there is a Retry.

This is a granular encoding.  That means some additional bytes for the
types of transport parameters, but not so many as to be intolerable, I
think.  A single transport parameter, or a header on the transport
parameter encoding (as we used to have) might be slightly more
efficient, but offhand I think that the net saving would be at most 2
bytes, so I'm going with simple over small.

Closes #3439.


  Commit: 0560290f9041482293cea9cdd053d326345b735a
      https://github.com/quicwg/base-drafts/commit/0560290f9041482293cea9cdd053d326345b735a
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-03-11 (Wed, 11 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Review feedback from David and Martin


  Commit: beba71f8e874d803b9fb712312d62f769988d74d
      https://github.com/quicwg/base-drafts/commit/beba71f8e874d803b9fb712312d62f769988d74d
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-03-11 (Wed, 11 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Less text, more cross-reference


  Commit: efb4c78cb4f64b9a926382777700f964ec6c0d61
      https://github.com/quicwg/base-drafts/commit/efb4c78cb4f64b9a926382777700f964ec6c0d61
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-03-23 (Mon, 23 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  singular

Co-Authored-By: ianswett <ianswett@users.noreply.github.com>


  Commit: 41928cd80c885542633c0bd9898640850e51c69c
      https://github.com/quicwg/base-drafts/commit/41928cd80c885542633c0bd9898640850e51c69c
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-03-24 (Tue, 24 Mar 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  complete sentences.

Co-Authored-By: Mike Bishop <mbishop@evequefou.be>


  Commit: f44f24e94b3eae910909cdcc76b738792a6a0105
      https://github.com/quicwg/base-drafts/commit/f44f24e94b3eae910909cdcc76b738792a6a0105
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-03-24 (Tue, 24 Mar 2020)

  Changed paths:
    M .circleci/config.yml
    M .lint.py
    M draft-ietf-quic-http.md
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-recovery.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge branch 'master' into authenticate-hs-cid


  Commit: c7a236086266f17ba091046840d6e3d1e58251fe
      https://github.com/quicwg/base-drafts/commit/c7a236086266f17ba091046840d6e3d1e58251fe
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-09 (Thu, 09 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Jana's suggestion from review

I'll need to reflow these...

Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 6f5e5478139beb1f0d187c2ea58a7449098e7711
      https://github.com/quicwg/base-drafts/commit/6f5e5478139beb1f0d187c2ea58a7449098e7711
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-09 (Thu, 09 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Reformat


  Commit: 8cec1c293b280b20329837cf4528187480986ba3
      https://github.com/quicwg/base-drafts/commit/8cec1c293b280b20329837cf4528187480986ba3
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-09 (Thu, 09 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Rename to initial_connection_id


  Commit: b0ef978e1e2451acc6db7857698b141c4e7cad29
      https://github.com/quicwg/base-drafts/commit/b0ef978e1e2451acc6db7857698b141c4e7cad29
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-09 (Thu, 09 Apr 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge branch 'master' into authenticate-hs-cid


  Commit: e2f2b33800cb09add5e185e09f1512ef71e86099
      https://github.com/quicwg/base-drafts/commit/e2f2b33800cb09add5e185e09f1512ef71e86099
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-04-14 (Tue, 14 Apr 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Restore active_connection_id_limit


  Commit: e30cf5fc52da2f7958901fbdf5bcbec920a60d71
      https://github.com/quicwg/base-drafts/commit/e30cf5fc52da2f7958901fbdf5bcbec920a60d71
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-11 (Mon, 11 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Editorial comments thanks to @DavidSchinazi

There are a bunch of things here, but mostly this is just a
transcription of the helpful suggestions.

I have also renamed the parameters.


  Commit: 81bcdb67d85d953aca7ae378b1f2e4c6a4744578
      https://github.com/quicwg/base-drafts/commit/81bcdb67d85d953aca7ae378b1f2e4c6a4744578
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-qpack.md
    M draft-ietf-quic-recovery.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md
    R workflow.xml

  Log Message:
  -----------
  Merge branch 'master' into authenticate-hs-cid


  Commit: 740cd920d57433273a5dbc74b7fb9a276f6c84bc
      https://github.com/quicwg/base-drafts/commit/740cd920d57433273a5dbc74b7fb9a276f6c84bc
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add a picture

This new figure shows the complete set of messages that determine the
connection ID that each peer uses.  The explanation describes how the
connection IDs in those messages are included in transport parameters.

Hopefully this aids in understanding how this is put together.  It's not
complicated, but it's not necessarily clear from reading a set of rules
that this is the case.


  Commit: 6c046207932beb402d293fc5b2c37180995e0dba
      https://github.com/quicwg/base-drafts/commit/6c046207932beb402d293fc5b2c37180995e0dba
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge branch 'master' into authenticate-hs-cid


  Commit: 6ae7f18bfb4052e352d91c2f95715867b41d2582
      https://github.com/quicwg/base-drafts/commit/6ae7f18bfb4052e352d91c2f95715867b41d2582
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Use a more generic reference


  Commit: fee4020ce6d9aaa9bbee74a51424701ca98bbf44
      https://github.com/quicwg/base-drafts/commit/fee4020ce6d9aaa9bbee74a51424701ca98bbf44
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Correct a few more errors


  Commit: 27dfb6973f76c27fee090c001b6f82427b463806
      https://github.com/quicwg/base-drafts/commit/27dfb6973f76c27fee090c001b6f82427b463806
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-12 (Tue, 12 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Fewer words


  Commit: 62103ceb9ff5b87b2717bea1af6ff64cff1a989e
      https://github.com/quicwg/base-drafts/commit/62103ceb9ff5b87b2717bea1af6ff64cff1a989e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Only valid packets change this state

Co-authored-by: ekr <ekr@rtfm.com>


  Commit: e8531a05f0aa5fb25d3686695600c291cb2d737f
      https://github.com/quicwg/base-drafts/commit/e8531a05f0aa5fb25d3686695600c291cb2d737f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3499 from quicwg/authenticate-hs-cid

Authenticate connection IDs


Compare: https://github.com/quicwg/base-drafts/compare/9b80e966caf6...e8531a05f0aa


From nobody Sun May 17 17:54:01 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 DEEAE3A00C9 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:53:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 vsIXhVaLvBra for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:53:54 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DCE403A00D5 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:53:54 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 0A9EE1C0EDF for <quic-issues@ietf.org>; Sun, 17 May 2020 17:53:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589763234; bh=uVWQgNx+C+zBwMV7ZEo7GkImV7VJiLGt+RrLdUd0sFs=; h=Date:From:To:Subject:From; b=utUgGjKgKLVsmlKn01kZwnPMYQWG3qjhcsW46nLVW5cBoHr1cdES0oJaF0XY1WbiJ 7lEZuZ2z044w3qu2nokaV+HuDi8cYsiyfKmMDxzH7C0bkmTIcfP1viEIoue7WMw6u2 npX62zjtI4P5k0xdv4445F62MFY7pU7YSEwDh1S4=
Date: Sun, 17 May 2020 17:53:53 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/authenticate-hs-cid/62103c-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nL-7Jm5elb1EVoFQ2Eo_JKOaV9k>
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: Mon, 18 May 2020 00:53:57 -0000

  Branch: refs/heads/authenticate-hs-cid
  Home:   https://github.com/quicwg/base-drafts


From nobody Sun May 17 17:54:06 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 4CE253A00DB for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:54:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 fUvJpLLTBHc8 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:54:03 -0700 (PDT)
Received: from out-15.smtp.github.com (out-15.smtp.github.com [192.30.254.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1AB4E3A00D5 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:54:03 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id C158E2612B1 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:54:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589763242; bh=Djb2EAIbwKOPieDNjaeH0EXGl8Su0HD33ZHu8fGm6B8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iui9QAR2VBuy9hrZcMJvXu6OOSKwQqeBSn2hYuLDEns+nIxhLX6Y1jD8SFbmkqJlk bEEqh8Y11et8GW77NQPF8PnFV1vLLVcrsAWGSHHdPrY8jk5jn1cswfuWvwGOKUm+q4 TJECP3pFwKV7u1YtvRJZORL7Z99CYWGDGPi5+Fvo=
Date: Sun, 17 May 2020 17:54:02 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5C6TPN57CU5BY3XLV4ZW62VEVBNHHCESD76A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3499/issue_event/3345125474@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3499@github.com>
References: <quicwg/base-drafts/pull/3499@github.com>
Subject: Re: [quicwg/base-drafts] Authenticate connection IDs (#3499)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1dcaa7be9a_5b163ffcac6cd96c25609a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7KbIboCXOo--FRZOHnRavCfx-k8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 00:54:04 -0000

----==_mimepart_5ec1dcaa7be9a_5b163ffcac6cd96c25609a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3499 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3499#event-3345125474
----==_mimepart_5ec1dcaa7be9a_5b163ffcac6cd96c25609a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="575176688" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3499" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3499/hovercard" href="https://github.com/quicwg/base-drafts/pull/3499">#3499</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3499#event-3345125474">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ7QL4A6TEUFDKAPL3RSCBKVANCNFSM4LA5I5BA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK254IPD6UKF7EXBFVTRSCBKVA5CNFSM4LA5I5BKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5RJAYQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3499#event-3345125474",
"url": "https://github.com/quicwg/base-drafts/pull/3499#event-3345125474",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1dcaa7be9a_5b163ffcac6cd96c25609a--


From nobody Sun May 17 17:54:10 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 55D613A00C9 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:54:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 BNXd6J6RarNd for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:54:04 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CE62D3A00D8 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:54:03 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 20200A044F for <quic-issues@ietf.org>; Sun, 17 May 2020 17:54:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589763243; bh=z2ya8ta9EhFs9gFIAcwPNpajNTybAXh2vReGwZVAjjU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KARmdaRJOinwTEGG+HEuS3fjm9088x/jtkg7FtfgfQfGqll+vYX/jTx0DT7lcCkX+ Po6aigAsLeUIQZZTJ9lelZX5BpSJaqVi32bnNZIJaatuz0zBc6QR7bfkvGBfRBQVHT X1W40DTNzFSHfKtRGMKi5WrpLycPDqPQsTcdFdvU=
Date: Sun, 17 May 2020 17:54:03 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3MZPMPRNSXT2T4YS54ZW62XEVBNHHCC4LIRI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3439/issue_event/3345125477@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3439@github.com>
References: <quicwg/base-drafts/issues/3439@github.com>
Subject: Re: [quicwg/base-drafts] Authenticating connection IDs (#3439)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1dcab11c3f_23dc3fed9cccd96c37295"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/owY2JxaujYsJliICqp6I4OEmARs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 00:54:05 -0000

----==_mimepart_5ec1dcab11c3f_23dc3fed9cccd96c37295
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3439 via #3499.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3439#event-3345125477
----==_mimepart_5ec1dcab11c3f_23dc3fed9cccd96c37295
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="561080458" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3439" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3439/hovercard" href="https://github.com/quicwg/base-drafts/issues/3439">#3439</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="575176688" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3499" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3499/hovercard" href="https://github.com/quicwg/base-drafts/pull/3499">#3499</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3439#event-3345125477">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4YDT2SKZIV4HSCUKDRSCBKXANCNFSM4KQ6X5HA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYAUNSPTX257NADDKDRSCBKXA5CNFSM4KQ6X5HKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5RJAZI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3439#event-3345125477",
"url": "https://github.com/quicwg/base-drafts/issues/3439#event-3345125477",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1dcab11c3f_23dc3fed9cccd96c37295--


From nobody Sun May 17 17:54:35 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 78C9A3A00D8 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:54:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZztnzENxpvC8 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:54:33 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4FC3E3A00C9 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:54:33 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 5ACFE1C072B for <quic-issues@ietf.org>; Sun, 17 May 2020 17:54:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589763272; bh=6gDcyFxIZ1BJGI/jij9GT1/kHVPA3tJIRNG56QLmThM=; h=Date:From:To:Subject:From; b=Am88RrYTcQalYbD3mLCJtTZpofAZtqTV4e8FCeEXbhTKwFSirWOV0X4F2pdDLfbvB TwQ9rrjooaCHlTNfW00s0+m70GL578brt5m9slG84goVwuiLwaVLTFBX2FOyea+iJ8 rC4ZpnmDrq5ZHP5M0w+U0uM2xT4hWKbJC0RSBbo0=
Date: Sun, 17 May 2020 17:54:32 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ef5a8c-6aed70@github.com>
Subject: [quicwg/base-drafts] 6aed70: Script updating gh-pages from 62103ceb. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6ampq55GNLLBYKNP5j9KMFwsdtM>
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: Mon, 18 May 2020 00:54:34 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6aed707c420a68e252180ae186deb5e97071e181
      https://github.com/quicwg/base-drafts/commit/6aed707c420a68e252180ae186deb5e97071e181
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M authenticate-hs-cid/draft-ietf-quic-http.html
    M authenticate-hs-cid/draft-ietf-quic-http.txt
    M authenticate-hs-cid/draft-ietf-quic-invariants.html
    M authenticate-hs-cid/draft-ietf-quic-invariants.txt
    M authenticate-hs-cid/draft-ietf-quic-qpack.html
    M authenticate-hs-cid/draft-ietf-quic-qpack.txt
    M authenticate-hs-cid/draft-ietf-quic-recovery.html
    M authenticate-hs-cid/draft-ietf-quic-recovery.txt
    M authenticate-hs-cid/draft-ietf-quic-tls.html
    M authenticate-hs-cid/draft-ietf-quic-tls.txt
    M authenticate-hs-cid/draft-ietf-quic-transport.html
    M authenticate-hs-cid/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 62103ceb. [ci skip]



From nobody Sun May 17 17:54:46 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 421C33A00C9 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:54:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 x3mfwMX-f-4p for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:54:44 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 14C5F3A00D5 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:54:44 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 32B408C0911 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:54:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589763283; bh=7cCm5Sy4vv242by3g7vfhxtNl/fkEfrob9oFs2lapFU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=J/4/hUJhyjFOtA0Sd1qUm9UBzbIcp8dyXG5eD34vjsssuiim4IfmWA5WgsSQ360B3 v1ZHyhdyVrckpe77fDm5o+BRAYlR0xm4p2JDjywxbWlei2Cbe/6OMYcGRY/m0Rbhyg NY+3atRRzTjw4B1ZCn++ESp9h0uY2FwCr2PSRHVM=
Date: Sun, 17 May 2020 17:54:43 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6CLNO5GFTKA3XYCR54ZW65HEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/review/413219560@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1dcd322af9_345f3fc0da2cd9602759c2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fl-tuzAjWu1RfWcuR9l7Acy1qIM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 00:54:45 -0000

----==_mimepart_5ec1dcd322af9_345f3fc0da2cd9602759c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> +as the one in this document, that rate can be computed by averaging the
+congestion window over the round-trip time. Expressed as a rate in bytes:
+
+~~~
+rate = N * congestion_window / smoothed_rtt
+~~~
+
+Or, expressed as an inter-packet interval:
+
+~~~
+interval = smoothed_rtt * packet_size / congestion_window / N
+~~~
+
+Using a value for `N` that is small, but at least 1 (for example, 1.25) ensures
+that short-term variations in round-trip time or scheduler delays don't result
+in under-utilization of the congestion window.

SG, I edited to no longer rely on the term ack-clocked.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#discussion_r426326259
----==_mimepart_5ec1dcd322af9_345f3fc0da2cd9602759c2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3630#discussion_r426326259">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; +as the one in this document, that rate can be computed by averaging the
+congestion window over the round-trip time. Expressed as a rate in bytes:
+
+~~~
+rate = N * congestion_window / smoothed_rtt
+~~~
+
+Or, expressed as an inter-packet interval:
+
+~~~
+interval = smoothed_rtt * packet_size / congestion_window / N
+~~~
+
+Using a value for `N` that is small, but at least 1 (for example, 1.25) ensures
+that short-term variations in round-trip time or scheduler delays don&#39;t result
+in under-utilization of the congestion window.
</pre>
<p>SG, I edited to no longer rely on the term ack-clocked.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#discussion_r426326259">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2HLR2PUGUOY2VMKUDRSCBNHANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK26QEXYIKQY46YK2KDRSCBNHA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCQTV2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#discussion_r426326259",
"url": "https://github.com/quicwg/base-drafts/pull/3630#discussion_r426326259",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1dcd322af9_345f3fc0da2cd9602759c2--


From nobody Sun May 17 17:55:00 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 4DED53A00D5 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:54:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 8aulwq9JYked for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 17:54:57 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 46B0E3A00C9 for <quic-issues@ietf.org>; Sun, 17 May 2020 17:54:57 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 658972C0B1F for <quic-issues@ietf.org>; Sun, 17 May 2020 17:54:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589763296; bh=TMyP1boKRECR/qYYCEOmKiZ7lTAvZjjl77SDEfhoJXQ=; h=Date:From:To:Subject:From; b=M7GJqj1d8NoNFBqjh0DrFqZshjbuUFvpSq4JiBAKI6zHbIeL8Yt3EL9SrNxFl+efo K7F5dHVHALIbxro18rsc+xcMx3bruY6jbpRC1GKzZ0OCLJuvedjX7jxJSFuo8up1qi Bo+4Yp0oCSSZCC6CseUM12x8mSC7E5yEfBLcpIaY=
Date: Sun, 17 May 2020 17:54:56 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6aed70-d6a6db@github.com>
Subject: [quicwg/base-drafts] d6a6db: Script updating gh-pages from e8531a05. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wuFvF1kqYLXr4EutQEwcEaoVkcw>
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: Mon, 18 May 2020 00:54:58 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d6a6db4efad46e987e31b8e056d32ebd99c4fe96
      https://github.com/quicwg/base-drafts/commit/d6a6db4efad46e987e31b8e056d32ebd99c4fe96
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from e8531a05. [ci skip]



From nobody Sun May 17 18:08:30 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 82E373A02BB for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:08:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 8s_3i_mSmD2z for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:08:27 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6D0943A0147 for <quic-issues@ietf.org>; Sun, 17 May 2020 18:08:27 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 9C280E05E3 for <quic-issues@ietf.org>; Sun, 17 May 2020 18:08:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589764106; bh=y7oK3NSXXHsgGtiRellMefDT2d+XBz0QFXdRkHuREt4=; h=Date:From:To:Subject:From; b=JGBcYezdZ+5xatJ0uHg3W8nU4HUa0kOLzb5yYK0rDSu6PUNm0+5XB+7ZKoyHCueBk 6t+fVhdC/8isVfpSMavnAE1Jvdyltl2Sicp6PEGiXMro14rmadCTMnxAy4Rf1eWf/m wjMz6iGTRL7X5KYijyEv4YxdgvaZJe9a3DW0/JhA=
Date: Sun, 17 May 2020 18:08:26 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/e8531a-c1d061@github.com>
Subject: [quicwg/base-drafts] c1d061: You might not get an ACK anyway
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Yzh-_xw5GEdhi0eGF1ZrZBTUVGM>
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: Mon, 18 May 2020 01:08:29 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: c1d0618c49042fca119c84f5d767b086efc459ab
      https://github.com/quicwg/base-drafts/commit/c1d0618c49042fca119c84f5d767b086efc459ab
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  You might not get an ACK anyway

Closes #3480.



From nobody Sun May 17 18:08:40 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 C09993A02BC for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:08:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.498
X-Spam-Level: 
X-Spam-Status: No, score=-0.498 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 i0LzV2mm1lST for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:08:38 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EAC083A02BB for <quic-issues@ietf.org>; Sun, 17 May 2020 18:08:37 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 9FA121212BA for <quic-issues@ietf.org>; Sun, 17 May 2020 18:08:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589764117; bh=9gGIBCZ189W0m0+sdHT1cCBN5DP9fw8WjVzY1GKjsxU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xHG/snUaHPK1OEZVAvzIkSJwEpZr9qQYY9LYN8AwyHhSaw3yptpQqfWZXjO4lgoSc +VUEKc09nZ20vPj0SxBB61DlISY+zzK0h7L+y7yq2HqL17VHNuiZmju0OQaIw84rZT G2cdDtHfrNkOhm2P3LyoReO2vKhfkco6bmAkeHlQ=
Date: Sun, 17 May 2020 18:08:37 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2ONHILVKKBEMGK3CN4ZXARLEVBNHHCD6AV3A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3480/issue_event/3345142161@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3480@github.com>
References: <quicwg/base-drafts/issues/3480@github.com>
Subject: Re: [quicwg/base-drafts] Clarify ACK sending text in transport (#3480)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1e015595fb_abe3f93d58cd96444885a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Hn2QOMMtdGg5dP4INu00Qdz3S98>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 01:08:39 -0000

----==_mimepart_5ec1e015595fb_abe3f93d58cd96444885a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3480 via c1d0618c49042fca119c84f5d767b086efc459ab.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3480#event-3345142161
----==_mimepart_5ec1e015595fb_abe3f93d58cd96444885a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="569906648" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3480" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3480/hovercard" href="https://github.com/quicwg/base-drafts/issues/3480">#3480</a> via <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/quicwg/base-drafts/commit/c1d0618c49042fca119c84f5d767b086efc459ab/hovercard" href="https://github.com/quicwg/base-drafts/commit/c1d0618c49042fca119c84f5d767b086efc459ab"><tt>c1d0618</tt></a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3480#event-3345142161">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK63E7QXCYANZQWV4ZLRSCDBLANCNFSM4K2JWR6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6XVRG6PZRVZKIMXF3RSCDBLA5CNFSM4K2JWR62YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY5RNDEI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3480#event-3345142161",
"url": "https://github.com/quicwg/base-drafts/issues/3480#event-3345142161",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1e015595fb_abe3f93d58cd96444885a--


From nobody Sun May 17 18:09:28 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 1A3563A02BE for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:09:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 TKsPPjdtjstc for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:09:26 -0700 (PDT)
Received: from out-13.smtp.github.com (out-13.smtp.github.com [192.30.254.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 262893A02BC for <quic-issues@ietf.org>; Sun, 17 May 2020 18:09:26 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id D3915261405 for <quic-issues@ietf.org>; Sun, 17 May 2020 18:09:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589764165; bh=2AmzIfQgdjEVkDDQaw3/NWrLAAoW1EqLrNykYGvZhgA=; h=Date:From:To:Subject:From; b=QERI/4M4BG0dn+9WqmqBMfveJ48ychAvHAM9C8T9zwtd6GsnN4vhVVvZMnjtnO+Ds 345QvRGzmrxmOMPj5d3axWKv2uNawHVcdKNcDErEq2V3XPbc7H+9i/jsQF3Rx6uyT0 wbib+C8ZKQRy7VJkm/SN82c7UYzx3EhxjWgEM7MI=
Date: Sun, 17 May 2020 18:09:25 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d6a6db-2b9c4c@github.com>
Subject: [quicwg/base-drafts] 2b9c4c: Script updating gh-pages from c1d0618c. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7VeygKzvbVAf1q5GKQsZdCn-vaQ>
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: Mon, 18 May 2020 01:09:27 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2b9c4c06407ca403cf7dc857581d6d122a726fba
      https://github.com/quicwg/base-drafts/commit/2b9c4c06407ca403cf7dc857581d6d122a726fba
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c1d0618c. [ci skip]



From nobody Sun May 17 18:27:30 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 7E0573A0442 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:27:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.2
X-Spam-Level: 
X-Spam-Status: No, score=-0.2 tagged_above=-999 required=5 tests=[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 5hRwbUkbXoIc for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:27:27 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7C0EB3A0437 for <quic-issues@ietf.org>; Sun, 17 May 2020 18:27:27 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id C90D39602AF for <quic-issues@ietf.org>; Sun, 17 May 2020 18:27:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589765244; bh=qJvN/yZ3oXC1fkw1kPLkHzUnQYPfyXMymEvwHsU8w3Y=; h=Date:From:To:Subject:From; b=QTv2LRSDPD1PZTcPhMt8hIe/jGGeCG6qbKyHctyAsHwmHwSJZwCKfZEqVJUJ2zVxW 6nxlC6d+pPG/SVxB6tEYO2mG1HHNWx/tAhGYbCLY+TBbwJBeGCuxcZaim41226ZF7E gDbRQ/GxEeCs3KwOvuBfhDv7+XEThJuM5cZmqlpA=
Date: Sun, 17 May 2020 18:27:24 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/42a1dd-b0a1b1@github.com>
Subject: [quicwg/base-drafts] b0a1b1: ack-clocking
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ItO1peracLf-qag7qPxB3PitCCk>
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: Mon, 18 May 2020 01:27:29 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: b0a1b1c0db25b4971df0078f14fe68bb50b5da9b
      https://github.com/quicwg/base-drafts/commit/b0a1b1c0db25b4971df0078f14fe68bb50b5da9b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  ack-clocking

Co-authored-by: ianswett <ianswett@users.noreply.github.com>



From nobody Sun May 17 18:27:36 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 3DFB03A045B for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:27:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 QfXmf_j_RCif for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:27:33 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B8A8E3A0442 for <quic-issues@ietf.org>; Sun, 17 May 2020 18:27:33 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id DEE0B66098E for <quic-issues@ietf.org>; Sun, 17 May 2020 18:27:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589765252; bh=/Yns49UsxkwhCCnhQ1pWw/kYoQDYNKCc8yvWKoD0d2E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Hdplor700PFiH+Rw/yxAVoEyesTjK+wWtZLiKQoFnTS2p4DSIBbaCwG30LfGwXktx Xd0sSSRAHCPaSFKFwk0ojSpeb+cWWMZmRqq7HBlbKOQ6ck0Hgsw/tVlFPQtquOk4vs YB3KfodrHDiiNUw8jQJS/Ssd1CkJzD/pPWAN3l7U=
Date: Sun, 17 May 2020 18:27:32 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/push/5087187930@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1e484cecf4_163d3feec12cd9644916de"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eScXY2Si82noEDavOznvUphGCEs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 01:27:35 -0000

----==_mimepart_5ec1e484cecf4_163d3feec12cd9644916de
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

b0a1b1c0db25b4971df0078f14fe68bb50b5da9b  ack-clocking


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630/files/42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe..b0a1b1c0db25b4971df0078f14fe68bb50b5da9b

----==_mimepart_5ec1e484cecf4_163d3feec12cd9644916de
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/b0a1b1c0db25b4971df0078f14fe68bb50b5da9b">b0a1b1c</a>  ack-clocking</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3630/files/42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe..b0a1b1c0db25b4971df0078f14fe68bb50b5da9b">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZKPAEP6KN6GWPOX4DRSCFIJANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4FPP7YR3TXYCIRXSDRSCFIJA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTGOBYGMYDOOKQOVZWQIZVGA4DOMJYG44TGMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630/files/42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe..b0a1b1c0db25b4971df0078f14fe68bb50b5da9b",
"url": "https://github.com/quicwg/base-drafts/pull/3630/files/42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe..b0a1b1c0db25b4971df0078f14fe68bb50b5da9b",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec1e484cecf4_163d3feec12cd9644916de--


From nobody Sun May 17 18:30:54 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 CF9213A05A0 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:30:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 Xr2tbmnCltUH for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:30:51 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C97043A048A for <quic-issues@ietf.org>; Sun, 17 May 2020 18:30:51 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id F38706E1247 for <quic-issues@ietf.org>; Sun, 17 May 2020 18:30:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589765450; bh=g0iYG+XnSHgHVf6/KHd04ywqMvlMu8dVneWMwhE8w5s=; h=Date:From:To:Subject:From; b=OfWWTmzeA7nsoidqjYawEPCH183yuFKlF7BcA3vOEu+1ZAFE7Yi9ssIb/eA9qCtEP Eeb1koefZm7KZR2pgQZyh/K91mh7lDoEK5HtQOZQUJKkzLSskn5pmUnmSBboqu+Kqo pIklcGHWrO3o6YzxA+uZyZTxl4SU5MvNYaMBwruY=
Date: Sun, 17 May 2020 18:30:50 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/b0a1b1-a320b5@github.com>
Subject: [quicwg/base-drafts] a320b5: Reword ack-clocking again
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MbURqm8I2sPWO77kzphRGUYtemk>
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: Mon, 18 May 2020 01:30:53 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts
  Commit: a320b5463d042d2cfdf6b20a2278025687670fe6
      https://github.com/quicwg/base-drafts/commit/a320b5463d042d2cfdf6b20a2278025687670fe6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Reword ack-clocking again



From nobody Sun May 17 18:31:03 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 844483A05A0 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:31:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ot3N9q7cesOs for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:31:01 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5E1C33A048A for <quic-issues@ietf.org>; Sun, 17 May 2020 18:31:01 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id E44E1A0122 for <quic-issues@ietf.org>; Sun, 17 May 2020 18:30:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589765459; bh=Yvw8K/qZ3h3WwL3Iry/OLRN5HubXwIAqIQc4AWoJzIM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nwrOZv5b1FVj18gka54lTSjswX7u0aLDU8g0sPeGE3cqsbn8P9CVwu4tobZFl5Lrm PQt2GJz0AaGpWSPvhQcwEa+nSPFIJaDXbbclS+imKZGVH8eZLakvcMYS4pFEN6w8LH tz7Zuwm5gFITSoIkg8RphNWnSpDtYltTiWzN56Q8=
Date: Sun, 17 May 2020 18:30:59 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/push/5087196009@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1e553d4e15_1d573fbcf80cd95c296265"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IEQrxX2HD54pN_eoBzyprvkQAKI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 01:31:03 -0000

----==_mimepart_5ec1e553d4e15_1d573fbcf80cd95c296265
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

a320b5463d042d2cfdf6b20a2278025687670fe6  Reword ack-clocking again


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630/files/b0a1b1c0db25b4971df0078f14fe68bb50b5da9b..a320b5463d042d2cfdf6b20a2278025687670fe6

----==_mimepart_5ec1e553d4e15_1d573fbcf80cd95c296265
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/a320b5463d042d2cfdf6b20a2278025687670fe6">a320b54</a>  Reword ack-clocking again</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3630/files/b0a1b1c0db25b4971df0078f14fe68bb50b5da9b..a320b5463d042d2cfdf6b20a2278025687670fe6">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7UKIRAJCPRKERCXPLRSCFVHANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5XNNGD7OUSLBN6Z63RSCFVHA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTGOBYGMYDOOKQOVZWQIZVGA4DOMJZGYYDAOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630/files/b0a1b1c0db25b4971df0078f14fe68bb50b5da9b..a320b5463d042d2cfdf6b20a2278025687670fe6",
"url": "https://github.com/quicwg/base-drafts/pull/3630/files/b0a1b1c0db25b4971df0078f14fe68bb50b5da9b..a320b5463d042d2cfdf6b20a2278025687670fe6",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec1e553d4e15_1d573fbcf80cd95c296265--


From nobody Sun May 17 18:31:15 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 0A6E73A0602 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:31:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.428
X-Spam-Level: 
X-Spam-Status: No, score=0.428 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=1.629, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 LWbDYiSas4KM for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:31:13 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1A1083A05A0 for <quic-issues@ietf.org>; Sun, 17 May 2020 18:31:13 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id 6BF95660189 for <quic-issues@ietf.org>; Sun, 17 May 2020 18:31:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589765472; bh=I87kUPN0b0p3CZ/IzSb2kH1EquhVUgMIWmfJa74GXzg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wH/TeiO3mv3nV1/ArguuY/wmxMZlU/+AlcLQcAYwmVeVf3uuv6Dd8+he0IpwQLtEW xJ1qvc5U3EdkxTS3yfH//vFy8pkHFpoYNY8Spi7XYqUGRYdHSWMRq3g/5rrbvrlVc4 dPU4CIqUx4u/BT7ppjJU1dSAs2gFQhHxzqwzpuG8=
Date: Sun, 17 May 2020 18:31:12 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYDRBCN4MIPLRKG2WN4ZXDGBEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/c629898522@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1e5605c606_51c93fb1800cd96c62517c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/c4sARMBOxQaoIrWtrEB3LLlhkis>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 01:31:14 -0000

----==_mimepart_5ec1e5605c606_51c93fb1800cd96c62517c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I reflowed, then reworded to s/timer/alarm and explain a little more.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#issuecomment-629898522
----==_mimepart_5ec1e5605c606_51c93fb1800cd96c62517c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I reflowed, then reworded to s/timer/alarm and explain a little more.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#issuecomment-629898522">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6ACS6KZC7B4KHHD53RSCFWBANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4DSP3PNOF3PG7ZWG3RSCFWBA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWFX2GQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-629898522",
"url": "https://github.com/quicwg/base-drafts/pull/3630#issuecomment-629898522",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1e5605c606_51c93fb1800cd96c62517c--


From nobody Sun May 17 18:31:39 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 7CD693A0659 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:31:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 7JJ-HrP-37Yn for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 18:31:37 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 744C63A064A for <quic-issues@ietf.org>; Sun, 17 May 2020 18:31:37 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id C5A356E13A7 for <quic-issues@ietf.org>; Sun, 17 May 2020 18:31:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589765496; bh=1bnmddNI9Vjn/ag9UZkTPYvNVwYPjT6IaIDKKTtBbOk=; h=Date:From:To:Subject:From; b=MuloJDCS7FZiIReKNs2V70eR7NDLf0Q3YUS0efYGj+5Mq69gAw0JjPy86PieGjsZR H/Ar7aAb5YR/Av3g8xoQiAuyF2aveDgFYQg5McrOlkJLySVEaq1hBdej1wWAfAkNaQ QhIH51yrMNxrE+sP5DxSWm/xLIZUZOgC6Yse5b2w=
Date: Sun, 17 May 2020 18:31:36 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/2b9c4c-196fb5@github.com>
Subject: [quicwg/base-drafts] 196fb5: Script updating gh-pages from a320b546. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TUtHOoCGN-5eAdCl3lEpKkUVHZw>
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: Mon, 18 May 2020 01:31:39 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 196fb5715687ad0164122a2355e35040b7d69866
      https://github.com/quicwg/base-drafts/commit/196fb5715687ad0164122a2355e35040b7d69866
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M index.html
    M pacing-dfn/draft-ietf-quic-http.html
    M pacing-dfn/draft-ietf-quic-http.txt
    M pacing-dfn/draft-ietf-quic-invariants.html
    M pacing-dfn/draft-ietf-quic-invariants.txt
    M pacing-dfn/draft-ietf-quic-qpack.html
    M pacing-dfn/draft-ietf-quic-qpack.txt
    M pacing-dfn/draft-ietf-quic-recovery.html
    M pacing-dfn/draft-ietf-quic-recovery.txt
    M pacing-dfn/draft-ietf-quic-tls.html
    M pacing-dfn/draft-ietf-quic-tls.txt
    M pacing-dfn/draft-ietf-quic-transport.html
    M pacing-dfn/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from a320b546. [ci skip]



From nobody Sun May 17 19:16:00 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 84ACE3A07D6 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 19:15:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.475
X-Spam-Level: 
X-Spam-Status: No, score=-0.475 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=0.726, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 OGQxjHAtyJvQ for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 19:15:57 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1CB1F3A07D5 for <quic-issues@ietf.org>; Sun, 17 May 2020 19:15:56 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id CB2F552041C for <quic-issues@ietf.org>; Sun, 17 May 2020 19:15:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589768155; bh=wsRwDVT0063DzIEuUIXufHiCS2asWHriuUi6FazBuGs=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ajXRgoIAO4xJy8Y5t0tNKiOPYRiukRgZHwhmQirT9Cs51NtVX3arfkqePwkjIQ4lD OApSWRi27tYTge8I8EYc0gt4rg1fXUMDo+onAn9heT8BL89N3CFqSLnZ+GKCuh4c+k l8LX0368gIh5//UcHMgvd7ysguJZm64Lj8iI8Jis=
Date: Sun, 17 May 2020 19:15:55 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZIIJ7FISJ3TFVGPT54ZXINXEVBNHHCJ4SOLY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3662@github.com>
Subject: [quicwg/base-drafts] Forgery attacks and updated keys (#3662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1efdbb95f5_52083feba92cd95c7251f5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OwepeLZIJ8YKRfnW0n4jaGx7u0I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 02:15:59 -0000

----==_mimepart_5ec1efdbb95f5_52083feba92cd95c7251f5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@chris-wood pointed out to me that when you receive junk (i.e., unauthenticated) packets, the odds are that these will be distributed evenly between the "current" packet protection keys and the "next" packet protection keys, as the key phase bit will be nearly random if they are true forgeries.

The result is that an endpoint that approaches the integrity limit on key usage will update to the next packet protection keys and find that those keys will have similar amounts of authentication failures.  That might lead to needing two updates in quick succession.  That isn't fatal, but if the timing is tight, then more time might be needed for an update.

We might say that endpoints shouldn't be calculating the forgery rate and trying to delay updates as late as possible, nor should they be allowing that many forgeries without doing anything but react with key updates.  However, as a matter of good hygiene, it's worth saying something about this.

Taking this as an editorial follow-on to #3620.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3662
----==_mimepart_5ec1efdbb95f5_52083feba92cd95c7251f5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/chris-wood/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/chris-wood">@chris-wood</a> pointed out to me that when you receive junk (i.e., unauthenticated) packets, the odds are that these will be distributed evenly between the "current" packet protection keys and the "next" packet protection keys, as the key phase bit will be nearly random if they are true forgeries.</p>
<p>The result is that an endpoint that approaches the integrity limit on key usage will update to the next packet protection keys and find that those keys will have similar amounts of authentication failures.  That might lead to needing two updates in quick succession.  That isn't fatal, but if the timing is tight, then more time might be needed for an update.</p>
<p>We might say that endpoints shouldn't be calculating the forgery rate and trying to delay updates as late as possible, nor should they be allowing that many forgeries without doing anything but react with key updates.  However, as a matter of good hygiene, it's worth saying something about this.</p>
<p>Taking this as an editorial follow-on to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="610583029" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3620" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3620/hovercard" href="https://github.com/quicwg/base-drafts/pull/3620">#3620</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3662">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6J5S6AS6TLEPPGECLRSCK5XANCNFSM4NDVMHEQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6YUBWHXNXTT4E7VCLRSCK5XA5CNFSM4NDVMHE2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JHSJZPA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3662",
"url": "https://github.com/quicwg/base-drafts/issues/3662",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1efdbb95f5_52083feba92cd95c7251f5--


From nobody Sun May 17 19:44:17 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 54B473A0831 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 19:44:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.081
X-Spam-Level: 
X-Spam-Status: No, score=0.081 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.282, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 uL6fXmp1upeG for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 19:44:15 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 058143A082E for <quic-issues@ietf.org>; Sun, 17 May 2020 19:44:14 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 191E1A0841 for <quic-issues@ietf.org>; Sun, 17 May 2020 19:44:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589769854; bh=SCUvna8QYMQNGeAAmYT9nOvg/t2rHZ8ky7tlYt+rQZc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=l8dOn5Lxgha2GnBx8RpKsS8G4eBrbjFsN5Q5GS+vIxVfyctzKhK7uV/CLmsBprDFG CzYWCCB7C+Ji6qGQc9vckCApO/TSI7+2nh1f3uhLqzp4i88eYDMSl4gnljxFzMYWSM 4zFigH50SiG4zOMDY281wYTdSXrjLcqt0SHEQvZI=
Date: Sun, 17 May 2020 19:44:14 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7M7OFQ5ZO6BA2YIGN4ZXLX5EVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/629915539@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1f67e8faa_572f3fe58fccd9684366a3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-ffbePx5Kt3z4STZfxkGg423lAs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 02:44:16 -0000

----==_mimepart_5ec1f67e8faa_572f3fe58fccd9684366a3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As this has sat here a while, I'll reiterate my proposal again: we defer the ability to signal "I support migration, but only on my preferred address" to an extension.

Which means that disable_active_migration applies to both the original address and SPA, so answer the question (sorry Ian, I missed that).

I realize that you could change the meaning of disable_active_migration to apply to the address the server uses in the handshake, but there are interesting corner cases and I don't think we need to concern ourselves with those.  For instance, if you connect over V4 and get disable_active_migration and server_preferred_address.  If that SPA includes a V6 address you can't use, along with the same V4 address, what then?  Does the server really support migration?

I know that the current situation is unappealing, and I think that disable_active_migration is not good for the protocol.  But it exists for very good reasons.  Trying to limit the scope is admirable, but as we haven't seen a concrete proposal, I think we need to move on.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-629915539
----==_mimepart_5ec1f67e8faa_572f3fe58fccd9684366a3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>As this has sat here a while, I'll reiterate my proposal again: we defer the ability to signal "I support migration, but only on my preferred address" to an extension.</p>
<p>Which means that disable_active_migration applies to both the original address and SPA, so answer the question (sorry Ian, I missed that).</p>
<p>I realize that you could change the meaning of disable_active_migration to apply to the address the server uses in the handshake, but there are interesting corner cases and I don't think we need to concern ourselves with those.  For instance, if you connect over V4 and get disable_active_migration and server_preferred_address.  If that SPA includes a V6 address you can't use, along with the same V4 address, what then?  Does the server really support migration?</p>
<p>I know that the current situation is unappealing, and I think that disable_active_migration is not good for the protocol.  But it exists for very good reasons.  Trying to limit the scope is admirable, but as we haven't seen a concrete proposal, I think we need to move on.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-629915539">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6TQQ6AR5MHQFM2DATRSCOH5ANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7X3CFXDK5R3BOF4ATRSCOH5A5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWF37EY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-629915539",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-629915539",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1f67e8faa_572f3fe58fccd9684366a3--


From nobody Sun May 17 19:47:37 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 BB2323A083B for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 19:47:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 C70zIJWqMsSI for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 19:47:34 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ACD053A0837 for <quic-issues@ietf.org>; Sun, 17 May 2020 19:47:34 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 3D518661E1D for <quic-issues@ietf.org>; Sun, 17 May 2020 19:47:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589770053; bh=eOZCBRfi/mZPZMHh2O8JjGnVQoxkq4jCTGsj0YeSq/E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kgq5CcRidY9UBAxwI1TPEgqeONelt+iOwbzVeTgzE5DdtejyCXsLp9DJG0dxj6lCr Pr+3JIv9CZQSFYhu3i8QnAKqBVhKKJk4cLODBcjtJzNSlCz6U0GcF/LGg82Z/a2/VG OedAE4RKKooctMDL5mY0MNwNGWYdn2GUKhuwwaCE=
Date: Sun, 17 May 2020 19:47:33 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5QWHSDHZJ33ZJ3CJN4ZXMELEVBNHHCIVAFGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3613/629916342@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3613@github.com>
References: <quicwg/base-drafts/issues/3613@github.com>
Subject: Re: [quicwg/base-drafts] Review conditions for PTO arming around end of handshake (#3613)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec1f7452d334_4a03ff231acd95c1151795"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Isp8IcQ8e3lZjT98WYR2ncFEKyM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 02:47:36 -0000

----==_mimepart_5ec1f7452d334_4a03ff231acd95c1151795
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett can we get a status update?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3613#issuecomment-629916342
----==_mimepart_5ec1f7452d334_4a03ff231acd95c1151795
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ianswett/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</a> can we get a status update?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3613#issuecomment-629916342">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYKQTETUBDOM2QIGUDRSCOULANCNFSM4MVCFPRA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK26RE2UT4KXTXTDH2TRSCOULA5CNFSM4MVCFPRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWF4FNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3613#issuecomment-629916342",
"url": "https://github.com/quicwg/base-drafts/issues/3613#issuecomment-629916342",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec1f7452d334_4a03ff231acd95c1151795--


From nobody Sun May 17 20:52:59 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 F25153A08CD for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 20:52:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.082
X-Spam-Level: 
X-Spam-Status: No, score=0.082 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.282, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 pukAczEf_jpW for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 20:52:56 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B47613A08CC for <quic-issues@ietf.org>; Sun, 17 May 2020 20:52:56 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id E8C3D9604FE for <quic-issues@ietf.org>; Sun, 17 May 2020 20:52:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589773974; bh=VWQdhQZmcgbg9fu+DFjQ2iRKtboFLzG96MSZe4dIlF8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hpuxWl18XdpOQFrh0w4zJBdh1Bb9crQWnt74FoTNoI6FLHzRIvF6G1fKtbA5MOFy2 vZwGYhSdl4WVF6+WLK1isHJUHqWVr1a76PeZHUyhVZ1STuD2n0WDObVBsDP2iNVjD4 M52JcRi/RYyHHIpljwc3r9UJFNe+4cm1q8MALv9s=
Date: Sun, 17 May 2020 20:52:54 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3W2LB7H57PSCMFFVV4ZXTZNEVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/629930947@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec20696d9df7_345a3fc0da2cd9604479d3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7fPydTXJPDe0274I8njIOy7IpRw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 03:52:58 -0000

----==_mimepart_5ec20696d9df7_345a3fc0da2cd9604479d3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson 
> I realize that you could change the meaning of disable_active_migration to apply to the address the server uses in the handshake, but there are interesting corner cases and I don't think we need to concern ourselves with those. For instance, if you connect over V4 and get disable_active_migration and server_preferred_address. If that SPA includes a V6 address you can't use, along with the same V4 address, what then? Does the server really support migration?

If this example is concerning, I'd argue that is an issue that already exists, orthogonal to what we are discussing here. I am still not convinced that limiting the scope of disable_active_migration to just the original address is going to cause any _new_ issue.

That said, if nobody needs this change, I'm more than happy to move on with status-quo.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-629930947
----==_mimepart_5ec20696d9df7_345a3fc0da2cd9604479d3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a></p>
<blockquote>
<p>I realize that you could change the meaning of disable_active_migration to apply to the address the server uses in the handshake, but there are interesting corner cases and I don't think we need to concern ourselves with those. For instance, if you connect over V4 and get disable_active_migration and server_preferred_address. If that SPA includes a V6 address you can't use, along with the same V4 address, what then? Does the server really support migration?</p>
</blockquote>
<p>If this example is concerning, I'd argue that is an issue that already exists, orthogonal to what we are discussing here. I am still not convinced that limiting the scope of disable_active_migration to just the original address is going to cause any <em>new</em> issue.</p>
<p>That said, if nobody needs this change, I'm more than happy to move on with status-quo.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-629930947">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5Z6RVEAA4XDCEB4X3RSCWJNANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYYVZ4Q7NTFUP4T5PLRSCWJNA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWF7XQY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-629930947",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-629930947",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec20696d9df7_345a3fc0da2cd9604479d3--


From nobody Sun May 17 22:10:43 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 6AFDD3A0659 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 22:10:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 n-frZQHG5-zc for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 22:10:41 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 604D13A073D for <quic-issues@ietf.org>; Sun, 17 May 2020 22:10:41 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 7828D2C0B11 for <quic-issues@ietf.org>; Sun, 17 May 2020 22:10:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589778640; bh=wcaXjokhpabxqdY3Uh8Kk/InWfAwcBRhGqR/X46Ri6s=; h=Date:From:To:Subject:From; b=xK4V/M85YKmpjURDUHlNrUM0SGbtQQyo7bvz5/So1C/o24HwVngkG3bZPCn32O/jt L3DI4qdEQLFs2+Ye5T4eMxb8KZx2Df5JrZYOOyVgT+soprJWDcm/eRysBknTO5CIKZ b+Y9Y9g1mZLA2rgbyWKx4R5DtrSHcwdJrkfeafmE=
Date: Sun, 17 May 2020 22:10:40 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/example-28/000000-e04411@github.com>
Subject: [quicwg/base-drafts] e04411: Update examples for -28
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_57gQF9wy9FNmkUVzDm-UI9IUXk>
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: Mon, 18 May 2020 05:10:42 -0000

  Branch: refs/heads/example-28
  Home:   https://github.com/quicwg/base-drafts
  Commit: e044112b34f1f19d334faed02c1594208c4eb56e
      https://github.com/quicwg/base-drafts/commit/e044112b34f1f19d334faed02c1594208c4eb56e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md
    M protection-samples.js

  Log Message:
  -----------
  Update examples for -28



From nobody Sun May 17 22:11:29 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 4326D3A073E for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 22:11:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[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] 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 oa_OtNaX7mrO for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 22:11:27 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 21D8C3A073D for <quic-issues@ietf.org>; Sun, 17 May 2020 22:11:26 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 3C71B96056D for <quic-issues@ietf.org>; Sun, 17 May 2020 22:11:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589778686; bh=MJxf5orqGc+eVMv/+TgnOQ3ZeabRg3Li7q5cKnaQzx8=; h=Date:From:To:Subject:From; b=EPz1mG/R3eyNgqAg/GQHclZASE6TwzY18/qI/IpLOjSsfl9UGUCo+cYkCtWPUZ215 0Kgw+T/QmoLsOa7dYevAnCDZHNT4FGfdzqyqd/uIwRrFfHG9YpRwjJFtPICLJnCARP H4datIcDNN/sjRWVb4NNKys+k7vV82VoX0c2zMGw=
Date: Sun, 17 May 2020 22:11:26 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/196fb5-9f8a8c@github.com>
Subject: [quicwg/base-drafts] 9f8a8c: Script updating gh-pages from e044112b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/N0GQcQ-XFihAxXLyURy1lY2ZDiA>
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: Mon, 18 May 2020 05:11:28 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9f8a8c586e80b575fff38241680429fedcf97726
      https://github.com/quicwg/base-drafts/commit/9f8a8c586e80b575fff38241680429fedcf97726
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    A example-28/draft-ietf-quic-http.html
    A example-28/draft-ietf-quic-http.txt
    A example-28/draft-ietf-quic-invariants.html
    A example-28/draft-ietf-quic-invariants.txt
    A example-28/draft-ietf-quic-qpack.html
    A example-28/draft-ietf-quic-qpack.txt
    A example-28/draft-ietf-quic-recovery.html
    A example-28/draft-ietf-quic-recovery.txt
    A example-28/draft-ietf-quic-tls.html
    A example-28/draft-ietf-quic-tls.txt
    A example-28/draft-ietf-quic-transport.html
    A example-28/draft-ietf-quic-transport.txt
    A example-28/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from e044112b. [ci skip]



From nobody Sun May 17 22:11:35 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 E1E8E3A076C for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 22:11:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 8dQUx9tB9vqB for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 22:11:31 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9BE1E3A0747 for <quic-issues@ietf.org>; Sun, 17 May 2020 22:11:31 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id DE168C60B3F for <quic-issues@ietf.org>; Sun, 17 May 2020 22:11:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589778690; bh=KM54l0+5DCNs4/c/RochETBeO3B0LYaFEnKdRWqZgmA=; h=Date:From:To:Subject:From; b=I5DfDDKwbm4aMibBjhTgq17nYlNjDkQKhUDnj9b9bRSholTwyNTsm7LXkpK1W5l8y 7+WWo1RiSa/aObFsHJ1qlB4wCo6RA5UQFcAG4voNIOQDfCe7AiMFH6/aUZSyPoB8rO vOzRKUg2BFJVu/ICRGKdDP+y7MBMKsr/ffGQ2bPE=
Date: Sun, 17 May 2020 22:11:30 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/9f8a8c-8e0153@github.com>
Subject: [quicwg/base-drafts] 8e0153: Script updating archive at 2020-05-18T05:11:15Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IpmgIUIUCSGoRyfl0MZj2S-Bpjg>
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: Mon, 18 May 2020 05:11:33 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8e015357968756e6fb16e147019907a04c6d19b7
      https://github.com/quicwg/base-drafts/commit/8e015357968756e6fb16e147019907a04c6d19b7
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M issues.js

  Log Message:
  -----------
  Script updating archive at 2020-05-18T05:11:15Z. [ci skip]



From nobody Sun May 17 22:11:37 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 16CE63A0769 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 22:11:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.082
X-Spam-Level: 
X-Spam-Status: No, score=0.082 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.282, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 Ht0Au6LfmjmY for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 22:11:32 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C082E3A0763 for <quic-issues@ietf.org>; Sun, 17 May 2020 22:11:32 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id D419D660049 for <quic-issues@ietf.org>; Sun, 17 May 2020 22:11:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589778691; bh=+EZPVw+1Wlnk5CfNAqd55jR1b4XXEq25HRwC66AVDx4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ipw0sSRT8CcrQOqsAbgEF72gYqL5UgOsvisnOqySoJqeKbPoVKykBtzMd8YlPXjak cah50x2VfQT7UJ9RH+qQx/Ssb/Tc+BFlSZ8pUHoyvWivXnUXxtfoieViCHxMI81vlw TMNanbsNgRNiA8xrI0mc+GeniX4verGaTox+2s9o=
Date: Sun, 17 May 2020 22:11:31 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6RHFPZ7GDQTWDWQC54ZX5AHEVBNHHCJ4Y7IQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3663@github.com>
Subject: [quicwg/base-drafts] Update examples for -28 (#3663)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec21903c2f8c_16bb3f843c0cd96087817"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DINEBninoctPVkif864HnzacKsU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 05:11:34 -0000

----==_mimepart_5ec21903c2f8c_16bb3f843c0cd96087817
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Yep, it&#39;s coming!
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3663

-- Commit Summary --

  * Update examples for -28

-- File Changes --

    M draft-ietf-quic-tls.md (26)
    M protection-samples.js (11)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3663.patch
https://github.com/quicwg/base-drafts/pull/3663.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3663

----==_mimepart_5ec21903c2f8c_16bb3f843c0cd96087817
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Yep, it's coming!</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3663'>https://github.com/quicwg/base-drafts/pull/3663</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Update examples for -28</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3663/files#diff-afdf56cd6ee6d10d94d669541f99bc07">draft-ietf-quic-tls.md</a>
    (26)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3663/files#diff-80cce5c734d7e16114de208a20278ff7">protection-samples.js</a>
    (11)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3663.patch'>https://github.com/quicwg/base-drafts/pull/3663.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3663.diff'>https://github.com/quicwg/base-drafts/pull/3663.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3663">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7S6MS4KTY2H4XFE6TRSC7QHANCNFSM4NDXYEQQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYRE4XOB37D7FTW3CLRSC7QHA5CNFSM4NDXYEQ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JHTD5CA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3663",
"url": "https://github.com/quicwg/base-drafts/pull/3663",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec21903c2f8c_16bb3f843c0cd96087817--


From nobody Sun May 17 23:00:59 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 3F0213A0837 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 23:00:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 s2iKm7Lpa9tg for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 23:00:54 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2E6F03A083B for <quic-issues@ietf.org>; Sun, 17 May 2020 23:00:54 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id EC9B78C003A for <quic-issues@ietf.org>; Sun, 17 May 2020 23:00:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589781652; bh=N5iP4nZh9cy3W7R8s253lq0zmP93Hbebf5DQXCHL8h8=; h=Date:From:To:Subject:From; b=fqqqh+EqysqhXAD5R9a9cL7bF2ICj06Hmv+Vdrjm76wcK4yMvTqEQ9irShHjKw6lY fFx8/B4QDppYAhKddjCxoy4vOMrC2Bs7dcW/JK+EZ30F0m4J3uEzQ3UoWZrbYo4RU1 OXIdb5P+njI2Qcd6jnJDlqjm+hcopnw1L2QKDJew=
Date: Sun, 17 May 2020 23:00:52 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/changelog-28/000000-fa0d5d@github.com>
Subject: [quicwg/base-drafts] e74794: Transport and TLS changelog for -28
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gaSOr6rC7HnMKbwwUZUB5yFv-8A>
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: Mon, 18 May 2020 06:00:57 -0000

  Branch: refs/heads/changelog-28
  Home:   https://github.com/quicwg/base-drafts
  Commit: e7479497b8d6aa0de4f310c8ff0e2184a38c570e
      https://github.com/quicwg/base-drafts/commit/e7479497b8d6aa0de4f310c8ff0e2184a38c570e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Transport and TLS changelog for -28


  Commit: fa0d5d929edfc57eafee91a3405c58ff15cce919
      https://github.com/quicwg/base-drafts/commit/fa0d5d929edfc57eafee91a3405c58ff15cce919
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Recovery changelog for -28


Compare: https://github.com/quicwg/base-drafts/compare/e7479497b8d6%5E...fa0d5d929edf


From nobody Sun May 17 23:02:07 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 D82B13A0848 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 23:02:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 xpxS9-Wfo0wW for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 23:02:04 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 796A13A0840 for <quic-issues@ietf.org>; Sun, 17 May 2020 23:02:04 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id E73122615AC for <quic-issues@ietf.org>; Sun, 17 May 2020 23:02:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589781724; bh=kKphpwuI555c1SfE1cyZIlh4hVI9nJLnR/C46MxzEqM=; h=Date:From:To:Subject:From; b=Yn1KdSYWlnGatl+8cuM6vn6LcydtOpxK9uKj2Nty9DzfP+VmCpx4Z/nFEcWYyOwic WUSHJnK1PKz6S11HdR/a7R5LMj692uluxJrrLXC7Ns/0K/ycsJIBOrvt5lHOxOHI7V SBi0ZQJY023gBZ4BbrsgqL1QUp0ks1Rziim5YgiU=
Date: Sun, 17 May 2020 23:02:03 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8e0153-b018cf@github.com>
Subject: [quicwg/base-drafts] b018cf: Script updating gh-pages from fa0d5d92. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UcuI-2XO88mjVzuTbrnigWWqdvQ>
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: Mon, 18 May 2020 06:02:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b018cf80022f1dde1b3b0af64d8113584fa1a170
      https://github.com/quicwg/base-drafts/commit/b018cf80022f1dde1b3b0af64d8113584fa1a170
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    A changelog-28/draft-ietf-quic-http.html
    A changelog-28/draft-ietf-quic-http.txt
    A changelog-28/draft-ietf-quic-invariants.html
    A changelog-28/draft-ietf-quic-invariants.txt
    A changelog-28/draft-ietf-quic-qpack.html
    A changelog-28/draft-ietf-quic-qpack.txt
    A changelog-28/draft-ietf-quic-recovery.html
    A changelog-28/draft-ietf-quic-recovery.txt
    A changelog-28/draft-ietf-quic-tls.html
    A changelog-28/draft-ietf-quic-tls.txt
    A changelog-28/draft-ietf-quic-transport.html
    A changelog-28/draft-ietf-quic-transport.txt
    A changelog-28/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from fa0d5d92. [ci skip]



From nobody Sun May 17 23:05:25 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 A773D3A0848 for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 23:05:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 ewTvo_mVTogR for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 23:05:22 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 03E853A084C for <quic-issues@ietf.org>; Sun, 17 May 2020 23:05:21 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 40D16A0548 for <quic-issues@ietf.org>; Sun, 17 May 2020 23:05:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589781921; bh=vLbxe/+QdPMwIH6hIySOzH7w2Rj2+9SvvZWpLxWcr/0=; h=Date:From:To:Subject:From; b=asCDMA/e8A2YZCJDwGFwptcM18n5abqhNSDL8YEb99PMxJoacnhFwwnOMe0Ujf2AS zk8jrZRNwyrZQIaxbAdk/t/cQ9/KcGDQaf+gkJzeAWm/8FSPIF9R/c/uLH3P7YTuC4 x8SRBnga9aPVdyGvsuBHq1/i/0nerlvoxqWljjOQ=
Date: Sun, 17 May 2020 23:05:21 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/changelog-28/fa0d5d-bc4f36@github.com>
Subject: [quicwg/base-drafts] bc4f36: HTTP and QPACK changelog for -28
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4wkg6ylRGaiiR5sgPXmR22R2be8>
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: Mon, 18 May 2020 06:05:24 -0000

  Branch: refs/heads/changelog-28
  Home:   https://github.com/quicwg/base-drafts
  Commit: bc4f3679897a52397118f7dbf009a752f848a3d1
      https://github.com/quicwg/base-drafts/commit/bc4f3679897a52397118f7dbf009a752f848a3d1
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  HTTP and QPACK changelog for -28



From nobody Sun May 17 23:06:15 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 088E43A084C for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 23:06:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.199
X-Spam-Level: 
X-Spam-Status: No, score=-0.199 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Mgnv-E2tOpZH for <quic-issues@ietfa.amsl.com>; Sun, 17 May 2020 23:06:13 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D8AFB3A0840 for <quic-issues@ietf.org>; Sun, 17 May 2020 23:06:13 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 3B462120350 for <quic-issues@ietf.org>; Sun, 17 May 2020 23:06:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589781973; bh=hNs0ks2gv05PnW8eF5/E5MqO8ADc2HJKN4rKOSqvyeY=; h=Date:From:To:Subject:From; b=RBQrUhvXXXvNzPgCcfI+j36tTbBaK3e/qzRHHponlDrDREbtgyeUTb+XcQCWZp2Cr ILm7n6izd2unbzxx5LZYwGws5jB6FBbJczlqpSblGH3rJj663DgMp6Ilu6z/7NJfRo unXJAo3agPYTOwnUfB72xpCPI9/FeQvCrBeCP8pc=
Date: Sun, 17 May 2020 23:06:12 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b018cf-817c74@github.com>
Subject: [quicwg/base-drafts] 817c74: Script updating gh-pages from bc4f3679. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CwFHTDKJghYiw5JqTMMBAwbVzsY>
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: Mon, 18 May 2020 06:06:15 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 817c74e1684c2404186a8cadbad3c40ba1ba14fe
      https://github.com/quicwg/base-drafts/commit/817c74e1684c2404186a8cadbad3c40ba1ba14fe
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M changelog-28/draft-ietf-quic-http.html
    M changelog-28/draft-ietf-quic-http.txt
    M changelog-28/draft-ietf-quic-qpack.html
    M changelog-28/draft-ietf-quic-qpack.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from bc4f3679. [ci skip]



From nobody Mon May 18 02:08:46 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 340463A0A03 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:08:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 C5kxwltPaoeJ for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:08:43 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 399683A0A02 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:08:43 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 9E0A51C06AE for <quic-issues@ietf.org>; Mon, 18 May 2020 02:08:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589792920; bh=RPMrYnOWa5kxAxkjgkMFDNlpIL9Fpa5ZI7Vzy8MbgvI=; h=Date:From:To:Subject:From; b=nr/USvLj4yWjcZ8Vifk0OMPPC8lFnC80ECemVqrIj7/AlFVUSa0sFdR9hDLatxwCp Yn+MMS62A3DKH9pez0YApy/oEwR5CQGFZ7rVwvO6zdW2KPhoOrF3KptSloUy08p46m JfwgF+eF86p9Dx7nueVdor3j3WVGm3lLb5SWqWMI=
Date: Mon, 18 May 2020 02:08:40 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/example-28/e04411-5969c4@github.com>
Subject: [quicwg/base-drafts] 5969c4: Some more cleanup
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/c7m2H6nf3nGaguXjwLSx9VlhGeE>
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: Mon, 18 May 2020 09:08:44 -0000

  Branch: refs/heads/example-28
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5969c42dfd647aa74fe9ed96f8c2bcf3de9380de
      https://github.com/quicwg/base-drafts/commit/5969c42dfd647aa74fe9ed96f8c2bcf3de9380de
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M protection-samples.js

  Log Message:
  -----------
  Some more cleanup



From nobody Mon May 18 02:08:52 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 DD8BD3A0A01 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:08:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 zP5AasyDJvbG for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:08:50 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AC0823A0A02 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:08:50 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id BDE786E1F49 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:08:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589792929; bh=kkeaXI3ec9jQVUjQ3wIpFQucdPm2uWHlwQrjoWqR/lk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uXOzLLIgcxIShxwyXeNabFFblKx1VxBICeSopxvbRaxhaMNAPYaLm35SixE//vpfq gz+nWxeKVHqyFr/F9y/9uAopuubePBGiBjHsphoXQkvAhKIeksvrdK2Oz7C9U8yxIP RnqqZrb3mHyZCZRHV7eSEgbdpbP2A3VoS70RbGKA=
Date: Mon, 18 May 2020 02:08:49 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3663/push/5088720080@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3663@github.com>
References: <quicwg/base-drafts/pull/3663@github.com>
Subject: Re: [quicwg/base-drafts] Update examples for -28 (#3663)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec250a1acb65_328c3fe1d50cd96417928e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mbG85SrmPgDJK7i31Ee66ba_MXo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 09:08:52 -0000

----==_mimepart_5ec250a1acb65_328c3fe1d50cd96417928e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

5969c42dfd647aa74fe9ed96f8c2bcf3de9380de  Some more cleanup


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3663/files/e044112b34f1f19d334faed02c1594208c4eb56e..5969c42dfd647aa74fe9ed96f8c2bcf3de9380de

----==_mimepart_5ec250a1acb65_328c3fe1d50cd96417928e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/5969c42dfd647aa74fe9ed96f8c2bcf3de9380de">5969c42</a>  Some more cleanup</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3663/files/e044112b34f1f19d334faed02c1594208c4eb56e..5969c42dfd647aa74fe9ed96f8c2bcf3de9380de">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4AX4FRMGWHJ3NJWSTRSD3KDANCNFSM4NDXYEQQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2X6H3W2M5BBVDFB4LRSD3KDA5CNFSM4NDXYEQ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSMRWGEZTOMSQOVZWQIZVGA4DQNZSGAYDQMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3663/files/e044112b34f1f19d334faed02c1594208c4eb56e..5969c42dfd647aa74fe9ed96f8c2bcf3de9380de",
"url": "https://github.com/quicwg/base-drafts/pull/3663/files/e044112b34f1f19d334faed02c1594208c4eb56e..5969c42dfd647aa74fe9ed96f8c2bcf3de9380de",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec250a1acb65_328c3fe1d50cd96417928e--


From nobody Mon May 18 02:09:48 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 A16DE3A0A04 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:09:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 u_MmeOJ4i_GD for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:09:45 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9954B3A0A01 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:09:45 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id EAB086E0450 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:09:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589792984; bh=232jBFQBJccGKvC6ZAAagbf9spWej1lEAK25B+RAQl4=; h=Date:From:To:Subject:From; b=Fiz3Vbv0jzsZLzuG6xKCNGYRTL1OvbfPp8GZ+QIYfJCrQZf6qz59suIRTNr0dLx8Q TRcbGmjh1qLVe/bipaBxsCrnIpvRVOzfZf4cmt1Da40FLwXMo6VfltkLmt9nF2wCi/ mcOpVDPZxDLEBbUcDN8dpggTyETufMpcqh5r5Efk=
Date: Mon, 18 May 2020 02:09:44 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/817c74-2ba7f2@github.com>
Subject: [quicwg/base-drafts] 2ba7f2: Script updating gh-pages from 5969c42d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gdcx0ur5fc1JhdNnBAt45mQaRR8>
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: Mon, 18 May 2020 09:09:47 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2ba7f2e07a888b990e08d614611543e744eb5901
      https://github.com/quicwg/base-drafts/commit/2ba7f2e07a888b990e08d614611543e744eb5901
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 5969c42d. [ci skip]



From nobody Mon May 18 02:09:59 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 B8C4A3A0A02 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:09:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 MueGZISUfvLu for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:09:56 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B66EE3A0A01 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:09:56 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 10DBD6E05A3 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:09:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589792996; bh=4VD6cT8DBcRFisdWdAqkV1B8q7Ap0jDE9q6TA39v7Vs=; h=Date:From:To:Subject:From; b=W5aE77q0brFcffyKvnzOfb3iHT+aww1wdEFY6g4q2wp0S8f88MhrPeMMpbY0LXXsD 9GZj/JNdJa0eRU/208b1cWfzyKDKkNAQ7tU62vQ+FSeUwhZD2GHbQohBzuqiaucmwf E/es/VoXvSJ4Erm9hMCyrDTh2ZP/3E8lHc1yzshM=
Date: Mon, 18 May 2020 02:09:55 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/2ba7f2-fcfcd3@github.com>
Subject: [quicwg/base-drafts] fcfcd3: Script updating archive at 2020-05-18T09:09:34Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XLqxi40tFmFENznN6-v62XmstLQ>
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: Mon, 18 May 2020 09:09:58 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: fcfcd3919ac67f258ffe6cc80c5ebf409fa58670
      https://github.com/quicwg/base-drafts/commit/fcfcd3919ac67f258ffe6cc80c5ebf409fa58670
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-18T09:09:34Z. [ci skip]



From nobody Mon May 18 02:58:25 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 10F273A0A68 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:58:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 HoYY0mK1JQvK for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:58:22 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 044203A0A66 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:58:22 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 86D65C60DAB for <quic-issues@ietf.org>; Mon, 18 May 2020 02:58:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589795900; bh=44N1qmk59b/xRCKaKn8JwVN6Yg2iduJVRJmgJjT4YSU=; h=Date:From:To:Subject:From; b=SA1+RD4btvUr6o5SxSUhN0SIr8q3jgDa5IH0PysYP+l3E+4SlooftuUnCoIpAc1cR l8KL7DNpVs9wXy0RgaJUprBcnyyus0iRODv3YQrDOk9WmZrpfFoG2w7K4bgKX4EOA/ aQiuTCwOrrAFyuPOPSXCuwpa8YksgmJPNCXfvZ1w=
Date: Mon, 18 May 2020 02:58:20 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/pacing-dfn/a320b5-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/W4aszwmB3fTizpTfkrycm_tkv7A>
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: Mon, 18 May 2020 09:58:23 -0000

  Branch: refs/heads/pacing-dfn
  Home:   https://github.com/quicwg/base-drafts


From nobody Mon May 18 02:58:31 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 C011E3A0A66 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:58:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.2
X-Spam-Level: 
X-Spam-Status: No, score=-0.2 tagged_above=-999 required=5 tests=[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 1v9d1fTOE85e for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:58:22 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 31AF43A0A67 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:58:22 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id E9CD4280F5C for <quic-issues@ietf.org>; Mon, 18 May 2020 02:58:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589795899; bh=ORNiW5DT9oGu8kmINlj68STd257XXdR/EbhMzkPy5Hc=; h=Date:From:To:Subject:From; b=dEwHbgrCfNtUrSO7qsAk1GaQefc3KIrNwTxPQmwnYzzoMvtPGkfi+WnJbmrJ1d6/k S0MHW5V8ZDoPPcfX60iPSsMYfZjBNZYOdyI4/4YiQpOkxf3HyPZV49ow14p+bOUGST /H/1g/yS6YzKzhrsRc+JxwmUCiafB3MjeQtio+Vs=
Date: Mon, 18 May 2020 02:58:19 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/c1d061-d433f6@github.com>
Subject: [quicwg/base-drafts] f00116: A pacing algorithm
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IP81ypFWS-GSCv6Ae0k0gyWmJt8>
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: Mon, 18 May 2020 09:58:24 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: f001162b89055fad7e837b6f2847277ff0f20177
      https://github.com/quicwg/base-drafts/commit/f001162b89055fad7e837b6f2847277ff0f20177
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  A pacing algorithm

This isn't code, because I don't think we need to do any more than point
at the leaky bucket algorithm, but it does provide more concrete advice
than we've had.

It removes the reference to fqdisc as that isn't especially helpful, as
the original issue observes.

Closes #3122.


  Commit: 561df07e9b817460e4006266af1e0acee19c0f8a
      https://github.com/quicwg/base-drafts/commit/561df07e9b817460e4006266af1e0acee19c0f8a
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Forgot to include smoothed_rtt in the description


  Commit: a4b888eab05865e39b40e240bb3abf962f95de9b
      https://github.com/quicwg/base-drafts/commit/a4b888eab05865e39b40e240bb3abf962f95de9b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Reword rationale somewhat


  Commit: b776f4d79e077017b718671b8362650a0b8e62bd
      https://github.com/quicwg/base-drafts/commit/b776f4d79e077017b718671b8362650a0b8e62bd
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Using suggestions to edit


  Commit: 37eaf7e767121467227f3fbade7329a7d7b264f3
      https://github.com/quicwg/base-drafts/commit/37eaf7e767121467227f3fbade7329a7d7b264f3
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Add a blank line


  Commit: 75791409cdeafdfdb429024dc1ced0ed104f8648
      https://github.com/quicwg/base-drafts/commit/75791409cdeafdfdb429024dc1ced0ed104f8648
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Shorter figure line


  Commit: 7ddcd1d53039f50f8050ec51912c086016407521
      https://github.com/quicwg/base-drafts/commit/7ddcd1d53039f50f8050ec51912c086016407521
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Trying to thread the needle


  Commit: 954f037f641703d7566f024cc41755f24ef6ae2b
      https://github.com/quicwg/base-drafts/commit/954f037f641703d7566f024cc41755f24ef6ae2b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Fix


  Commit: dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550
      https://github.com/quicwg/base-drafts/commit/dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  under-utilization

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 819f4d0d5710830a2e832acac8afa8e38c1439d6
      https://github.com/quicwg/base-drafts/commit/819f4d0d5710830a2e832acac8afa8e38c1439d6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Some editorial rearrangement


  Commit: 42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe
      https://github.com/quicwg/base-drafts/commit/42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Some improvements from Ian

Co-authored-by: ianswett <ianswett@users.noreply.github.com>


  Commit: b0a1b1c0db25b4971df0078f14fe68bb50b5da9b
      https://github.com/quicwg/base-drafts/commit/b0a1b1c0db25b4971df0078f14fe68bb50b5da9b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  ack-clocking

Co-authored-by: ianswett <ianswett@users.noreply.github.com>


  Commit: a320b5463d042d2cfdf6b20a2278025687670fe6
      https://github.com/quicwg/base-drafts/commit/a320b5463d042d2cfdf6b20a2278025687670fe6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Reword ack-clocking again


  Commit: d433f6e3bc26b864377fdbf1172be959de70691d
      https://github.com/quicwg/base-drafts/commit/d433f6e3bc26b864377fdbf1172be959de70691d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3630 from quicwg/pacing-dfn

A pacing algorithm


Compare: https://github.com/quicwg/base-drafts/compare/c1d0618c4904...d433f6e3bc26


From nobody Mon May 18 02:58:34 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 EA3AC3A0A66 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:58:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 OP-dgEz-SOos for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:58:22 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F384B3A0A64 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:58:21 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 3E6498C12D2 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:58:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589795901; bh=eSAqbAvlEVAbq9tt/O8Nym/2ku8pGyHG8EFkjTB9Icc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hPzB/Vf36H8GMZWIE7rCHqFbpB7oqA+KILb9OXBERsh/WlTLLWWg4OXmDUc1utMkC xKKIQ5+iBMxY2XixSsMypAS6kS28n9hyiSNJV4XJG3YBQwUPztL+pLVAoAc1HeaEiU rd6WZvysWiH4EvUg7eBw+gdJ+EMCYXDbd2GrkzUA=
Date: Mon, 18 May 2020 02:58:21 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2XZZG6RFUGGHWQKH54ZY6T3EVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/review/413445480@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec25c3d303eb_6c813fa6bdccd96011641e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qgY9Szf4d1bISVzF3u6kH_pP0x8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 09:58:25 -0000

----==_mimepart_5ec25c3d303eb_6c813fa6bdccd96011641e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.

I have one editorial change on top of this, but I'd like to do it separately.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-413445480
----==_mimepart_5ec25c3d303eb_6c813fa6bdccd96011641e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>

<p>I have one editorial change on top of this, but I'd like to do it separately.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-413445480">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYKCXXIHZ7QGHA7PX3RSEBD3ANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3TVT3RFSQ4LGCIXBDRSEBD3A5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCSK22A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-413445480",
"url": "https://github.com/quicwg/base-drafts/pull/3630#pullrequestreview-413445480",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec25c3d303eb_6c813fa6bdccd96011641e--


From nobody Mon May 18 02:58:38 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 323763A0A67 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:58:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.152
X-Spam-Level: 
X-Spam-Status: No, score=-0.152 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 tguLMTLIhfTi for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:58:30 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0B30A3A0A64 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:58:30 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 593E5960768 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:58:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589795909; bh=TZmHxatzRy6r47jiFF8qeTny/rXuoZE9K6jUja9sWNw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=K1FIHOy9aqcZcoH5zZD/fUWsLIHnTWGjYxUrysYZDFqSdiCpQpJqirnXXN2NCRvvv DQFJE+R6nk09jpTENHMhwBuegwfQapJcDrZnzHyOjwQVU6zY6tWww4BM5rxLdo5qk0 NwEYSn/scy7H10ey8ORcITFIlvHiXTJhGLjSIr5A=
Date: Mon, 18 May 2020 02:58:29 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3DYYNSBIHG4AZYQMN4ZY6ULEVBNHHCJCUB5E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3630/issue_event/3346537527@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3630@github.com>
References: <quicwg/base-drafts/pull/3630@github.com>
Subject: Re: [quicwg/base-drafts] A pacing algorithm (#3630)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec25c454af2d_3da53fdfeb8cd95c169726"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4ne-N2cAxIhgcszQ5472rfAQ6oo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 09:58:31 -0000

----==_mimepart_5ec25c454af2d_3da53fdfeb8cd95c169726
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3630 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3630#event-3346537527
----==_mimepart_5ec25c454af2d_3da53fdfeb8cd95c169726
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="613057001" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3630" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3630/hovercard" href="https://github.com/quicwg/base-drafts/pull/3630">#3630</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3630#event-3346537527">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7QJQ7XRRD7TQV345TRSEBELANCNFSM4M2ELDDA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4PXJOJ4ZPWQWV6AM3RSEBELA5CNFSM4M2ELDDKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY54BYNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3630#event-3346537527",
"url": "https://github.com/quicwg/base-drafts/pull/3630#event-3346537527",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec25c454af2d_3da53fdfeb8cd95c169726--


From nobody Mon May 18 02:58:41 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 5B7F83A0A64 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:58:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 FCPxbPTGJZN8 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:58:31 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 211433A0A66 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:58:31 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 9B353660919 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:58:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589795909; bh=gpZeS+zDhUc1tbMBiGwQU3jFT0jnWb4lyOztAnBMxbk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uFSXT5Ho0sHHmINJz4I/4Fp7jzJLcrmeUVv1uwqXuU6NEOQR87DGHLshw1DgwXVCR +I2vC7EitSwsy3elo9da/6lUnSvsxWJU4Zf/bxHYxxRT9E8+3pLAyuCcQ+VVelyZcp x4+ltmwXUtYmt3KvYoQwNDBQdP+jsbARe8mjquDc=
Date: Mon, 18 May 2020 02:58:29 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3AXSER2Y2ZHJMSY3N4ZY6ULEVBNHHB4VEL2Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3122/issue_event/3346537538@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3122@github.com>
References: <quicwg/base-drafts/issues/3122@github.com>
Subject: Re: [quicwg/base-drafts] Recommend algorithm for packet scheduler, rather than implementation (#3122)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec25c458aae1_5d5d3fd87fccd96c124210"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/pMqb9z79XMD-6tBlNeUyBREBaMM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 09:58:32 -0000

----==_mimepart_5ec25c458aae1_5d5d3fd87fccd96c124210
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3122 via #3630.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3122#event-3346537538
----==_mimepart_5ec25c458aae1_5d5d3fd87fccd96c124210
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="508857302" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3122" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3122/hovercard" href="https://github.com/quicwg/base-drafts/issues/3122">#3122</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="613057001" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3630" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3630/hovercard" href="https://github.com/quicwg/base-drafts/pull/3630">#3630</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3122#event-3346537538">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7NL4EOGYFJT2YQ4JDRSEBELANCNFSM4JCCTGLA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SRXSHOZM735BAFXDRSEBELA5CNFSM4JCCTGLKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY54BYQQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3122#event-3346537538",
"url": "https://github.com/quicwg/base-drafts/issues/3122#event-3346537538",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec25c458aae1_5d5d3fd87fccd96c124210--


From nobody Mon May 18 02:58:51 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 4F2F33A0A66 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:58:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 QhygLJwOoHBm for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:58:49 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 22B853A0A64 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:58:49 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 770E66E1F37 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:58:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589795928; bh=46RmyCtEzgdyHcn0vRcnOJeaZIKppxHXBtterip4X+0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eSIBvYnu02spf2kwllUBS2w9MfQ007L+veSfe4WYana/6zVhPBeDft9AmnH5XK9Ky 7a5qu2MsItvFYf3naKHltYHQnwEILAApj++IEme+YxCHjLFotM/QcgnKoP2egX8ADV G7e2qIjK7JANtU48UPJX41lsRLHPd14SMnDU5QPc=
Date: Mon, 18 May 2020 02:58:48 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7QQL4GHIBZUR42CBN4ZY6VREVBNHHCJUXUDE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3655/issue_event/3346538815@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3655@github.com>
References: <quicwg/base-drafts/pull/3655@github.com>
Subject: Re: [quicwg/base-drafts] Another pacing algorithm (#3655)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec25c5867f65_5ab43ff952ccd964173323"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hnBE2eVFwjHlA-x7nOk8iB34DrE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 09:58:50 -0000

----==_mimepart_5ec25c5867f65_5ab43ff952ccd964173323
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3655.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3655#event-3346538815
----==_mimepart_5ec25c5867f65_5ab43ff952ccd964173323
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="617804825" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3655" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3655/hovercard" href="https://github.com/quicwg/base-drafts/pull/3655">#3655</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3655#event-3346538815">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3TUQ7ZHHD62N7G7XDRSEBFRANCNFSM4NAFUZTQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY3LBN3V42KVJ2GIGTRSEBFRA5CNFSM4NAFUZT2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY54CCPY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3655#event-3346538815",
"url": "https://github.com/quicwg/base-drafts/pull/3655#event-3346538815",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec25c5867f65_5ab43ff952ccd964173323--


From nobody Mon May 18 02:59:20 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 DB2513A0A67 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:59:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ClD_FoQ_Ft5k for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 02:59:17 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C1F2B3A0A64 for <quic-issues@ietf.org>; Mon, 18 May 2020 02:59:17 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 470811C093C for <quic-issues@ietf.org>; Mon, 18 May 2020 02:59:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589795956; bh=CbFnUsv4VImp9jSeHfEThy3S6hVq3koJmg6x666NL6M=; h=Date:From:To:Subject:From; b=sENS4wMv6cmI6lnz4QNJRyBd8qjtgy2hRI7W8M23hqU1YUGd/pLSe4sCOail2WTCM Zd8ONI0xicBBOtwjNtctwu1GAl5t5yqrYu6dJ88TXTAbqKk/0tlhxq7xw0S8jMG4uB PsPiNbUam/M0AgXf8mv6CE5tFT0GxfuNXfwStjV4=
Date: Mon, 18 May 2020 02:59:16 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/fcfcd3-62b9c9@github.com>
Subject: [quicwg/base-drafts] 62b9c9: Script updating gh-pages from d433f6e3. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lkH9FSVdwrusj5uTNtvBdfPtx0w>
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: Mon, 18 May 2020 09:59:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 62b9c98346c27e178455dbf5c050016b5ae10902
      https://github.com/quicwg/base-drafts/commit/62b9c98346c27e178455dbf5c050016b5ae10902
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d433f6e3. [ci skip]



From nobody Mon May 18 03:02:06 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 0AD853A0A68 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:02:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 fHQHjMMa5aXG for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:02:03 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 781253A0A67 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:02:03 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id BF95C661EE9 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:02:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589796122; bh=8bbc8+x31tEekpF+RzZPVh9vvBxOBnTfA4M9LgIg/gc=; h=Date:From:To:Subject:From; b=XI+Wqk+iJik1XKuP80FIUdMBAhhTSacokaKu1fQHLgKArhm7x3WELTST+jlzjNIWR vwE6uQ8F1gtpG72bEzulLVRF91oVsnoIxwVDw8WRUBjPKWYTBs7GkfpPIGVi2awjav 8ZiK7YiW76xy/a6WYcLZYDbKjoWvesDKc71Vm74E=
Date: Mon, 18 May 2020 03:02:02 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pacing-must/000000-de2b85@github.com>
Subject: [quicwg/base-drafts] de2b85: Move MUST not send bursts up in the pacing section
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/61XWoTWazt_OFc0ALW4NOf1ykLk>
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: Mon, 18 May 2020 10:02:05 -0000

  Branch: refs/heads/ianswett-pacing-must
  Home:   https://github.com/quicwg/base-drafts
  Commit: de2b8544cc2449c97fc76d00efe0da83c2044e39
      https://github.com/quicwg/base-drafts/commit/de2b8544cc2449c97fc76d00efe0da83c2044e39
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Move MUST not send bursts up in the pacing section

This is a follow-on from #3630



From nobody Mon May 18 03:02:48 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 5D1993A0A68 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:02:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.082
X-Spam-Level: 
X-Spam-Status: No, score=0.082 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.282, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 kIAwkEdthOzT for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:02:46 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 39E883A0A67 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:02:46 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id D4195260483 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:02:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589796165; bh=cmUentiDGOAyBiUM7K3qtA91c0kzkqeU8J+7IufG17A=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=C1mYfPkUNara5nZdLJt0X2041WKN0uzSGtaObAU86nBrCdspkiMjgCTCR5WcDZZZk yjJb1JILwOurnBSI0jY7QHS3uy4fM5ATrQV8hS623sO/8n1ZO/zz1lu1t+smYyMjm6 JAJUWZR97R5MsKKPBxcRCtuc0Yh8nCTm0kria0no=
Date: Mon, 18 May 2020 03:02:45 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7FYKXU7GZFOHZ5P354ZY7ELEVBNHHCJ5NF4Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3664@github.com>
Subject: [quicwg/base-drafts] Move MUST not send bursts up in the pacing section (#3664)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec25d458d3f0_4bc13fb46f2cd9641123c1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0WRdgwTzBB49b-koEwQpTld7JTE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 10:02:47 -0000

----==_mimepart_5ec25d458d3f0_4bc13fb46f2cd9641123c1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I prefer to have MUSTs towards the top of sections when possible so they&#39;re not missed.

This is a follow-on from #3630
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3664

-- Commit Summary --

  * Move MUST not send bursts up in the pacing section

-- File Changes --

    M draft-ietf-quic-recovery.md (13)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3664.patch
https://github.com/quicwg/base-drafts/pull/3664.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3664

----==_mimepart_5ec25d458d3f0_4bc13fb46f2cd9641123c1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I prefer to have MUSTs towards the top of sections when possible so they're not missed.</p>
<p>This is a follow-on from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="613057001" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3630" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3630/hovercard" href="https://github.com/quicwg/base-drafts/pull/3630">#3630</a></p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3664'>https://github.com/quicwg/base-drafts/pull/3664</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Move MUST not send bursts up in the pacing section</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3664/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (13)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3664.patch'>https://github.com/quicwg/base-drafts/pull/3664.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3664.diff'>https://github.com/quicwg/base-drafts/pull/3664.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3664">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYGRNGHDARREGXBOOTRSEBULANCNFSM4ND5YJTA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK46XNGGDUE5YLF5GL3RSEBULA5CNFSM4ND5YJTKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JHVUXSA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3664",
"url": "https://github.com/quicwg/base-drafts/pull/3664",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec25d458d3f0_4bc13fb46f2cd9641123c1--


From nobody Mon May 18 03:02:56 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 9CBCC3A0A6A for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:02:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[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] 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 UAF9YWORQhdq for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:02:53 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0E46E3A0A67 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:02:53 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 5B4EF9621D4 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:02:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589796172; bh=leIdNRfhiUrWGP8qEsbzLW7ZJb0f4sVoej95hugVXYQ=; h=Date:From:To:Subject:From; b=oOeDLHP/CJsxRVwohnwHSS2IBHhGxrA1j9CGmE/cChw0CSf+8BHSxB24FOMF/8aGs LiblBdB2JYMG4ajxawWY+zgIjq2H7niWw8MlbEGOItwQ+jnyM961iHCHsj+hxknA2j v1Q1GwspBjnGPmD3aq5TazwtwF6SIfqJ7ZK2PNX0=
Date: Mon, 18 May 2020 03:02:52 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/62b9c9-e7bbe9@github.com>
Subject: [quicwg/base-drafts] e7bbe9: Script updating gh-pages from de2b8544. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/okz7F7Phjnbay-bwxkX38mhJHgU>
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: Mon, 18 May 2020 10:02:55 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e7bbe9cb6b92909842fba6af0261cd2f283ccbf4
      https://github.com/quicwg/base-drafts/commit/e7bbe9cb6b92909842fba6af0261cd2f283ccbf4
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    A ianswett-pacing-must/draft-ietf-quic-http.html
    A ianswett-pacing-must/draft-ietf-quic-http.txt
    A ianswett-pacing-must/draft-ietf-quic-invariants.html
    A ianswett-pacing-must/draft-ietf-quic-invariants.txt
    A ianswett-pacing-must/draft-ietf-quic-qpack.html
    A ianswett-pacing-must/draft-ietf-quic-qpack.txt
    A ianswett-pacing-must/draft-ietf-quic-recovery.html
    A ianswett-pacing-must/draft-ietf-quic-recovery.txt
    A ianswett-pacing-must/draft-ietf-quic-tls.html
    A ianswett-pacing-must/draft-ietf-quic-tls.txt
    A ianswett-pacing-must/draft-ietf-quic-transport.html
    A ianswett-pacing-must/draft-ietf-quic-transport.txt
    A ianswett-pacing-must/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from de2b8544. [ci skip]



From nobody Mon May 18 03:11:26 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 F052D3A0ACB for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:11:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.2
X-Spam-Level: 
X-Spam-Status: No, score=-0.2 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 4SdY_7PbGUcm for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:11:11 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BA9E63A0AC8 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:11:09 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id ED671A0064 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:11:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589796668; bh=DCxNNszJskDs5SnQwa1N2ihhvFMGoVxNKjCPDAFtl/o=; h=Date:From:To:Subject:From; b=tRv6eY9UAnyMvqcyQu9k9ey5I4A2balBCmaLM7RlwVSVCKdM2NvD3wbnFY9AIGmRI //bR0cZj9g2oonQWA3Vnwl/hc6v8//NHDFBXZb+O49V+gEZdVjwfdeJ7B2IKkjFUB+ KucHokmVKZ+OBwI/FukFtGKI/zeF71sY+2aIHZd0=
Date: Mon, 18 May 2020 03:11:08 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pacing-must/de2b85-23e310@github.com>
Subject: [quicwg/base-drafts] 23e310: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DsS5-X7YZnTPUrMa39nkWfdXqpc>
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: Mon, 18 May 2020 10:11:24 -0000

  Branch: refs/heads/ianswett-pacing-must
  Home:   https://github.com/quicwg/base-drafts
  Commit: 23e3109e596baa220b83923443df4ea60f71dde7
      https://github.com/quicwg/base-drafts/commit/23e3109e596baa220b83923443df4ea60f71dde7
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Mon May 18 03:11:32 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 D5DC23A0A93 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:11:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.5
X-Spam-Level: 
X-Spam-Status: No, score=-0.5 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 JDxAY7Bh-qqa for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:11:23 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D970F3A0AAB for <quic-issues@ietf.org>; Mon, 18 May 2020 03:11:17 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 1297D660911 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:11:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589796677; bh=uQs/cjtZy+epDvo+UcS6jD1p8MRyc3nnNrF9HLegsEc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lAhd9VbkIFyoHgcHDhrdHJVLzeorSktqVO6H/t0hSj8kYYc4NN8MTEiWs65hYFryu ix5/+rtkE1J33wdyY8UGThE56Lxd+HDXwFex3FqbsZyY1nSmLlFcK/qKbwmAQV1opf pdJ+Sqwdk3fU7UIRFLllnToMYuXD18c8Wx61xEr8=
Date: Mon, 18 May 2020 03:11:17 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3664/push/5089048191@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3664@github.com>
References: <quicwg/base-drafts/pull/3664@github.com>
Subject: Re: [quicwg/base-drafts] Move MUST not send bursts up in the pacing section (#3664)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec25f453143_79ee3fdb5e2cd96c2369a7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ofJgM-pT6QxGaAqOJGCR9QhZVJU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 10:11:30 -0000

----==_mimepart_5ec25f453143_79ee3fdb5e2cd96c2369a7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

23e3109e596baa220b83923443df4ea60f71dde7  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3664/files/de2b8544cc2449c97fc76d00efe0da83c2044e39..23e3109e596baa220b83923443df4ea60f71dde7

----==_mimepart_5ec25f453143_79ee3fdb5e2cd96c2369a7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/23e3109e596baa220b83923443df4ea60f71dde7">23e3109</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3664/files/de2b8544cc2449c97fc76d00efe0da83c2044e39..23e3109e596baa220b83923443df4ea60f71dde7">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6LHZ74P7SJ4OC3OTTRSECULANCNFSM4ND5YJTA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK64OF77GZP4OVHD6ELRSECULA5CNFSM4ND5YJTKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSMZZGQ3TINCQOVZWQIZVGA4DSMBUHAYTSMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3664/files/de2b8544cc2449c97fc76d00efe0da83c2044e39..23e3109e596baa220b83923443df4ea60f71dde7",
"url": "https://github.com/quicwg/base-drafts/pull/3664/files/de2b8544cc2449c97fc76d00efe0da83c2044e39..23e3109e596baa220b83923443df4ea60f71dde7",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec25f453143_79ee3fdb5e2cd96c2369a7--


From nobody Mon May 18 03:12:21 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 A5F0B3A0A6E for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:12:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 j3UnNHwJdItY for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:12:07 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0A0583A0A6C for <quic-issues@ietf.org>; Mon, 18 May 2020 03:12:07 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 41D9C6A05A7 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:12:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589796726; bh=6Va1PZ43BtfVS+qxYa/9jLsHfLa7usjNrgMBrHkgsCc=; h=Date:From:To:Subject:From; b=xKyHWp1dBjCl3fXqer+ZXnD0pmEWV4zr8VUrUI1zSemTkFXfm/NSluw2/4/Pps18w Uk8sb12NMCO19S2BZZdD+bFPmqGvNV4CV3aC4bIBc0Q/I6NapHG+uYOAGTHVIJgQzY QjpoRUin3ji7mN8PCphEoW2MDZO7Ftpq3EAO8XwY=
Date: Mon, 18 May 2020 03:12:06 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e7bbe9-173832@github.com>
Subject: [quicwg/base-drafts] 173832: Script updating gh-pages from 23e3109e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1V4RUiszDvN1qIQuDxldGiRMR94>
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: Mon, 18 May 2020 10:12:09 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1738327d550d787f6a0fbcead50d75fc2d51b3f9
      https://github.com/quicwg/base-drafts/commit/1738327d550d787f6a0fbcead50d75fc2d51b3f9
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M ianswett-pacing-must/draft-ietf-quic-recovery.html
    M ianswett-pacing-must/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 23e3109e. [ci skip]



From nobody Mon May 18 03:27:07 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 DB97E3A0A82 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:27:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 EFloy_8WsRQS for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:27:04 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 90BD93A0A83 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:27:04 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 90AFA8C119A for <quic-issues@ietf.org>; Mon, 18 May 2020 03:27:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589797623; bh=Q0/HYPL741MUgjRxFycQxHHKDT24k2cb+3gKlfiI/cw=; h=Date:From:To:Subject:From; b=1eZYvnHSDGme1mEoZ0mFskQ1sbgOl9f99RFSpUyLEKMCji2fe4ggf2u04kCk54NzK 2jq+H7kTf9OG4OAH8Rw5OMBov8TIRnZGGfk42md7rCYCNx/LleCHmIXfLtireRxdeh WE9gz5z3cIhTuW608YQSON4gzLix6fK3omU4Ol38=
Date: Mon, 18 May 2020 03:27:03 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recompute-pto/000000-32ee54@github.com>
Subject: [quicwg/base-drafts] 32ee54: Clarify when the PTO may need to be recomputed and...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/p5U8df7HMPKFQIqrbTeH3-ZEQdk>
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: Mon, 18 May 2020 10:27:06 -0000

  Branch: refs/heads/ianswett-recompute-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 32ee54571d322a19c4442333f941d0bc233dbca6
      https://github.com/quicwg/base-drafts/commit/32ee54571d322a19c4442333f941d0bc233dbca6
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Clarify when the PTO may need to be recomputed and reset

Clarifies the cases when the PTO needs to be recomputed and possibly reset.  This was not in a single place before.

Fixes #3613



From nobody Mon May 18 03:27:31 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 DCAEA3A0A83 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:27:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.474
X-Spam-Level: 
X-Spam-Status: No, score=-0.474 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=0.726, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 Mc2BNlhWe5Cz for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:27:28 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 930E63A0A8C for <quic-issues@ietf.org>; Mon, 18 May 2020 03:27:28 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id D3659C60804 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:27:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589797647; bh=yyKAmqEJdF6Qag6lv981KFoV5U6O3Lp5QB0jTnLfpkA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=MUDl457BLppQJp5hUZ3/ItR8S+n3IR5bBxGWAS1ArqB16pEtO4z7v6D5yzi9S8KHu 6HFZYeFo5omO1yDK2vKjQhXLr1fl37cTLejf9yN5xPb/lLe2iMz0SPWhqCR7rxSyKq wwIMjLbYXKDwQmCnr+iXyzW0kgYGbKb6ZfGfjBe0=
Date: Mon, 18 May 2020 03:27:27 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK25XGNDZGL7TKUMQIF4ZZCA7EVBNHHCJ5PG2I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665@github.com>
Subject: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec2630fc5037_45a73fcf8d8cd95c43316e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SdNS5oVspxqrZXvOFad9qskdSbs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 10:27:30 -0000

----==_mimepart_5ec2630fc5037_45a73fcf8d8cd95c43316e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Clarifies the cases when the PTO needs to be recomputed and possibly reset.  This was not in a single place before.

Fixes #3613
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3665

-- Commit Summary --

  * Clarify when the PTO may need to be recomputed and reset

-- File Changes --

    M draft-ietf-quic-recovery.md (32)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3665.patch
https://github.com/quicwg/base-drafts/pull/3665.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665

----==_mimepart_5ec2630fc5037_45a73fcf8d8cd95c43316e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Clarifies the cases when the PTO needs to be recomputed and possibly reset.  This was not in a single place before.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3613.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="609486134" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3613" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3613/hovercard" href="https://github.com/quicwg/base-drafts/issues/3613">#3613</a></p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3665'>https://github.com/quicwg/base-drafts/pull/3665</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Clarify when the PTO may need to be recomputed and reset</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3665/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (32)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3665.patch'>https://github.com/quicwg/base-drafts/pull/3665.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3665.diff'>https://github.com/quicwg/base-drafts/pull/3665.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3665">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK47SM7UAQONSDKPNQ3RSEEQ7ANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK47BFNBLV3DMOVZDSDRSEEQ7A5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JHV43JA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665",
"url": "https://github.com/quicwg/base-drafts/pull/3665",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec2630fc5037_45a73fcf8d8cd95c43316e--


From nobody Mon May 18 03:28:16 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 61C823A0A8D for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:28:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Ffk-_WhJd6L2 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:28:14 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 21AD73A0A83 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:28:14 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 66B01520345 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:28:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589797693; bh=8p8DhRQQgvsfb1chFzJP7yYy78WO7/zDiLtnwURIfMY=; h=Date:From:To:Subject:From; b=ubtHYjP9x6JZnnAR1CoYAOM2Rv0onjojkGc5y6if+DnP4xzGFOHkFqjWzZHWBOPxk 5dFb35DBd3uRzCm6aSOwgkxTZjyvg2D1TG//RUJ1WPzeQMyodmN9EYwqr6ow1uV42k 5bZleDSRdn43YiLefTK/s2DhGMnu1KzF7vhudBcw=
Date: Mon, 18 May 2020 03:28:13 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/173832-d73a3c@github.com>
Subject: [quicwg/base-drafts] d73a3c: Script updating gh-pages from 32ee5457. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cn-7gYYWf05UIIAhsaNwuXjaRPY>
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: Mon, 18 May 2020 10:28:15 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d73a3c00abba293398a7af2d7b7a5e80040a1e9c
      https://github.com/quicwg/base-drafts/commit/d73a3c00abba293398a7af2d7b7a5e80040a1e9c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    A ianswett-recompute-pto/draft-ietf-quic-http.html
    A ianswett-recompute-pto/draft-ietf-quic-http.txt
    A ianswett-recompute-pto/draft-ietf-quic-invariants.html
    A ianswett-recompute-pto/draft-ietf-quic-invariants.txt
    A ianswett-recompute-pto/draft-ietf-quic-qpack.html
    A ianswett-recompute-pto/draft-ietf-quic-qpack.txt
    A ianswett-recompute-pto/draft-ietf-quic-recovery.html
    A ianswett-recompute-pto/draft-ietf-quic-recovery.txt
    A ianswett-recompute-pto/draft-ietf-quic-tls.html
    A ianswett-recompute-pto/draft-ietf-quic-tls.txt
    A ianswett-recompute-pto/draft-ietf-quic-transport.html
    A ianswett-recompute-pto/draft-ietf-quic-transport.txt
    A ianswett-recompute-pto/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 32ee5457. [ci skip]



From nobody Mon May 18 03:41:24 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 3CB1F3A0AA6 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:41:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.081
X-Spam-Level: 
X-Spam-Status: No, score=0.081 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.282, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 hWsSsuFJK6dV for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:41:21 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 00D603A0AA3 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:41:20 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 3430A1C11BE for <quic-issues@ietf.org>; Mon, 18 May 2020 03:41:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589798480; bh=3wPduvRCcl/3N7bm1hirspXWvbaCMf7XUgl6yWVfOmM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Yl5P5kHhljE2mdcshKvpR6qPRxAKYWbvzexowzo975v7A2N6Y76jjnFw20acegOLK 85q80X/DjeDP9IUz3A7XYjayOyYWg881uUWwf1gihDJ+qqLHJjmEyyUe8ViiIyhJkw ZrCOhSh6tamBD5ASxuTDjh+FKdNkFa/5e8D1jNGk=
Date: Mon, 18 May 2020 03:41:20 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4YRWPGTWAY344GROV4ZZDVBEVBNHHCIVAFGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3613/630099015@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3613@github.com>
References: <quicwg/base-drafts/issues/3613@github.com>
Subject: Re: [quicwg/base-drafts] Review conditions for PTO arming around end of handshake (#3613)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec266505e1f_1e223fdb628cd96c11448"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1qYXJLDoT0sGYL2h8Ma17qbbqac>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 10:41:22 -0000

----==_mimepart_5ec266505e1f_1e223fdb628cd96c11448
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The PTO is always armed when there are bytes in flight(except when the loss timer is armed), it's just a matter of what PN spaces it can be armed for at a given point in time.  Once the connection is handshake complete, it's immediately allowed to arm it for inflight 1-RTT ack-eliciting packets.

Re-reading the text, I couldn't find anything explicitly calling out that the alarm may need to be recomputed and reset in the handshake confirmed case, though it is stated for discarding keys.

As clarified in #3597 when the client is handshake complete but not confirmed, it is unsure whether the server has Handshake keys or ApplicationData keys, but it's very unlikely to have both.  As such, sending something ack-eliciting from both PN spaces is safest.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3613#issuecomment-630099015
----==_mimepart_5ec266505e1f_1e223fdb628cd96c11448
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The PTO is always armed when there are bytes in flight(except when the loss timer is armed), it's just a matter of what PN spaces it can be armed for at a given point in time.  Once the connection is handshake complete, it's immediately allowed to arm it for inflight 1-RTT ack-eliciting packets.</p>
<p>Re-reading the text, I couldn't find anything explicitly calling out that the alarm may need to be recomputed and reset in the handshake confirmed case, though it is stated for discarding keys.</p>
<p>As clarified in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="605832668" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3597" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3597/hovercard" href="https://github.com/quicwg/base-drafts/pull/3597">#3597</a> when the client is handshake complete but not confirmed, it is unsure whether the server has Handshake keys or ApplicationData keys, but it's very unlikely to have both.  As such, sending something ack-eliciting from both PN spaces is safest.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3613#issuecomment-630099015">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYRDZCTMF4WVLJ4FCDRSEGFBANCNFSM4MVCFPRA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZBBBY5BKYD7HGDETLRSEGFBA5CNFSM4MVCFPRKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWHIYRY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3613#issuecomment-630099015",
"url": "https://github.com/quicwg/base-drafts/issues/3613#issuecomment-630099015",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec266505e1f_1e223fdb628cd96c11448--


From nobody Mon May 18 03:53:40 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 D5ECE3A0AB2 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:53:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Y98K6qoO5Z1p for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 03:53:38 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B99443A0A9C for <quic-issues@ietf.org>; Mon, 18 May 2020 03:53:38 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 05FA2A1E13 for <quic-issues@ietf.org>; Mon, 18 May 2020 03:53:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589799218; bh=XPgFPt7MZMzEbTchdk0DBithZ28p1J9Y6AxBllEzeVw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=T6B8FejVU2dJpVrA0CMvygnifMA+d/nNKR6zyd6ZR+L5bnAmZu/ODL1UTs2/FjG33 jvF+v5rmPYdLB4LThClAUhMAJKP8niT/2mcLSdJpPhnt4QKpI10Z9j6jZI8Pm0X0T7 dsZNXn9niHa8bh263hoqaHDRPa/4mz5LdcRzGDLQ=
Date: Mon, 18 May 2020 03:53:37 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4MMXN27FQ54WEGZVN4ZZFDDEVBNHHCISIS5I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3605/630104273@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3605@github.com>
References: <quicwg/base-drafts/issues/3605@github.com>
Subject: Re: [quicwg/base-drafts] Formatting of persistent congestion text (#3605)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec26931ea49d_70dc3fb0f2ecd96011629a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6Sfolh3NNlw4aqsLZBx61swrnQU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 10:53:40 -0000

----==_mimepart_5ec26931ea49d_70dc3fb0f2ecd96011629a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This looks fine when I'm viewing the markdown, and it's using ~~~ like the pseduocode is, so I'd expect it to render like the pseudocode does.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630104273
----==_mimepart_5ec26931ea49d_70dc3fb0f2ecd96011629a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>This looks fine when I'm viewing the markdown, and it's using ~~~ like the pseduocode is, so I'd expect it to render like the pseudocode does.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630104273">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3Y76LLYHP563FROC3RSEHTDANCNFSM4MTMLWQQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6DGJUHDWT577D53GLRSEHTDA5CNFSM4MTMLWQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWHKBUI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630104273",
"url": "https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630104273",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec26931ea49d_70dc3fb0f2ecd96011629a--


From nobody Mon May 18 04:05:31 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 950483A0AD7 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 04:05:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.2
X-Spam-Level: 
X-Spam-Status: No, score=-0.2 tagged_above=-999 required=5 tests=[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 FmnwsQPbQzP1 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 04:05:28 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BF6F73A09DF for <quic-issues@ietf.org>; Mon, 18 May 2020 04:05:28 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id C602496026C for <quic-issues@ietf.org>; Mon, 18 May 2020 04:05:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589799927; bh=PYWRUWPxd+0klwv+FGEUf1ZUa6EZiTHr02QwNcWyV8M=; h=Date:From:To:Subject:From; b=MwrLA3CDu690gJ8pbJw/azCHhiz1f597idX9Owy1ye48cYeXtf9LvjH2xps2e4HSD CCAqIAmJ+jhP1/cgrZqInc6LgOPiWngkT8RyOXGhhVzhzXwCZAQTN8iVdsetl+WB+V QSifH8uZgO3bV8pd3FbiWNvhWgDtqOgi3tFlcBLo=
Date: Mon, 18 May 2020 04:05:27 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-include-ack-delay/000000-f2d818@github.com>
Subject: [quicwg/base-drafts] f2d818: Include ack_delay when deciding with PN space to a...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7XUXy5FXsFGE8WzmcUEsws_eL9c>
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: Mon, 18 May 2020 11:05:31 -0000

  Branch: refs/heads/ianswett-include-ack-delay
  Home:   https://github.com/quicwg/base-drafts
  Commit: f2d81814258d21f2d3e8936a9d3bc8aabcc3430b
      https://github.com/quicwg/base-drafts/commit/f2d81814258d21f2d3e8936a9d3bc8aabcc3430b
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Include ack_delay when deciding with PN space to arm PTO for

Updates the pseudocode to match the text.

Fixes #3564



From nobody Mon May 18 04:06:01 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 7BC793A0A9D for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 04:05:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.082
X-Spam-Level: 
X-Spam-Status: No, score=0.082 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.282, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 gq6b4qyFIft2 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 04:05:58 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4E2723A09DF for <quic-issues@ietf.org>; Mon, 18 May 2020 04:05:58 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 76515660A0E for <quic-issues@ietf.org>; Mon, 18 May 2020 04:05:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589799957; bh=JX7piQL+8PSVHWDW1IskrnlJ8REs11VSUxFA7hB2AV0=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=nUez6ckfCDoS+ddUD7oIgZ+UoBwlnk9Yp8S4eRsVBdSihJN8eMCA8370vq293rvYW QatsIWmf9+aXiA501roV7vuY8S/46Aot+wHighhhwJHzwBZY9AHqhWQADp4fRo9I5U /0+i1vj5Q1XCtjmI7dScln5+B0TTnr/6q8OOA6DA=
Date: Mon, 18 May 2020 04:05:57 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYJW6MTSL2EDXVFLYN4ZZGRLEVBNHHCJ5SAW4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3666@github.com>
Subject: [quicwg/base-drafts] Include ack_delay when deciding with PN space to arm PTO for (#3666)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec26c1567158_7aaa3f9b7a0cd96015982d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cRAey77iAKXJUD2BYjaXcsmobt8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 11:05:59 -0000

----==_mimepart_5ec26c1567158_7aaa3f9b7a0cd96015982d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Updates the pseudocode to match the text.

Fixes #3564
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3666

-- Commit Summary --

  * Include ack_delay when deciding with PN space to arm PTO for

-- File Changes --

    M draft-ietf-quic-recovery.md (31)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3666.patch
https://github.com/quicwg/base-drafts/pull/3666.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3666

----==_mimepart_5ec26c1567158_7aaa3f9b7a0cd96015982d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Updates the pseudocode to match the text.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3564.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="592163912" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3564" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3564/hovercard" href="https://github.com/quicwg/base-drafts/issues/3564">#3564</a></p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3666'>https://github.com/quicwg/base-drafts/pull/3666</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Include ack_delay when deciding with PN space to arm PTO for</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3666/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (31)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3666.patch'>https://github.com/quicwg/base-drafts/pull/3666.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3666.diff'>https://github.com/quicwg/base-drafts/pull/3666.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3666">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4CQ6CZ7S6YRJL3YRTRSEJBLANCNFSM4ND7HVNQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2CE3VUY4GDVPG6HGDRSEJBLA5CNFSM4ND7HVN2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JHWIC3Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3666",
"url": "https://github.com/quicwg/base-drafts/pull/3666",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec26c1567158_7aaa3f9b7a0cd96015982d--


From nobody Mon May 18 04:06:31 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 4D41F3A0A9D for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 04:06:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 PDgM_Y5M4P46 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 04:06:27 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B1D673A09DF for <quic-issues@ietf.org>; Mon, 18 May 2020 04:06:27 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id B1A908C0912 for <quic-issues@ietf.org>; Mon, 18 May 2020 04:06:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589799986; bh=PZH0PbKCZKMvhG6WJRB21Mj5xdNAisKUjhlQd1G42Xg=; h=Date:From:To:Subject:From; b=Le16nS+AmzK7WdUrFCIq994CZnOL1TxKK72kJCH30RC76l9G9wZFwrL7t+cb/o8Ma mtISRCSxYZJfJ7yJ0AIUaxA0Z/Onp3f18uzjX67cYs1Q324/qzlAWRAO4BBQ9vmnRo AsVIOKhEgznn/Cf4K95SBhhu7X408Hgq1znJZDIo=
Date: Mon, 18 May 2020 04:06:26 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d73a3c-1b3bb7@github.com>
Subject: [quicwg/base-drafts] 1b3bb7: Script updating gh-pages from f2d81814. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mOmtULwNrkw6lqAEdGtY2ocamTE>
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: Mon, 18 May 2020 11:06:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1b3bb708f5b752386210699b89c4eac21d341b95
      https://github.com/quicwg/base-drafts/commit/1b3bb708f5b752386210699b89c4eac21d341b95
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    A ianswett-include-ack-delay/draft-ietf-quic-http.html
    A ianswett-include-ack-delay/draft-ietf-quic-http.txt
    A ianswett-include-ack-delay/draft-ietf-quic-invariants.html
    A ianswett-include-ack-delay/draft-ietf-quic-invariants.txt
    A ianswett-include-ack-delay/draft-ietf-quic-qpack.html
    A ianswett-include-ack-delay/draft-ietf-quic-qpack.txt
    A ianswett-include-ack-delay/draft-ietf-quic-recovery.html
    A ianswett-include-ack-delay/draft-ietf-quic-recovery.txt
    A ianswett-include-ack-delay/draft-ietf-quic-tls.html
    A ianswett-include-ack-delay/draft-ietf-quic-tls.txt
    A ianswett-include-ack-delay/draft-ietf-quic-transport.html
    A ianswett-include-ack-delay/draft-ietf-quic-transport.txt
    A ianswett-include-ack-delay/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from f2d81814. [ci skip]



From nobody Mon May 18 05:18:18 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 0CD8D3A0B42 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 05:18:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.2
X-Spam-Level: 
X-Spam-Status: No, score=-0.2 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 nAZYAs8ikxE5 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 05:18:15 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B6C393A0B40 for <quic-issues@ietf.org>; Mon, 18 May 2020 05:18:15 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 5F158C602D1 for <quic-issues@ietf.org>; Mon, 18 May 2020 05:18:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589804294; bh=2PwgVVrFYd6mWgTi995g51SUdRcvwjCQGZD/Fwis9ZM=; h=Date:From:To:Subject:From; b=KclYa1ClBg0Ztfl3WTCSBvNl9CLYhbBVsJklw5kkb1bXF6R0oISnfBw7rwcWVl4Jd JV4XhIguy7JcZNcYZc9x8PPXjLRldzhQYjnOfsJ0u+dR+02OOb1bgZiX3n8PLVHs24 ku52+gh6+XAcyWw6cJzyybYEyN5XngIduqRDu9GE=
Date: Mon, 18 May 2020 05:18:14 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-include-ack-delay/f2d818-5e8f35@github.com>
Subject: [quicwg/base-drafts] 5e8f35: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dlo7DG9YrtvwtS4tYxxFH5ugpn0>
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: Mon, 18 May 2020 12:18:17 -0000

  Branch: refs/heads/ianswett-include-ack-delay
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5e8f35e65344718137dd5c85776cfd95baffdb69
      https://github.com/quicwg/base-drafts/commit/5e8f35e65344718137dd5c85776cfd95baffdb69
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Mon May 18 05:18:26 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 49F723A0B42 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 05:18:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.497
X-Spam-Level: 
X-Spam-Status: No, score=-0.497 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, 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 ARlipqyoGbeN for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 05:18:25 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 19CA03A0B43 for <quic-issues@ietf.org>; Mon, 18 May 2020 05:18:25 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id A02211210E4 for <quic-issues@ietf.org>; Mon, 18 May 2020 05:18:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589804304; bh=yYZgNyrovdhSxo5cZ7Y5n2ClAKX0zVXBPjlgP9Yss8U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2BiJ6JzhjdXkt87TYIAbWuc5TQSy2I1ast4+6bd7HG+PcYzzWq+RyPFim3AjDrWQG mjZxHye+Vri6nqS5ft1Afg5RMLFXAVLULULiLaRDjj33U+EF3y+0Imlly+TNOH/mcl 5sb6gbfpGujirONHDE4jpwG5TC4ywaerKm2meFI0=
Date: Mon, 18 May 2020 05:18:24 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3666/push/5089649213@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3666@github.com>
References: <quicwg/base-drafts/pull/3666@github.com>
Subject: Re: [quicwg/base-drafts] Include ack_delay when deciding with PN space to arm PTO for (#3666)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec27d107b2be_3b123f91c8ecd9681840fb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8TQrX48BPNX04O4Y_NUiIHnZ1Fc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 12:18:26 -0000

----==_mimepart_5ec27d107b2be_3b123f91c8ecd9681840fb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

5e8f35e65344718137dd5c85776cfd95baffdb69  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3666/files/f2d81814258d21f2d3e8936a9d3bc8aabcc3430b..5e8f35e65344718137dd5c85776cfd95baffdb69

----==_mimepart_5ec27d107b2be_3b123f91c8ecd9681840fb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/5e8f35e65344718137dd5c85776cfd95baffdb69">5e8f35e</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3666/files/f2d81814258d21f2d3e8936a9d3bc8aabcc3430b..5e8f35e65344718137dd5c85776cfd95baffdb69">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK42QDZWSEGZAXGXVETRSERRBANCNFSM4ND7HVNQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK67NEBSRJXFSFHUY6LRSERRBA5CNFSM4ND7HVN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSNBSG42TGMCQOVZWQIZVGA4DSNRUHEZDCMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3666/files/f2d81814258d21f2d3e8936a9d3bc8aabcc3430b..5e8f35e65344718137dd5c85776cfd95baffdb69",
"url": "https://github.com/quicwg/base-drafts/pull/3666/files/f2d81814258d21f2d3e8936a9d3bc8aabcc3430b..5e8f35e65344718137dd5c85776cfd95baffdb69",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec27d107b2be_3b123f91c8ecd9681840fb--


From nobody Mon May 18 05:19:11 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 5A5BC3A0B42 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 05:19:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[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] 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 KjkBv6cv-CFb for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 05:19:09 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 399BB3A0B40 for <quic-issues@ietf.org>; Mon, 18 May 2020 05:19:09 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 83E259602AF for <quic-issues@ietf.org>; Mon, 18 May 2020 05:19:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589804348; bh=LdGizm1qCchJo1N0b7oFAThjyHhMuua2bfdveuXNSm0=; h=Date:From:To:Subject:From; b=w2r1u1xY9UofvL71vX9oRPKtWN9HuNKFkqRX82LNsR6r8w/S2QH3d+Y/H8iBrwSn4 pUnmTewB7l0GnOFjhsDNqA8zL76tqP5Z0wm6kQdinru6CgVVISbpCec64NUmXSeMPZ DEKsJxb/BzWCRhrMgGlWrHDIT4FlXQNKAorM9OZE=
Date: Mon, 18 May 2020 05:19:08 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1b3bb7-e9e669@github.com>
Subject: [quicwg/base-drafts] e9e669: Script updating gh-pages from 5e8f35e6. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/U-hln0uIXpNMmayMUNVz2By4pJg>
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: Mon, 18 May 2020 12:19:10 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e9e6699ac6d1f640fcacd5ac9dd7cc333e9519f9
      https://github.com/quicwg/base-drafts/commit/e9e6699ac6d1f640fcacd5ac9dd7cc333e9519f9
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M ianswett-include-ack-delay/draft-ietf-quic-recovery.html
    M ianswett-include-ack-delay/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 5e8f35e6. [ci skip]



From nobody Mon May 18 10:01:59 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 19FF63A08F0 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:01:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.199
X-Spam-Level: 
X-Spam-Status: No, score=-1.199 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 3wO1AnJHg76z for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:01:55 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B8EE23A08ED for <quic-issues@ietf.org>; Mon, 18 May 2020 10:01:55 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id B9EC28C10CE for <quic-issues@ietf.org>; Mon, 18 May 2020 10:01:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589821314; bh=QZDQ8rDAnLMnYaVzZr9bZNBLEb7c28xfr9+RluuJMK0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=M4WLqOJY3qCzidHOMfvgNNi3Gc0xPiy9pD2Xekm77yfIRlZk+Fl7YVWiVZn5x/j5X r54qoC+QuqEN2xaSCNx2GTt5GtZ8t+BQzPU4PpUNqbLtyA6E1a8H3PIVONvIXViRZg m7YYwdklZRKe3LOWpRlyrMwEtM122cDFaGRgBulQ=
Date: Mon, 18 May 2020 10:01:54 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6P7THYSJ3BBDD5XSF4Z2QIFEVBNHHCJ5SAW4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3666/review/413750535@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3666@github.com>
References: <quicwg/base-drafts/pull/3666@github.com>
Subject: Re: [quicwg/base-drafts] Include ack_delay when deciding with PN space to arm PTO for (#3666)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec2bf82a9acc_b4b3ff6c18cd9601112a7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7XR3y1hrLqVh1xVO7hJ1tFunNwo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 17:01:58 -0000

----==_mimepart_5ec2bf82a9acc_b4b3ff6c18cd9601112a7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke requested changes on this pull request.



> -  space = Initial
-  for pn_space in [ Handshake, ApplicationData ]:
-    if (times[pn_space] != 0 &&
-        (time == 0 || times[pn_space] < time) &&
-        # Skip ApplicationData until handshake completion.
-        (pn_space != ApplicationData ||
-          IsHandshakeComplete()):
-      time = times[pn_space];
-      space = pn_space
+GetEarliestTimeAndSpace(times, ack_delay):
+  time, space = times[Initial], Initial
+  if (times[Handshake] != 0 &&
+      (time == 0 || times[Handshake] < time)):
+    time, space = times[Handshake], Handshake
+  # Skip ApplicationData until handshake completion.
+  if (pn_space == ApplicationData &&

I think we need to delete this line.

> @@ -1270,7 +1273,7 @@ PeerCompletedAddressValidation():
        has received HANDSHAKE_DONE
 
 SetLossDetectionTimer():
-  earliest_loss_time, _ = GetEarliestTimeAndSpace(loss_time)
+  earliest_loss_time, _ = GetEarliestTimeAndSpace(loss_time, 0)
   if (earliest_loss_time != 0):
     // Time threshold loss detection.

I confess to not really understanding this bit of code at all. If any packet has been sent in any PN space, we don't actually  go through the motions of setting the timer? Before we check for anti-amplification limit, etc?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3666#pullrequestreview-413750535
----==_mimepart_5ec2bf82a9acc_b4b3ff6c18cd9601112a7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinduke</b> requested changes on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3666#discussion_r426747650">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; -  space = Initial
-  for pn_space in [ Handshake, ApplicationData ]:
-    if (times[pn_space] != 0 &amp;&amp;
-        (time == 0 || times[pn_space] &lt; time) &amp;&amp;
-        # Skip ApplicationData until handshake completion.
-        (pn_space != ApplicationData ||
-          IsHandshakeComplete()):
-      time = times[pn_space];
-      space = pn_space
+GetEarliestTimeAndSpace(times, ack_delay):
+  time, space = times[Initial], Initial
+  if (times[Handshake] != 0 &amp;&amp;
+      (time == 0 || times[Handshake] &lt; time)):
+    time, space = times[Handshake], Handshake
+  # Skip ApplicationData until handshake completion.
+  if (pn_space == ApplicationData &amp;&amp;
</pre>
<p>I think we need to delete this line.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3666#discussion_r426769057">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1270,7 +1273,7 @@ PeerCompletedAddressValidation():
        has received HANDSHAKE_DONE
 
 SetLossDetectionTimer():
-  earliest_loss_time, _ = GetEarliestTimeAndSpace(loss_time)
+  earliest_loss_time, _ = GetEarliestTimeAndSpace(loss_time, 0)
   if (earliest_loss_time != 0):
     // Time threshold loss detection.
</pre>
<p>I confess to not really understanding this bit of code at all. If any packet has been sent in any PN space, we don't actually  go through the motions of setting the timer? Before we check for anti-amplification limit, etc?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3666#pullrequestreview-413750535">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5U5NMUKCQXHMS7NA3RSFSYFANCNFSM4ND7HVNQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZL4B5PE4GNHCC6BHTRSFSYFA5CNFSM4ND7HVN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCUVKBY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3666#pullrequestreview-413750535",
"url": "https://github.com/quicwg/base-drafts/pull/3666#pullrequestreview-413750535",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec2bf82a9acc_b4b3ff6c18cd9601112a7--


From nobody Mon May 18 10:40:17 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 439203A0A81 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:40:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.081
X-Spam-Level: 
X-Spam-Status: No, score=0.081 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.282, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ficjBX8yWCen for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:40:02 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 07F813A0A43 for <quic-issues@ietf.org>; Mon, 18 May 2020 10:40:01 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id E4916C60BE4 for <quic-issues@ietf.org>; Mon, 18 May 2020 10:40:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589823600; bh=aD1ZtoVNj8FWfXF0i/2rd8BWxZF4w3eimNNYagITkn8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OErUo6SNAjn84LYmWviUEacsCC4fiq8OmHXjhxuN1Sr3NEKZABawuWF6Aj2YhToea MKx98M0sId6Zp1TrP77OfOoH8wc2pJhf9Pc9KDe3CAqkzU0kGDURqI7TGicx4omWZy 0BIvUYOe/ADMAuaCyUdNQeKsYsN1czKSdkxPF92w=
Date: Mon, 18 May 2020 10:40:00 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3PG3WEXIDR3ZWJR454Z2UXBEVBNHHCJ5SAW4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3666/review/413805442@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3666@github.com>
References: <quicwg/base-drafts/pull/3666@github.com>
Subject: Re: [quicwg/base-drafts] Include ack_delay when deciding with PN space to arm PTO for (#3666)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec2c870d58bd_2fd23f8b7c4cd96068682"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fSnR30t6-phsllpUXUI9nl_TTO8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 17:40:10 -0000

----==_mimepart_5ec2c870d58bd_2fd23f8b7c4cd96068682
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> -  space = Initial
-  for pn_space in [ Handshake, ApplicationData ]:
-    if (times[pn_space] != 0 &&
-        (time == 0 || times[pn_space] < time) &&
-        # Skip ApplicationData until handshake completion.
-        (pn_space != ApplicationData ||
-          IsHandshakeComplete()):
-      time = times[pn_space];
-      space = pn_space
+GetEarliestTimeAndSpace(times, ack_delay):
+  time, space = times[Initial], Initial
+  if (times[Handshake] != 0 &&
+      (time == 0 || times[Handshake] < time)):
+    time, space = times[Handshake], Handshake
+  # Skip ApplicationData until handshake completion.
+  if (pn_space == ApplicationData &&

Done.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3666#discussion_r426791030
----==_mimepart_5ec2c870d58bd_2fd23f8b7c4cd96068682
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3666#discussion_r426791030">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; -  space = Initial
-  for pn_space in [ Handshake, ApplicationData ]:
-    if (times[pn_space] != 0 &amp;&amp;
-        (time == 0 || times[pn_space] &lt; time) &amp;&amp;
-        # Skip ApplicationData until handshake completion.
-        (pn_space != ApplicationData ||
-          IsHandshakeComplete()):
-      time = times[pn_space];
-      space = pn_space
+GetEarliestTimeAndSpace(times, ack_delay):
+  time, space = times[Initial], Initial
+  if (times[Handshake] != 0 &amp;&amp;
+      (time == 0 || times[Handshake] &lt; time)):
+    time, space = times[Handshake], Handshake
+  # Skip ApplicationData until handshake completion.
+  if (pn_space == ApplicationData &amp;&amp;
</pre>
<p>Done.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3666#discussion_r426791030">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3TGXIRTEZHQ5X4LR3RSFXHBANCNFSM4ND7HVNQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYB2RCBPOFZDNP5XADRSFXHBA5CNFSM4ND7HVN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCVCXAQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3666#discussion_r426791030",
"url": "https://github.com/quicwg/base-drafts/pull/3666#discussion_r426791030",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec2c870d58bd_2fd23f8b7c4cd96068682--


From nobody Mon May 18 10:40:38 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 C335D3A09AC for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:40:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.2
X-Spam-Level: 
X-Spam-Status: No, score=-0.2 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 jqBK_PIEFjrI for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:40:34 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6C9953A0A1F for <quic-issues@ietf.org>; Mon, 18 May 2020 10:40:34 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 721B2281819 for <quic-issues@ietf.org>; Mon, 18 May 2020 10:40:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589823633; bh=OcugdtgzBRBBi/QViNcWtnsKpNvbCmE9pPki05amLRA=; h=Date:From:To:Subject:From; b=uWtXeTRk8Ow0+2PeF43lRwPLBzWfLr0sHd2tBQWyj11XdopCitTGI8JLxzenv0B5V AKsD+7jqHW38yOhbllEgzd+46yWV1bSUx/c13YHrHqaOScAxaswSAg1gdD5tr5za0Y Dpdn8xV52gt0YfM5k2ddBcb5rSZS+NrMkdPltJDA=
Date: Mon, 18 May 2020 10:40:33 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-include-ack-delay/5e8f35-0c3f6f@github.com>
Subject: [quicwg/base-drafts] 0c3f6f: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gJvFyNsXwvCruJZrR9E4qslIvlY>
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: Mon, 18 May 2020 17:40:37 -0000

  Branch: refs/heads/ianswett-include-ack-delay
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0c3f6fcf1867ac2d9740ba07f029e3fe47427419
      https://github.com/quicwg/base-drafts/commit/0c3f6fcf1867ac2d9740ba07f029e3fe47427419
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Mon May 18 10:40:48 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 8D9333A0A21 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:40:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.5
X-Spam-Level: 
X-Spam-Status: No, score=-0.5 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 JacT-KbWAcTh for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:40:43 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DF9B93A0A1B for <quic-issues@ietf.org>; Mon, 18 May 2020 10:40:42 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 0005AA044C for <quic-issues@ietf.org>; Mon, 18 May 2020 10:40:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589823642; bh=1ZC85P01aluNzXfYNb35R2sJfxp1vGCZCaSnTeAikNA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=phfsoJTzbCdoz61r7hAi5sDgU/V2RoQ3NtePOZrTGSgFGqstaz3ZeKtH7zTBKYY40 L4SO0EtLWTTnwnFeXpdWTAFsvcjLu+nfT1BV2G+a0zPxmzRX1x7ySJfWHYewz5ey0u G2COrO02KQzV5RcKf5WGsOyEZqmPCojlREwbsk/Y=
Date: Mon, 18 May 2020 10:40:41 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3666/push/5091442113@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3666@github.com>
References: <quicwg/base-drafts/pull/3666@github.com>
Subject: Re: [quicwg/base-drafts] Include ack_delay when deciding with PN space to arm PTO for (#3666)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec2c899e4eec_408d3fe5d4ccd96410415e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xMl7kv9_gZyrN1qgBZXGvFZymDw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 17:40:47 -0000

----==_mimepart_5ec2c899e4eec_408d3fe5d4ccd96410415e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

0c3f6fcf1867ac2d9740ba07f029e3fe47427419  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3666/files/5e8f35e65344718137dd5c85776cfd95baffdb69..0c3f6fcf1867ac2d9740ba07f029e3fe47427419

----==_mimepart_5ec2c899e4eec_408d3fe5d4ccd96410415e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/0c3f6fcf1867ac2d9740ba07f029e3fe47427419">0c3f6fc</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3666/files/5e8f35e65344718137dd5c85776cfd95baffdb69..0c3f6fcf1867ac2d9740ba07f029e3fe47427419">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2YC4F4TUBBUVVHJZ3RSFXJTANCNFSM4ND7HVNQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK26T4DLHYFUGUO6RVDRSFXJTA5CNFSM4ND7HVN2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSNBSG42TGMCQOVZWQIZVGA4TCNBUGIYTCMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3666/files/5e8f35e65344718137dd5c85776cfd95baffdb69..0c3f6fcf1867ac2d9740ba07f029e3fe47427419",
"url": "https://github.com/quicwg/base-drafts/pull/3666/files/5e8f35e65344718137dd5c85776cfd95baffdb69..0c3f6fcf1867ac2d9740ba07f029e3fe47427419",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec2c899e4eec_408d3fe5d4ccd96410415e--


From nobody Mon May 18 10:41:59 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 864A73A0A24 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:41:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 P6t6eVQbj6v3 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:41:55 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 885F03A0A21 for <quic-issues@ietf.org>; Mon, 18 May 2020 10:41:55 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 0AA01120FA8 for <quic-issues@ietf.org>; Mon, 18 May 2020 10:41:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589823715; bh=i2jm3JEdmCwfhxgsSyttH4vG7/zNzy9Wi24FSkL8Znw=; h=Date:From:To:Subject:From; b=xHUZsOXp8uK3xHo9r8NR2SsY6Ixn59oljiXKj3IZuNbI77eEqqdqAKxi22SG2ZRZJ Xas3AjlBU841EyIHNKrBUaXhGdRNlAKhyaZI+iG0Stald+w/71cKP9+4ws1Y7ceSya TAFXPNGtx+2w6WSM70yU7TaKYpiPOQlYS9D0tgps=
Date: Mon, 18 May 2020 10:41:54 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e9e669-e1bfa4@github.com>
Subject: [quicwg/base-drafts] e1bfa4: Script updating gh-pages from 0c3f6fcf. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7u1U8dKAFuuGFrZogkr5UMc7YkY>
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: Mon, 18 May 2020 17:41:57 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e1bfa48a4b5f404bf6b5a7b355746b4dcd90ec5a
      https://github.com/quicwg/base-drafts/commit/e1bfa48a4b5f404bf6b5a7b355746b4dcd90ec5a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M ianswett-include-ack-delay/draft-ietf-quic-recovery.html
    M ianswett-include-ack-delay/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 0c3f6fcf. [ci skip]



From nobody Mon May 18 10:42:10 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 E15673A0A24 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:42:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 iQ5O4D8Q88Jb for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:42:08 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E6E3E3A0A1D for <quic-issues@ietf.org>; Mon, 18 May 2020 10:42:07 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 3697E660E5E for <quic-issues@ietf.org>; Mon, 18 May 2020 10:42:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589823727; bh=Oo1ZbQyaX1AzeSv3s96oYuStjaK5AlbFqZUKWykyZUo=; h=Date:From:To:Subject:From; b=hkbj9PR5fXWjsnu6OSTg3q+StTdzyl1UbhJZL6z2obAecBcxjGG0HEZmx2zVJm5I4 b2yquFHK03H/zD1h3rr0VgEmkOaLnlx5uNzISuYZD151xjQiNMuo3kZ+br5u4mDS+H mOwEu52nUB/faxFr+MZe4QMbk3BsIdVJWLz74Ayk=
Date: Mon, 18 May 2020 10:42:07 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e1bfa4-b520ba@github.com>
Subject: [quicwg/base-drafts] b520ba: Script updating archive at 2020-05-18T17:41:45Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aejyZymhIm5ztfhOzjk3JhBgBEU>
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: Mon, 18 May 2020 17:42:09 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b520baff74e3e36bf4deb94f19c2c8c8e6b04478
      https://github.com/quicwg/base-drafts/commit/b520baff74e3e36bf4deb94f19c2c8c8e6b04478
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-18T17:41:45Z. [ci skip]



From nobody Mon May 18 10:45:13 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 925763A09BA for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:45:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 H6hQe9RQ_TM0 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 10:45:10 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ED2873A09B5 for <quic-issues@ietf.org>; Mon, 18 May 2020 10:45:09 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 09A98C60619 for <quic-issues@ietf.org>; Mon, 18 May 2020 10:45:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589823909; bh=QoZf5fkv3awmRlN4SMjRUjFo67cYYxjRZLuzVQDizQM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=emzA0P0OnvI12rYnJf3V+M0FYoJs3stnHnYfVckcGku4pKECcZ8ptP5wOdNn6hZJd xBG1zmb3sBhagbxF1ph2BQf+rUoh4DV3x34tzxdi1ElHnEuq2YyXpP9l4dsc/hYxkr fmTS8rIQmZNoI0U2tQzAtfHo9oGB41mwp+fyYZaI=
Date: Mon, 18 May 2020 10:45:08 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZDGUMSZJGNPE7SNO54Z2VKJEVBNHHCJ5SAW4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3666/review/413808778@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3666@github.com>
References: <quicwg/base-drafts/pull/3666@github.com>
Subject: Re: [quicwg/base-drafts] Include ack_delay when deciding with PN space to arm PTO for (#3666)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec2c9a4ef7ef_3e033f9e4d2cd96012691a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4wsml4OEVCGWbZlakDzIGifkt9Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 17:45:12 -0000

----==_mimepart_5ec2c9a4ef7ef_3e033f9e4d2cd96012691a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> @@ -1270,7 +1273,7 @@ PeerCompletedAddressValidation():
        has received HANDSHAKE_DONE
 
 SetLossDetectionTimer():
-  earliest_loss_time, _ = GetEarliestTimeAndSpace(loss_time)
+  earliest_loss_time, _ = GetEarliestTimeAndSpace(loss_time, 0)
   if (earliest_loss_time != 0):
     // Time threshold loss detection.

loss_time tracks packets which may need to be declared lost.   The GetEarliestTimeAndSpace method operates on loss_times and time_of_last_sent_ack_eliciting_packet.  There were two methods, but they were doing the same thing.  This Issue/PR makes them sharing a method a bit more awkward, but it seems ok overall.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3666#discussion_r426793692
----==_mimepart_5ec2c9a4ef7ef_3e033f9e4d2cd96012691a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3666#discussion_r426793692">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1270,7 +1273,7 @@ PeerCompletedAddressValidation():
        has received HANDSHAKE_DONE
 
 SetLossDetectionTimer():
-  earliest_loss_time, _ = GetEarliestTimeAndSpace(loss_time)
+  earliest_loss_time, _ = GetEarliestTimeAndSpace(loss_time, 0)
   if (earliest_loss_time != 0):
     // Time threshold loss detection.
</pre>
<p>loss_time tracks packets which may need to be declared lost.   The GetEarliestTimeAndSpace method operates on loss_times and time_of_last_sent_ack_eliciting_packet.  There were two methods, but they were doing the same thing.  This Issue/PR makes them sharing a method a bit more awkward, but it seems ok overall.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3666#discussion_r426793692">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK32FQNPHLFN6WOR2KLRSFX2JANCNFSM4ND7HVNQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5WGFZXT6T44LDCOKTRSFX2JA5CNFSM4ND7HVN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCVDRCQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3666#discussion_r426793692",
"url": "https://github.com/quicwg/base-drafts/pull/3666#discussion_r426793692",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec2c9a4ef7ef_3e033f9e4d2cd96012691a--


From nobody Mon May 18 11:26:07 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 276383A0CBD for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 11:26:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.5
X-Spam-Level: 
X-Spam-Status: No, score=-0.5 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 pqzeaVwEgbgE for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 11:26:04 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B43833A0CBC for <quic-issues@ietf.org>; Mon, 18 May 2020 11:26:04 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 45A7A282DAF for <quic-issues@ietf.org>; Mon, 18 May 2020 11:26:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589826363; bh=DgevO8qxl1KDiRzZ09KZ4KSKyGJfuD4L4vmvnfs2KTk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GWMlWWIDlWnl80sXSW/C3Ar1tRPacfPrOEMhZvUyigOwWH1U+EVAWUXJaoQmQ4hN/ oY2mwYzA4hn3qXHMkrjfGW3uS1EtuMstEbjX2pbhiWh+Vx4br1ONpLnutI2Z7HLJHB l0OfClvowdsEZqnOMcDjIURzXv6WwDs23jnCS2KE=
Date: Mon, 18 May 2020 11:26:03 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5PCMY4GPJU3OYG5X54Z22DXEVBNHHCJ5SAW4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3666/review/413836204@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3666@github.com>
References: <quicwg/base-drafts/pull/3666@github.com>
Subject: Re: [quicwg/base-drafts] Include ack_delay when deciding with PN space to arm PTO for (#3666)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec2d33b36e3e_49383ff7938cd96014871f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wU6ugsxJKDpvNuKwJb5qK-M8Tf8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 18:26:06 -0000

----==_mimepart_5ec2d33b36e3e_49383ff7938cd96014871f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke commented on this pull request.



> @@ -1270,7 +1273,7 @@ PeerCompletedAddressValidation():
        has received HANDSHAKE_DONE
 
 SetLossDetectionTimer():
-  earliest_loss_time, _ = GetEarliestTimeAndSpace(loss_time)
+  earliest_loss_time, _ = GetEarliestTimeAndSpace(loss_time, 0)
   if (earliest_loss_time != 0):
     // Time threshold loss detection.

Ah, I managed to miss that the argument is loss_time. My mistake.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3666#discussion_r426815304
----==_mimepart_5ec2d33b36e3e_49383ff7938cd96014871f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinduke</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3666#discussion_r426815304">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1270,7 +1273,7 @@ PeerCompletedAddressValidation():
        has received HANDSHAKE_DONE
 
 SetLossDetectionTimer():
-  earliest_loss_time, _ = GetEarliestTimeAndSpace(loss_time)
+  earliest_loss_time, _ = GetEarliestTimeAndSpace(loss_time, 0)
   if (earliest_loss_time != 0):
     // Time threshold loss detection.
</pre>
<p>Ah, I managed to miss that the argument is loss_time. My mistake.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3666#discussion_r426815304">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK42DJ4HHJ477W5QESTRSF4TXANCNFSM4ND7HVNQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2EAHQWCOHNQFZYCVLRSF4TXA5CNFSM4ND7HVN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCVKHLA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3666#discussion_r426815304",
"url": "https://github.com/quicwg/base-drafts/pull/3666#discussion_r426815304",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec2d33b36e3e_49383ff7938cd96014871f--


From nobody Mon May 18 11:31:57 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 8E5713A0C35 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 11:31:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.429
X-Spam-Level: 
X-Spam-Status: No, score=0.429 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=1.629, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 ghPB44GFwcsj for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 11:31:53 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 794913A0C31 for <quic-issues@ietf.org>; Mon, 18 May 2020 11:31:53 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id B60C6521A58 for <quic-issues@ietf.org>; Mon, 18 May 2020 11:31:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589826712; bh=hakP49uLug0tZO/VVc6RS5qAD0ooiHwX2mn7tFtVCGA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=a725MimUZ9A9OIHPrXvEEzV/PjlGDctJcs9/EcedwQV10xBKdV2s6b4i5KHvplgvC 08rAan1HGuLZ2zosLDs7pOWK4gNwMint4GTHjeL0n0zN3eepgLknSNx00wrdTkSU6s q4Q9Wg1PEys0lWL+o0AlOXjq97IE5psC5q0DE/qQ=
Date: Mon, 18 May 2020 11:31:52 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6FVRKD5YT3IZXUFDV4Z22ZREVBNHHCJ5SAW4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3666/review/413839964@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3666@github.com>
References: <quicwg/base-drafts/pull/3666@github.com>
Subject: Re: [quicwg/base-drafts] Include ack_delay when deciding with PN space to arm PTO for (#3666)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec2d498a7137_275d3f98da6cd95c24788c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_0SnpTABodkB7WDzjhbgqoy7V_I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 18:31:55 -0000

----==_mimepart_5ec2d498a7137_275d3f98da6cd95c24788c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3666#pullrequestreview-413839964
----==_mimepart_5ec2d498a7137_275d3f98da6cd95c24788c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinduke</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3666#pullrequestreview-413839964">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3VTS4YE4SXQKLFV7TRSF5JRANCNFSM4ND7HVNQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ6ZRJN2YNZXFRZBY3RSF5JRA5CNFSM4ND7HVN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCVLEXA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3666#pullrequestreview-413839964",
"url": "https://github.com/quicwg/base-drafts/pull/3666#pullrequestreview-413839964",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec2d498a7137_275d3f98da6cd95c24788c--


From nobody Mon May 18 12:51:34 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 227F33A0A52 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 12:51:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.171
X-Spam-Level: 
X-Spam-Status: No, score=-0.171 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, HTML_SHORT_LINK_IMG_3=0.328, MAILING_LIST_MULTI=-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 7hN51dePun4X for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 12:51:30 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4AC533A0A40 for <quic-issues@ietf.org>; Mon, 18 May 2020 12:51:30 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 2DC492C1A7C for <quic-issues@ietf.org>; Mon, 18 May 2020 12:51:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589831489; bh=bLsjWaFqljLgzsbb8Aps4kR/TamYpG0LnvP/TCgcNeY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TMphvNyftkz4OyBeHmzyJnzJTkzrMbcPEzDD49crbMa/nUCXbnAtfT40aldIKt3SR Q3buVmPPdsaD+NNg9mqgus7w8fVfPN+e6qmckYS+Xsc37bl9BvsaamBbsGds44Wn8B Jo90J0CVeKtzUfYoMqZXdxi7A7QZZr91A8uekDGc=
Date: Mon, 18 May 2020 12:51:29 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4UOQKVEK3WQXPUFI54Z3EEDEVBNHHCISIS5I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3605/630400610@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3605@github.com>
References: <quicwg/base-drafts/issues/3605@github.com>
Subject: Re: [quicwg/base-drafts] Formatting of persistent congestion text (#3605)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec2e7411ee01_49883fd5e76cd96c30452f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LDq_efUemwVNeox9kGv4218JxeY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 19:51:33 -0000

----==_mimepart_5ec2e7411ee01_49883fd5e76cd96c30452f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It does render that way in the HTML version, it appears, with both Firefox and Chromium:
![image](https://user-images.githubusercontent.com/4273797/82253603-4b9f7a00-991f-11ea-96b1-3e6b3f72536f.png)

@martinthomson, what URL are you looking at, and in which browser?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630400610
----==_mimepart_5ec2e7411ee01_49883fd5e76cd96c30452f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>It does render that way in the HTML version, it appears, with both Firefox and Chromium:<br>
<a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/4273797/82253603-4b9f7a00-991f-11ea-96b1-3e6b3f72536f.png"><img src="https://user-images.githubusercontent.com/4273797/82253603-4b9f7a00-991f-11ea-96b1-3e6b3f72536f.png" alt="image" style="max-width:100%;"></a></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a>, what URL are you looking at, and in which browser?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630400610">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK52QJRTCQPZSTQHCPTRSGGUDANCNFSM4MTMLWQQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5XQKC7JNFTV4UA2QTRSGGUDA5CNFSM4MTMLWQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWJSMYQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630400610",
"url": "https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630400610",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec2e7411ee01_49883fd5e76cd96c30452f--


From nobody Mon May 18 12:56:36 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 A63A23A0B13 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 12:56:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.151
X-Spam-Level: 
X-Spam-Status: No, score=-0.151 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 CCVIdeIlGVCV for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 12:56:33 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D3C5F3A0B03 for <quic-issues@ietf.org>; Mon, 18 May 2020 12:56:32 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 50F2C66043E for <quic-issues@ietf.org>; Mon, 18 May 2020 12:56:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589831791; bh=x2yyaKbuA9Rp8opa+smJAu2DRxGL2YZIOPV0cyQtYqw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YW9XbFb9UMwYUJgGeOyupzNxQzpySzk7AaBK8D8zHgYK1ZfRGnGhYNy9naGyMFGk/ bskXwEiwJX0NbXr6wlRsDXgIWtDHXNqVB5LCoxJTZdy29pzauAtSsdb/qN/o45Eagc +6xGRCcHzrq/7yQt9JW7i/dhxhmTvZHRuwWKUeMY=
Date: Mon, 18 May 2020 12:56:31 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYD3FFQTDSEACON35V4Z3EW7EVBNHHCISIS5I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3605/630403026@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3605@github.com>
References: <quicwg/base-drafts/issues/3605@github.com>
Subject: Re: [quicwg/base-drafts] Formatting of persistent congestion text (#3605)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec2e86f429db_4543fbec92cd964260370"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/D0lkSRlKBhh8Ik-6rc0EQrlX75s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 19:56:35 -0000

----==_mimepart_5ec2e86f429db_4543fbec92cd964260370
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Seems to work in the editor's txt - https://quicwg.org/base-drafts/draft-ietf-quic-recovery.txt

Draft 27 though seems to be broken in all forms for me (Firefox76, https://tools.ietf.org/html/draft-ietf-quic-recovery-27#section-6.7)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630403026
----==_mimepart_5ec2e86f429db_4543fbec92cd964260370
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Seems to work in the editor's txt - <a href="https://quicwg.org/base-drafts/draft-ietf-quic-recovery.txt" rel="nofollow">https://quicwg.org/base-drafts/draft-ietf-quic-recovery.txt</a></p>
<p>Draft 27 though seems to be broken in all forms for me (Firefox76, <a href="https://tools.ietf.org/html/draft-ietf-quic-recovery-27#section-6.7" rel="nofollow">https://tools.ietf.org/html/draft-ietf-quic-recovery-27#section-6.7</a>)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630403026">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK37AIRQ6TNVBFJFXSDRSGHG7ANCNFSM4MTMLWQQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5AI3SMGX7ZCNO77HTRSGHG7A5CNFSM4MTMLWQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWJS7UQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630403026",
"url": "https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630403026",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec2e86f429db_4543fbec92cd964260370--


From nobody Mon May 18 13:01:37 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 68A543A0B29 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:01:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.082
X-Spam-Level: 
X-Spam-Status: No, score=0.082 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.282, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 JE8n_e9TTNwh for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:01:32 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 134CC3A0B6E for <quic-issues@ietf.org>; Mon, 18 May 2020 13:01:22 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 1B1F62C21C3 for <quic-issues@ietf.org>; Mon, 18 May 2020 13:01:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589832082; bh=whSP+nbJja5shhMtPmps/fq1VbJbHGtIY4SPYKoju0I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Dz7+1FM90oKe0AEejiwHTNJFzaIUu6Ag6kjitje2IBm4OzxctWbUe9sxQBtQW85IO HSyiWgc+4g6pvs8zzxab3nRvY/BIXMatZ3r9mTE2r2kuFuwoSJoxwkoBEaLCep3rek IgL+a+pBjvmUqlgJLzbRl1AHDlM8bM6r8B613Mn0=
Date: Mon, 18 May 2020 13:01:22 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5FR4O77TO5B4J4DQN4Z3FJFEVBNHHCJ5PG2I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/review/413899983@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec2e992c232_31963ff7c20cd95c2433da"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_sV1r18sXMMqFSEw_e0TR57S2KU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 20:01:36 -0000

----==_mimepart_5ec2e992c232_31963ff7c20cd95c2433da
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke commented on this pull request.



>  
 When a PTO timer expires, the PTO backoff MUST be increased, resulting in the
-PTO period being set to twice its current value.  The PTO period is set based
-on the latest RTT information after receiving an acknowledgement. The PTO
-backoff is reset upon receiving an acknowledgement unless it's a client unsure
-if the the server has validated the client's address. Not resetting the backoff
-during peer address validation ensures the client's anti-deadlock timer is not
-set too aggressively when the server is slow in responding with handshake data.
+PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement unless it's a client unsure if the the server has

s/the the/the

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-413899983
----==_mimepart_5ec2e992c232_31963ff7c20cd95c2433da
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinduke</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3665#discussion_r426862874">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;  
 When a PTO timer expires, the PTO backoff MUST be increased, resulting in the
-PTO period being set to twice its current value.  The PTO period is set based
-on the latest RTT information after receiving an acknowledgement. The PTO
-backoff is reset upon receiving an acknowledgement unless it&#39;s a client unsure
-if the the server has validated the client&#39;s address. Not resetting the backoff
-during peer address validation ensures the client&#39;s anti-deadlock timer is not
-set too aggressively when the server is slow in responding with handshake data.
+PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement unless it&#39;s a client unsure if the the server has
</pre>
<p>s/the the/the</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-413899983">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5MLAUIIMMA7RLW3QDRSGHZFANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK72IWKU3622ZJG7QZ3RSGHZFA5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCVZZTY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-413899983",
"url": "https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-413899983",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec2e992c232_31963ff7c20cd95c2433da--


From nobody Mon May 18 13:39:27 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 7CEE13A0BFA for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:39:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 UDjTsKRzvkCt for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:39:23 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7A76A3A08E0 for <quic-issues@ietf.org>; Mon, 18 May 2020 13:39:23 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 6E2ED9604A2 for <quic-issues@ietf.org>; Mon, 18 May 2020 13:39:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589834362; bh=AFkSAwouznn9vuZb1GTIuH2W1wyf+RbhvZv9pbNMeF4=; h=Date:From:To:Subject:From; b=aieHpJZ916G7ruJyHy9jPdpWo4tldkD9qCyuaYwP8tmHFN6RdaLQvIUYJOiuPgiHD RLMEHquAmPCoa0xsgOUvW89bQSEgnNqLmTtNco7yo7JMVaIzjOS/8Kuh8qMGn42y2K OpX3ZCaeVHdFbhmKTPII5a/Oo+NsMKUTbLdD2/J8=
Date: Mon, 18 May 2020 13:39:22 -0700
From: Dmitri Tikhonov <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/d433f6-54fcd2@github.com>
Subject: [quicwg/base-drafts] 54fcd2: Fix verb number and a typo in the QPACK draft
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1By3XcEmNd4ECJRxXE-9aiiRn5s>
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: Mon, 18 May 2020 20:39:27 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 54fcd27ee757e006405acbaeb3f446dfde759a6d
      https://github.com/quicwg/base-drafts/commit/54fcd27ee757e006405acbaeb3f446dfde759a6d
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  Fix verb number and a typo in the QPACK draft



From nobody Mon May 18 13:39:36 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 2B4493A0C36 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:39:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 CfzgSg2ZZwhf for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:39:32 -0700 (PDT)
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 772EF3A0BFA for <quic-issues@ietf.org>; Mon, 18 May 2020 13:39:32 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 4D047282D63 for <quic-issues@ietf.org>; Mon, 18 May 2020 13:39:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589834371; bh=egpxmgHBW2nc/b7npWDNsk8Drlft271TsfdLBeCEFeg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=c2MVLgynF1ZYYiE/WSpYcn7kFUMmcI7/KsJA3fMgU044OOHlw+R3GhJKvcrO3N4ok 6VOCMWJ1i/fY+h4gSD9v47SevAc9VmpfJeWEUmnwhELal9+tWWqIKwI8or97qjSgZ4 q1OXEivnSdiEvV2OhcRkmdxGqm7kpAafWvImo/mk=
Date: Mon, 18 May 2020 13:39:31 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYCXL4QOWBKJD6LCAF4Z3JYHEVBNHHCJWIUEQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3657/issue_event/3349036778@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3657@github.com>
References: <quicwg/base-drafts/pull/3657@github.com>
Subject: Re: [quicwg/base-drafts] Fix verb number and a typo in the QPACK draft (#3657)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec2f2833e2ef_259f3fe4cb4cd96c1421d7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Gl6ehpo2gfVU9STK_xCXwUiz1uA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 20:39:34 -0000

----==_mimepart_5ec2f2833e2ef_259f3fe4cb4cd96c1421d7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3657 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3657#event-3349036778
----==_mimepart_5ec2f2833e2ef_259f3fe4cb4cd96c1421d7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="618206244" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3657" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3657/hovercard" href="https://github.com/quicwg/base-drafts/pull/3657">#3657</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3657#event-3349036778">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7OOLTWEFSEZL3JIULRSGMIHANCNFSM4NAVD5VQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZJ3SMT5K6I3IK7JA3RSGMIHA5CNFSM4NAVD5V2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY6PD52Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3657#event-3349036778",
"url": "https://github.com/quicwg/base-drafts/pull/3657#event-3349036778",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec2f2833e2ef_259f3fe4cb4cd96c1421d7--


From nobody Mon May 18 13:40:28 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 43FF53A0C36 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:40:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 dr8YjkNk0H4U for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:40:25 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 251803A08E0 for <quic-issues@ietf.org>; Mon, 18 May 2020 13:40:25 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 2232E282C52 for <quic-issues@ietf.org>; Mon, 18 May 2020 13:40:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589834424; bh=ZKJ0FnRwxpaYtgsvEBS6sIzyR4AAChol45pyj+uUcXE=; h=Date:From:To:Subject:From; b=MtyGJb7uKjZTtECojpSkPORcXY8fGy9xYv8mV1oMoT5rbYdEzJe6ig+4EbqeyOleY +VtIz8qAjGnDDja5mPdd5Jqm9AhWekSXnF6XeZVwrL2OaZldStqfwI9xSAMWoZQ5A7 8NkJ7DpIY9W12FXQ0gbs4kBv+C5co7ZMf5dlKQ4I=
Date: Mon, 18 May 2020 13:40:24 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b520ba-d38ec5@github.com>
Subject: [quicwg/base-drafts] d38ec5: Script updating gh-pages from 54fcd27e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jNuzKg4NAG9vt-SvQYKC10_st-4>
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: Mon, 18 May 2020 20:40:26 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d38ec55ee827c755022798d12a01a8ace77147ba
      https://github.com/quicwg/base-drafts/commit/d38ec55ee827c755022798d12a01a8ace77147ba
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 54fcd27e. [ci skip]



From nobody Mon May 18 13:43:51 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 34ABF3A0C78 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:43:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.2
X-Spam-Level: 
X-Spam-Status: No, score=-0.2 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 1WxMUlEIMVe7 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:43:48 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C51563A08E0 for <quic-issues@ietf.org>; Mon, 18 May 2020 13:43:48 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id C88F5E1152 for <quic-issues@ietf.org>; Mon, 18 May 2020 13:43:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589834627; bh=tqSY7Qw/qCw4FymffY7FupYdAh/7bfr2Doj4Nr88c5U=; h=Date:From:To:Subject:From; b=DwvqH7+bAg7rREc3jUMcKvzevKamh+gxtDQuypXFG5c45d6zs+gX10qlRelpyyWA+ Le1olT/+yOX+ifZUdA0UZKbpLkCPNK6wdl4qZLe/wbxSOlYPpj7pNq11pisPDzNwSo 8RxuJnxU9v2I0T9P3X73vI8jzKa+mNqLezwcYrb8=
Date: Mon, 18 May 2020 13:43:47 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recompute-pto/32ee54-40e8c8@github.com>
Subject: [quicwg/base-drafts] 40e8c8: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eNYYIM8rJZTpKzFZJ9lyJHthvyE>
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: Mon, 18 May 2020 20:43:50 -0000

  Branch: refs/heads/ianswett-recompute-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 40e8c84ee5d29983a860f5fe1fc88c0387382a4c
      https://github.com/quicwg/base-drafts/commit/40e8c84ee5d29983a860f5fe1fc88c0387382a4c
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Mon May 18 13:43:59 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 1EA843A0C7B for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:43:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.5
X-Spam-Level: 
X-Spam-Status: No, score=-0.5 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 CXOmPsQ3LkIL for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:43:57 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D46B73A0C78 for <quic-issues@ietf.org>; Mon, 18 May 2020 13:43:56 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id EA1996611C7 for <quic-issues@ietf.org>; Mon, 18 May 2020 13:43:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589834635; bh=8z39BUeMqucPIcq2leeFcejKoRsYuLSsgbSc48Qg0uk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cgJkdLLkcsmOimQM19hkcRuWGWzif++hMjtDn4T5AYvrJ+uEfZVWXTs6IjaG+CBq6 rk5jfRVxzZzs9iE6h+GAmeo4KAwB9ywLNuF0ioq1jTFAq4VSzkcK5FxMHnKLsdkkKW Ev+NLVf19WUHwg/yDpIup/2iTuYzTdOSANkGrgwI=
Date: Mon, 18 May 2020 13:43:55 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/push/5092307510@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec2f38bda253_5a243fcd43ccd968168846"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Uvsvw3iA_605PqMZWIO0FMJ7UWQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 20:43:58 -0000

----==_mimepart_5ec2f38bda253_5a243fcd43ccd968168846
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

40e8c84ee5d29983a860f5fe1fc88c0387382a4c  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665/files/32ee54571d322a19c4442333f941d0bc233dbca6..40e8c84ee5d29983a860f5fe1fc88c0387382a4c

----==_mimepart_5ec2f38bda253_5a243fcd43ccd968168846
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/40e8c84ee5d29983a860f5fe1fc88c0387382a4c">40e8c84</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3665/files/32ee54571d322a19c4442333f941d0bc233dbca6..40e8c84ee5d29983a860f5fe1fc88c0387382a4c">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5USBYR7PCAJM2PSBTRSGMYXANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4ART2CBE7NZJ4KAK3RSGMYXA5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSNBQHA2TKMSQOVZWQIZVGA4TEMZQG42TCMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665/files/32ee54571d322a19c4442333f941d0bc233dbca6..40e8c84ee5d29983a860f5fe1fc88c0387382a4c",
"url": "https://github.com/quicwg/base-drafts/pull/3665/files/32ee54571d322a19c4442333f941d0bc233dbca6..40e8c84ee5d29983a860f5fe1fc88c0387382a4c",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec2f38bda253_5a243fcd43ccd968168846--


From nobody Mon May 18 13:44:50 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 C79943A0CB5 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:44:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 40V6M9sRdafe for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:44:46 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C0A7E3A0C9F for <quic-issues@ietf.org>; Mon, 18 May 2020 13:44:46 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id C707752002B for <quic-issues@ietf.org>; Mon, 18 May 2020 13:44:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589834685; bh=aChM96JUXCpi7afKO4SAgR/vQ47B16rBIJ7zox15li0=; h=Date:From:To:Subject:From; b=wfxi+8ojfwy78NErop02hdG7DCC7xrkCTPs0Hb7U/xRAClCv9qBCuoxOIjCe6mYOw a+hVIXT2WSayYeg23QtmZf0aEuWnmIbmOXjLDgHQEnZoyowlyd5MYvg7Bje+i26iRy Kl+R4c2knLcEVelebXstAIQRlkZdh+7tJqZrc614=
Date: Mon, 18 May 2020 13:44:45 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d38ec5-244388@github.com>
Subject: [quicwg/base-drafts] 244388: Script updating gh-pages from 40e8c84e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IOfpjzMs-8SBWrJ2DGpY1OfavtY>
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: Mon, 18 May 2020 20:44:48 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 24438887933e906d3f0f8567a09ada2b58084483
      https://github.com/quicwg/base-drafts/commit/24438887933e906d3f0f8567a09ada2b58084483
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M ianswett-recompute-pto/draft-ietf-quic-recovery.html
    M ianswett-recompute-pto/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 40e8c84e. [ci skip]



From nobody Mon May 18 13:49:15 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 246F23A0D18 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:49:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.428
X-Spam-Level: 
X-Spam-Status: No, score=0.428 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=1.629, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 l71cGnaC7Ucv for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 13:49:13 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 344973A0D17 for <quic-issues@ietf.org>; Mon, 18 May 2020 13:49:13 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 24C678C0511 for <quic-issues@ietf.org>; Mon, 18 May 2020 13:49:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589834952; bh=d3FMveG3D5SMOqlPo/vMFIg4dpxVZHardVkC8xBNO/g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kNKvPZeMGUjPnFwAYiB0HGqf+Xw5WbwCtZ+f3YS9qs0bv5Yb0/ttWsS/1niHF5oxv MpZjv5uF7WoIUKHL7Vji24u/ameU6aAZIn9Y5MqqWU5fp3x7OC3NZaO12RpyC0C2id p6SdQllMDd4gvuaoxBuIz6jHStERDeLtNiHopqkY=
Date: Mon, 18 May 2020 13:49:12 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK74VI3TRWCKVZMKLEV4Z3K4REVBNHHCJ5PG2I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/review/413928678@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec2f4c81497c_199b3fce3cccd96420732d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZVSLlnCOhgYfd3oTuFNiMOY1lUM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 20:49:14 -0000

----==_mimepart_5ec2f4c81497c_199b3fce3cccd96420732d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-413928678
----==_mimepart_5ec2f4c81497c_199b3fce3cccd96420732d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinduke</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-413928678">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK54GTHSTKZS24FCGHLRSGNMRANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYS6NT6W7ZUCA327E3RSGNMRA5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCWAZZQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-413928678",
"url": "https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-413928678",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec2f4c81497c_199b3fce3cccd96420732d--


From nobody Mon May 18 16:43:26 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 CB2543A0BEB for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 16:43:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 1DpEDdJVH5Jm for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 16:43:23 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 750F33A0BEA for <quic-issues@ietf.org>; Mon, 18 May 2020 16:43:23 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id D9AB0960505 for <quic-issues@ietf.org>; Mon, 18 May 2020 16:43:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589845401; bh=CX6KZKuTZB8yZPZphbk4UvsqZ8EPXCahOjV+2EkwENM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=R1E7xQVWKHx0UlcqkV9BC36Gq98FgyM23r6uJiORBSHbcC/xfddA9Dl0lcHYnTtsB DgvBw942/xSdOtmVK7KFdmpSYF3qjgzDT2O2RDPNDuqJaCvyPcyXBXFPX1iZd8cSXM ZFtOGPCX9JcU8agKhg7rbMO9SfCZYHKGiRTz+NLM=
Date: Mon, 18 May 2020 16:43:21 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7RKQBT6B7GK45P5XN4Z37JTEVBNHHCJ5NF4Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3664/review/414008130@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3664@github.com>
References: <quicwg/base-drafts/pull/3664@github.com>
Subject: Re: [quicwg/base-drafts] Move MUST not send bursts up in the pacing section (#3664)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec31d99c2606_cf43ff6804cd964251924"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-YVCYH_uc97tJUQ71h8QTV0nwTE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 18 May 2020 23:43:25 -0000

----==_mimepart_5ec31d99c2606_cf43ff6804cd964251924
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.



> -controller. For example, a pacer might distribute the congestion window over
-the smoothed RTT when used with a window-based controller, or a pacer might use
-the rate estimate of a rate-based controller.

I'm OK with leaving this out, but I'm interested in why you did.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3664#pullrequestreview-414008130
----==_mimepart_5ec31d99c2606_cf43ff6804cd964251924
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3664#discussion_r426950390">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; -controller. For example, a pacer might distribute the congestion window over
-the smoothed RTT when used with a window-based controller, or a pacer might use
-the rate estimate of a rate-based controller.
</pre>
<p>I'm OK with leaving this out, but I'm interested in why you did.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3664#pullrequestreview-414008130">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2YCSH7IVIB2U4C5TDRSHBZTANCNFSM4ND5YJTA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY6XIGV47RRWFY3ZEDRSHBZTA5CNFSM4ND5YJTKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCWUGQQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3664#pullrequestreview-414008130",
"url": "https://github.com/quicwg/base-drafts/pull/3664#pullrequestreview-414008130",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec31d99c2606_cf43ff6804cd964251924--


From nobody Mon May 18 17:30:11 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 AA5AE3A0D74 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:30:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 CsIDIhqt8Yib for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:30:04 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A7E833A0D71 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:30:03 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 8A1AEE003E for <quic-issues@ietf.org>; Mon, 18 May 2020 17:30:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589848202; bh=e8AF3zYv+uT7QdWa3tupVnR7UNyOapZYVRkWeQEwzx0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BBd6QrGKDKokWLtX8o20v9dEJEbvqetuBT3joE/1HkzM4lModRDFTQ8PtBbPfcPdn X8Uwvw1noeXl7j56p9qeqLkNt0gIwx2/AesB7q/1UbjRHTQcf8My5nJhCUUbhitLXa 8ixyldOePYBLF7e+iqerVVigXCKm0h60/MN/3Nj0=
Date: Mon, 18 May 2020 17:30:02 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3YCR7CGAYVFNDWTHN4Z4EYVEVBNHHCJ5NF4Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3664/c630504890@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3664@github.com>
References: <quicwg/base-drafts/pull/3664@github.com>
Subject: Re: [quicwg/base-drafts] Move MUST not send bursts up in the pacing section (#3664)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec3288a7b1e2_6cf63f88982cd96c1352e6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jIkFLh1JmDynp9VXRvCctLgiAy0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 00:30:09 -0000

----==_mimepart_5ec3288a7b1e2_6cf63f88982cd96c1352e6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm not a fan of this change -- I think there's value in having that text below where we talk about how bursts can occur. That said, I don't feel strongly about it, so I'm not going to fight for it.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3664#issuecomment-630504890
----==_mimepart_5ec3288a7b1e2_6cf63f88982cd96c1352e6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I'm not a fan of this change -- I think there's value in having that text below where we talk about how bursts can occur. That said, I don't feel strongly about it, so I'm not going to fight for it.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3664#issuecomment-630504890">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK57PR3U2M6DQ2H6M63RSHHIVANCNFSM4ND5YJTA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3DF4FAT4DGLWWNZUTRSHHIVA5CNFSM4ND5YJTKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWKL3OQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3664#issuecomment-630504890",
"url": "https://github.com/quicwg/base-drafts/pull/3664#issuecomment-630504890",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec3288a7b1e2_6cf63f88982cd96c1352e6--


From nobody Mon May 18 17:33:10 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 189A03A0D89 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:33:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 OOnbVWWOY1ow for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:33:04 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9FE2A3A0D86 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:33:04 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 83BA4660912 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:33:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589848383; bh=zfrDzgWVe7TijDf3yiINt5e7Ybc7ZxPYg9Yn+aVgeJk=; h=Date:From:To:Subject:From; b=vsMbXGEW7s3R63VYpwOfll1Ngbstw19NbADQxcGCuhbxKtrjBDdlHLbbF31wHFVtJ O2WBZ1oJWcR4Pq2x6rksOT1MFzAkX7zN+LlGfIAqGbnNgx0DGbkwbYDd1e/KH0z7Le MvCn4mq8keftyMaoKoCyaDJuKmcT9lH4EenhPoOA=
Date: Mon, 18 May 2020 17:33:03 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/jri/fix-n/000000-498e60@github.com>
Subject: [quicwg/base-drafts] 498e60: Trim text on pacing
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/YvBObPilhIF5JGykq3tNoNDLEgA>
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: Tue, 19 May 2020 00:33:06 -0000

  Branch: refs/heads/jri/fix-n
  Home:   https://github.com/quicwg/base-drafts
  Commit: 498e600168f52b6796dab88293bc98cb3efa0fa1
      https://github.com/quicwg/base-drafts/commit/498e600168f52b6796dab88293bc98cb3efa0fa1
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Trim text on pacing



From nobody Mon May 18 17:34:08 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 5A6B03A0D89 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:34:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 IRKQdov-R7Vq for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:34:05 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DDEED3A0D86 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:34:04 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id D09B66A05DC for <quic-issues@ietf.org>; Mon, 18 May 2020 17:34:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589848443; bh=jcYpb1mNR6IcYyKiKbLmzTpabwwYdWlxrqZWnyV2eSg=; h=Date:From:To:Subject:From; b=xhbdhmuYjhTk99mD6CivsPKtI27l3N6UIpGyzgilzyBR2HaaLPsP0b7wkW1V9G+zM V16RXxMo5jYL4yopdY81n8cgLLZMIP9ZIecj/TMx2hlMpVwz5xJdUZ0z7w+OktKKU1 GrYrZD8KSwgVLFn9cqswvHdBC9zetN+Qwu3XPDPo=
Date: Mon, 18 May 2020 17:34:03 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/244388-afe10f@github.com>
Subject: [quicwg/base-drafts] afe10f: Script updating gh-pages from 498e6001. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Ffy2SUJax_9Vr0jfmW7hknaU0pc>
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: Tue, 19 May 2020 00:34:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: afe10f0d857156a4166feb2d8d6f760c36012e57
      https://github.com/quicwg/base-drafts/commit/afe10f0d857156a4166feb2d8d6f760c36012e57
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M index.html
    A jri/fix-n/draft-ietf-quic-http.html
    A jri/fix-n/draft-ietf-quic-http.txt
    A jri/fix-n/draft-ietf-quic-invariants.html
    A jri/fix-n/draft-ietf-quic-invariants.txt
    A jri/fix-n/draft-ietf-quic-qpack.html
    A jri/fix-n/draft-ietf-quic-qpack.txt
    A jri/fix-n/draft-ietf-quic-recovery.html
    A jri/fix-n/draft-ietf-quic-recovery.txt
    A jri/fix-n/draft-ietf-quic-tls.html
    A jri/fix-n/draft-ietf-quic-tls.txt
    A jri/fix-n/draft-ietf-quic-transport.html
    A jri/fix-n/draft-ietf-quic-transport.txt
    A jri/fix-n/index.html

  Log Message:
  -----------
  Script updating gh-pages from 498e6001. [ci skip]



From nobody Mon May 18 17:45:04 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 2A7923A0DB1 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:45:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.201
X-Spam-Level: 
X-Spam-Status: No, score=-1.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 xXTslXfEyKuW for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:45:01 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 063E13A0D94 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:45:00 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 315CC6A0A58 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:45:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589849100; bh=gbJ+jRhTD5g6YIX0G4nFNDSdJataAWd8EwFf3k8ZjWs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TR6xBJ3EPq8qj1l5pNJquNZHfDqjmr2sOXRx4/AAgWim3oG/3DM7xDmDyHJXW6CBt lHtw4ZEnVCJGmpNVcysi4SZqFjRdwh/Zui0Sm7Zuew+XTk38O/vZT8+lFm/EiE6j0s moEy7DcUYFfMBdcLpSSKXB8SaZFIWlzfaXNP0CX4=
Date: Mon, 18 May 2020 17:45:00 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3R2ASUKP4LCKVRIJ54Z4GQZEVBNHHCJ5SAW4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3666/review/414027013@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3666@github.com>
References: <quicwg/base-drafts/pull/3666@github.com>
Subject: Re: [quicwg/base-drafts] Include ack_delay when deciding with PN space to arm PTO for (#3666)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec32c0c210e8_75f43f95eb0cd968112124"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SMcP6Fr8_HQaj0gq2y0dm6BOvJA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 00:45:03 -0000

----==_mimepart_5ec32c0c210e8_75f43f95eb0cd968112124
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.

One large comment.  Bottom line is that I don't think that this pseudocode is doing a great job of communicating here.  Also, this is a functional change to the outcome in more ways that the subject of the PR implies.

> +  // Calculate PTO duration, sent_time includes max_ack_delay.
+  timeout = smoothed_rtt + max(4 * rttvar, kGranularity)

Not that it was great before, but I think that this change obfuscates things.

I think that the inclusion of the max_ack_delay argument overloads GetEarliestTimeAndSpace in a way that just highlights how the dual purpose to which the function is applied is not appropriate.

We use this function for working out two things:
* when to declare something lost
* when the PTO timer should start 

The former is not affected by max_ack_delay.   The PTO calculation is, but this change adds max_ack_delay to the baseline rather than the PTO calculation itself.

For one, that's a fundamental change in logic for one (because PTO number 2 used to include 2*max_ack_delay and now it doesn't. Maybe that was a bug that this fixes, but that needs to be clear.

However, the main problem is the way that this code now communicates its intent.  If the intent is to start with a baseline (t_sent) and to add a PTO (RTT + 4*rttvar) that is then doubled each time, and only then compensate for ACK delay, you want to show your work, not hide it:

```
pto_timer = smoothed_rtt + max(4 * rttvar, kGranularity)
pto_timer *= 1 << pto_count
loss_detection_timer.update(sent_time + pto_timer + ?max_ack_delay)
```
Or is it, with maybe a fix for the packet number space issue...
```
pto_timer = smoothed_rtt + max(4 * rttvar, kGranularity) + ?max_ack_delay
pto_timer *= 1 << pto_count
loss_detection_timer.update(sent_time + pto_timer)
```

The trick is that the code that triggers SendOneOrTwoAckElicitingPackets() needs to follow the same logic.  But that too is too clever.  Basing that on the reference time (the time you sent the last packet) rather than the time that the timer is expected to pop is obtuse (even if it is correct as you currently formulate it).

Why not provide a CalculatePtoTime() function and use that?  This code doesn't need to be optimized, so you can calculate everything always.

```python
pto_time = { Initial: 0, Handshake: 0, ApplicationData: 0 };
for space in time_of_last_sent_ack_eliciting_packet:
    if time_of_last_sent_ack_eliciting_packet[space] == 0:
        continue;
    t = smoothed_rtt + max(4 * rttvar, kGranularity)
    t = t * (2 ^ pto_count)
    if space == ApplicationData: # or move this up as you need
        t += max_ack_delay
    pto_time[space] = time_of_last_sent_ack_eliciting_packet[space] + t
pto_time, pn_space = GetEarliestTimeAndSpace(pto_time)
```

This needs tweaking for the case where sent_time == 0, but that is just a case of factoring out the PTO interval calculation.  Note that you aren't adding max_ack_delay in that case, which is another difference.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3666#pullrequestreview-414027013
----==_mimepart_5ec32c0c210e8_75f43f95eb0cd968112124
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<p>One large comment.  Bottom line is that I don't think that this pseudocode is doing a great job of communicating here.  Also, this is a functional change to the outcome in more ways that the subject of the PR implies.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3666#discussion_r426966797">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; +  // Calculate PTO duration, sent_time includes max_ack_delay.
+  timeout = smoothed_rtt + max(4 * rttvar, kGranularity)
</pre>
<p>Not that it was great before, but I think that this change obfuscates things.</p>
<p>I think that the inclusion of the max_ack_delay argument overloads GetEarliestTimeAndSpace in a way that just highlights how the dual purpose to which the function is applied is not appropriate.</p>
<p>We use this function for working out two things:</p>
<ul>
<li>when to declare something lost</li>
<li>when the PTO timer should start</li>
</ul>
<p>The former is not affected by max_ack_delay.   The PTO calculation is, but this change adds max_ack_delay to the baseline rather than the PTO calculation itself.</p>
<p>For one, that's a fundamental change in logic for one (because PTO number 2 used to include 2*max_ack_delay and now it doesn't. Maybe that was a bug that this fixes, but that needs to be clear.</p>
<p>However, the main problem is the way that this code now communicates its intent.  If the intent is to start with a baseline (t_sent) and to add a PTO (RTT + 4*rttvar) that is then doubled each time, and only then compensate for ACK delay, you want to show your work, not hide it:</p>
<pre><code>pto_timer = smoothed_rtt + max(4 * rttvar, kGranularity)
pto_timer *= 1 &lt;&lt; pto_count
loss_detection_timer.update(sent_time + pto_timer + ?max_ack_delay)
</code></pre>
<p>Or is it, with maybe a fix for the packet number space issue...</p>
<pre><code>pto_timer = smoothed_rtt + max(4 * rttvar, kGranularity) + ?max_ack_delay
pto_timer *= 1 &lt;&lt; pto_count
loss_detection_timer.update(sent_time + pto_timer)
</code></pre>
<p>The trick is that the code that triggers SendOneOrTwoAckElicitingPackets() needs to follow the same logic.  But that too is too clever.  Basing that on the reference time (the time you sent the last packet) rather than the time that the timer is expected to pop is obtuse (even if it is correct as you currently formulate it).</p>
<p>Why not provide a CalculatePtoTime() function and use that?  This code doesn't need to be optimized, so you can calculate everything always.</p>
<div class="highlight highlight-source-python"><pre><span class="pl-s1">pto_time</span> <span class="pl-c1">=</span> { <span class="pl-v">Initial</span>: <span class="pl-c1">0</span>, <span class="pl-v">Handshake</span>: <span class="pl-c1">0</span>, <span class="pl-v">ApplicationData</span>: <span class="pl-c1">0</span> };
<span class="pl-k">for</span> <span class="pl-s1">space</span> <span class="pl-c1">in</span> <span class="pl-s1">time_of_last_sent_ack_eliciting_packet</span>:
    <span class="pl-k">if</span> <span class="pl-s1">time_of_last_sent_ack_eliciting_packet</span>[<span class="pl-s1">space</span>] <span class="pl-c1">==</span> <span class="pl-c1">0</span>:
        <span class="pl-k">continue</span>;
    <span class="pl-s1">t</span> <span class="pl-c1">=</span> <span class="pl-s1">smoothed_rtt</span> <span class="pl-c1">+</span> <span class="pl-en">max</span>(<span class="pl-c1">4</span> <span class="pl-c1">*</span> <span class="pl-s1">rttvar</span>, <span class="pl-s1">kGranularity</span>)
    <span class="pl-s1">t</span> <span class="pl-c1">=</span> <span class="pl-s1">t</span> <span class="pl-c1">*</span> (<span class="pl-c1">2</span> <span class="pl-c1">^</span> <span class="pl-s1">pto_count</span>)
    <span class="pl-k">if</span> <span class="pl-s1">space</span> <span class="pl-c1">==</span> <span class="pl-v">ApplicationData</span>: <span class="pl-c"># or move this up as you need</span>
        <span class="pl-s1">t</span> <span class="pl-c1">+=</span> <span class="pl-s1">max_ack_delay</span>
    <span class="pl-s1">pto_time</span>[<span class="pl-s1">space</span>] <span class="pl-c1">=</span> <span class="pl-s1">time_of_last_sent_ack_eliciting_packet</span>[<span class="pl-s1">space</span>] <span class="pl-c1">+</span> <span class="pl-s1">t</span>
<span class="pl-s1">pto_time</span>, <span class="pl-s1">pn_space</span> <span class="pl-c1">=</span> <span class="pl-v">GetEarliestTimeAndSpace</span>(<span class="pl-s1">pto_time</span>)</pre></div>
<p>This needs tweaking for the case where sent_time == 0, but that is just a case of factoring out the PTO interval calculation.  Note that you aren't adding max_ack_delay in that case, which is another difference.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3666#pullrequestreview-414027013">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6VXLOPIA3EDKP3QD3RSHJAZANCNFSM4ND7HVNQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYBIGDXFXHWDIVLANDRSHJAZA5CNFSM4ND7HVN2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCWY2BI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3666#pullrequestreview-414027013",
"url": "https://github.com/quicwg/base-drafts/pull/3666#pullrequestreview-414027013",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec32c0c210e8_75f43f95eb0cd968112124--


From nobody Mon May 18 17:46:20 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 E25DB3A0DDC for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:46:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.429
X-Spam-Level: 
X-Spam-Status: No, score=0.429 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=1.629, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 9QGchjLLRhe4 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:46:17 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AE74E3A0DCE for <quic-issues@ietf.org>; Mon, 18 May 2020 17:46:17 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 6B5D18C0927 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:46:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589849176; bh=Wfig3Hhk7QJPQ3rRl3oSZBRdtimZQyxfpI6MV/sj5/c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Od4sxsoU+X06WsjRkaDUedcFMuMHCXPOalQuMhXXFgz7r1+pOEOrg46pZtkWTbDxJ mn1oH2OxX8ygTDjCDrd9X7MorbzHp63iPrWkQW+C0xirxdSlDPTRKE1ioeEVobi+Fl n2sJkV14ntU10fq5cCLW4V4KhOCgYNSK9UZzUjG8=
Date: Mon, 18 May 2020 17:46:16 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK32N73CRHYBQZVZCBF4Z4GVREVBNHHCISIS5I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3605/630509417@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3605@github.com>
References: <quicwg/base-drafts/issues/3605@github.com>
Subject: Re: [quicwg/base-drafts] Formatting of persistent congestion text (#3605)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec32c585a3f6_5f9e3f8c0f4cd968263987"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VQC0sm08gth--7c4zewQhKi0eyE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 00:46:19 -0000

----==_mimepart_5ec32c585a3f6_5f9e3f8c0f4cd968263987
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Oh, this is because I already fixed it.  As Lucas points out, it was a mess.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630509417
----==_mimepart_5ec32c585a3f6_5f9e3f8c0f4cd968263987
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Oh, this is because I already fixed it.  As Lucas points out, it was a mess.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630509417">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYDSZOKXELC5D65SSTRSHJFRANCNFSM4MTMLWQQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6UTMNYMTE6VVEKJATRSHJFRA5CNFSM4MTMLWQ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWKM62I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630509417",
"url": "https://github.com/quicwg/base-drafts/issues/3605#issuecomment-630509417",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec32c585a3f6_5f9e3f8c0f4cd968263987--


From nobody Mon May 18 17:46:25 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 C6D013A0DDC for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:46:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 h2F6HzmEFz2w for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:46:19 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 638DE3A0DCE for <quic-issues@ietf.org>; Mon, 18 May 2020 17:46:19 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id AB3F2E007F for <quic-issues@ietf.org>; Mon, 18 May 2020 17:46:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589849178; bh=nOygJEJXZoTI4fgeyaVQw6euQazI4ZAEPnE/UVNTong=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hv5andl18hSNiSxvUdrMIP23jnNtFm+FcrHV8tUNU/yvBTkP41na49QUhbXETWA6V BjyK7dVaT1iSjzjyed9jxhNMJX5oC7ICm7bTfpZlaobalMV1lTk8WPpJSUvID84Afj ZfDdZgkZa+SuEGo/9ORrgb0UGjhXaERgpeqB1et8=
Date: Mon, 18 May 2020 17:46:18 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK46FPKFNIYC7SNH5BN4Z4GVVEVBNHHCISIS5I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3605/issue_event/3349613185@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3605@github.com>
References: <quicwg/base-drafts/issues/3605@github.com>
Subject: Re: [quicwg/base-drafts] Formatting of persistent congestion text (#3605)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec32c5a9bdcd_324f3fc1bcccd96418846b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DVNNAkkkiuyK7tQpZtI9QMIMFIU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 00:46:21 -0000

----==_mimepart_5ec32c5a9bdcd_324f3fc1bcccd96418846b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3605.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3605#event-3349613185
----==_mimepart_5ec32c5a9bdcd_324f3fc1bcccd96418846b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="608768746" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3605" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3605/hovercard" href="https://github.com/quicwg/base-drafts/issues/3605">#3605</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3605#event-3349613185">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2IQBD6ABYMVR6QZQTRSHJFVANCNFSM4MTMLWQQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3WTY6YKGZ5G56ENTLRSHJFVA5CNFSM4MTMLWQ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY6TQVAI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3605#event-3349613185",
"url": "https://github.com/quicwg/base-drafts/issues/3605#event-3349613185",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec32c5a9bdcd_324f3fc1bcccd96418846b--


From nobody Mon May 18 17:53:40 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 6E75E3A0DE4 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:53:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.201
X-Spam-Level: 
X-Spam-Status: No, score=-1.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 GRQizxqYv68a for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:53:35 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 95E0B3A0A24 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:53:35 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id C5DC852041B for <quic-issues@ietf.org>; Mon, 18 May 2020 17:53:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589849614; bh=Odxm3t8NRyMH8mp1pcVzEWS6lyuAKoTuidc/l8vmG+g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PHbPEFSuQK0sePWeK3zz+1AS+TrEBgdBh8M9PEr6D874z+mjBRO3k0nuDGXvJq48p 9CiEhrkyvPKZI062IW8GXr4uXJlo7VVtwFplV/ewwhuAUbyYeExQPY04Ao8zDGmWzl Js6DPtQgYTE4sYlfhF8hFzcscYIRdC+JVRL+3K+o=
Date: Mon, 18 May 2020 17:53:34 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3GSF3S3DZQPJUZNAF4Z4HQ5EVBNHHCJ5PG2I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/review/414029312@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec32e0eb4b85_44f53f8949ecd9683016af"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kqcal2LpJOV0xp5zU3UDI6pJzSU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 00:53:39 -0000

----==_mimepart_5ec32e0eb4b85_44f53f8949ecd9683016af
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



>  
 When a PTO timer expires, the PTO backoff MUST be increased, resulting in the
-PTO period being set to twice its current value.  The PTO period is set based
-on the latest RTT information after receiving an acknowledgement. The PTO
-backoff is reset upon receiving an acknowledgement unless it's a client unsure
-if the the server has validated the client's address. Not resetting the backoff
-during peer address validation ensures the client's anti-deadlock timer is not
-set too aggressively when the server is slow in responding with handshake data.
+PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement unless it's a client unsure if the server has

The subject of the "it" is a little unclear here.

Perhaps instead:

> The PTO backoff is reset when receiving an acknowledgment, except when a client receives an acknowledgment from a server prior to the server validating the client address.  A client MUST keep increasing the PTO count until <insert clear conditions here>.

>  
 When a PTO timer expires, the PTO backoff MUST be increased, resulting in the
-PTO period being set to twice its current value.  The PTO period is set based
-on the latest RTT information after receiving an acknowledgement. The PTO
-backoff is reset upon receiving an acknowledgement unless it's a client unsure
-if the the server has validated the client's address. Not resetting the backoff
-during peer address validation ensures the client's anti-deadlock timer is not
-set too aggressively when the server is slow in responding with handshake data.
+PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement unless it's a client unsure if the server has
+validated the client's address. Not resetting the backoff during peer address
+validation ensures the client's anti-deadlock timer is not set too aggressively

This is the first use of anti-deadlock in the draft.  I think that you are just referring to the PTO timer that we set unconditionally on the client prior to address validation.

It might be better to keep all the rules about setting the "PTO timer" at the client prior to address validation in the one paragraph/section rather than scattering them about like this.  Then you can say "except at the client prior to address validation; see {{...}}".

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-414029312
----==_mimepart_5ec32e0eb4b85_44f53f8949ecd9683016af
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3665#discussion_r426968798">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;  
 When a PTO timer expires, the PTO backoff MUST be increased, resulting in the
-PTO period being set to twice its current value.  The PTO period is set based
-on the latest RTT information after receiving an acknowledgement. The PTO
-backoff is reset upon receiving an acknowledgement unless it&#39;s a client unsure
-if the the server has validated the client&#39;s address. Not resetting the backoff
-during peer address validation ensures the client&#39;s anti-deadlock timer is not
-set too aggressively when the server is slow in responding with handshake data.
+PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement unless it&#39;s a client unsure if the server has
</pre>
<p>The subject of the "it" is a little unclear here.</p>
<p>Perhaps instead:</p>
<blockquote>
<p>The PTO backoff is reset when receiving an acknowledgment, except when a client receives an acknowledgment from a server prior to the server validating the client address.  A client MUST keep increasing the PTO count until .</p>
</blockquote>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3665#discussion_r426969284">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;  
 When a PTO timer expires, the PTO backoff MUST be increased, resulting in the
-PTO period being set to twice its current value.  The PTO period is set based
-on the latest RTT information after receiving an acknowledgement. The PTO
-backoff is reset upon receiving an acknowledgement unless it&#39;s a client unsure
-if the the server has validated the client&#39;s address. Not resetting the backoff
-during peer address validation ensures the client&#39;s anti-deadlock timer is not
-set too aggressively when the server is slow in responding with handshake data.
+PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement unless it&#39;s a client unsure if the server has
+validated the client&#39;s address. Not resetting the backoff during peer address
+validation ensures the client&#39;s anti-deadlock timer is not set too aggressively
</pre>
<p>This is the first use of anti-deadlock in the draft.  I think that you are just referring to the PTO timer that we set unconditionally on the client prior to address validation.</p>
<p>It might be better to keep all the rules about setting the "PTO timer" at the client prior to address validation in the one paragraph/section rather than scattering them about like this.  Then you can say "except at the client prior to address validation; see {{...}}".</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-414029312">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK26D6N7DATT5QD72R3RSHKA5ANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZTIBVKJBV2G55WPGDRSHKA5A5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODCWZMAA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-414029312",
"url": "https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-414029312",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec32e0eb4b85_44f53f8949ecd9683016af--


From nobody Mon May 18 17:54:35 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 16E443A0DE5 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:54:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, 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 GWLEEWIn2-Zh for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:54:32 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EF2B63A0DE4 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:54:31 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 41DA42C0EEB for <quic-issues@ietf.org>; Mon, 18 May 2020 17:54:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589849671; bh=MbfATADWJZd7YQb4uW12RkB1FpEgzlNZnoSh6AmsRpM=; h=Date:From:To:Subject:From; b=TemE4aVRM/+hJfEoKVgbcF7TeKUEdXeGOkhk1z5zHc/UpkryrB3AnYdXx8rEOhjcD lRzNNRenhU3S4/FFX+uoUy5Vff0MHxQDR8msas9OUaEchmbOyUvkiYhEKd9wPLeNFW ZfELkEuNPSzlwrruJVS0xP9Ex3ZqBqKLuKB9z2Uw=
Date: Mon, 18 May 2020 17:54:31 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/jri/fix-n/498e60-2b872b@github.com>
Subject: [quicwg/base-drafts] 2b872b: tweak language instead of removing
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kCC8cO_HlSGWKUASFrC-xssGytE>
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: Tue, 19 May 2020 00:54:34 -0000

  Branch: refs/heads/jri/fix-n
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2b872b0250bfcdd66d56d59113bc9e367d715865
      https://github.com/quicwg/base-drafts/commit/2b872b0250bfcdd66d56d59113bc9e367d715865
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  tweak language instead of removing



From nobody Mon May 18 17:55:21 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 CDD483A0DE4 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:55:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 qaLdVr8C-OOB for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:55:17 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9BCEC3A0DE5 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:55:17 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id F126F2C0BD4 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:55:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589849716; bh=tnreRKtUOcGFwBcpvuoWTAqHr55eGRWZopQkR9tzDd8=; h=Date:From:To:Subject:From; b=q8Zhwp9krIq3S78RokJomyueCytM9eCnqMOR3yioq+HJGvUtamDnh8+trgo7TNFUi nRx6rarG5af+oofZLmJ2FU1GWSnBSG3MGcMsspNTeCqU3nS8+1vWhMbsKKWLMkdxzv P3W57tevZI/FZZ5ZqeFKohWh6DTwN0BOtbnrGRIE=
Date: Mon, 18 May 2020 17:55:16 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/afe10f-0d2af2@github.com>
Subject: [quicwg/base-drafts] 0d2af2: Script updating gh-pages from 2b872b02. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/b5DPiOH8WLUDmXlodxHX0iyAas8>
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: Tue, 19 May 2020 00:55:20 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0d2af2d00bbb3918ac03b9cac94bf6a22ea3fea2
      https://github.com/quicwg/base-drafts/commit/0d2af2d00bbb3918ac03b9cac94bf6a22ea3fea2
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M index.html
    M jri/fix-n/draft-ietf-quic-recovery.html
    M jri/fix-n/draft-ietf-quic-recovery.txt

  Log Message:
  -----------
  Script updating gh-pages from 2b872b02. [ci skip]



From nobody Mon May 18 17:55:27 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 1E6B03A0DE5 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:55:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.473
X-Spam-Level: 
X-Spam-Status: No, score=-0.473 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=0.726, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 1fC8yBJvm3bw for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:55:23 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 917863A0DE4 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:55:23 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id E18138C0C23 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:55:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589849722; bh=A4Ty1NWht2UATl9CqRs0PNIlVi3aWvW/yiVGwAtHf5Q=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=0FQao2OlACTRhoQhRuyY/urmDEH0KvMey9jZ0VKWwSqBr029knBYBB7OwwdMlOFXD dfM5PMKsiFFUDQs38fLpa7ZMbz4yKLeG6woS0Ze1R6feNwMWbuwf3+oVOsXgmeelxk /29DRulqGqVT3OcY5ByriApExgMM8EWzfeJQVJx8=
Date: Mon, 18 May 2020 17:55:22 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2P2DVIZMSO6ZP2JT54Z4HXVEVBNHHCJ7MKFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3667@github.com>
Subject: [quicwg/base-drafts] Clarify text on pacing (#3667)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec32e7ad2de9_32593fc1bcccd964157016"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mcm_gYzBWi7vLrwIH6msXoBBP-I>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 00:55:26 -0000

----==_mimepart_5ec32e7ad2de9_32593fc1bcccd964157016
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

N was introduced in #3630 to describe how a sender might pace at a rate that allows it to send a congestion window&#39;s worth of data in a period that is shorter than an RTT. This PR clarifies text that goes into unnecessary detail, trying to describe assumptions (the network is spreading the packets out, for example, resulting in an ack clock).

You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3667

-- Commit Summary --

  * Trim text on pacing
  * tweak language instead of removing

-- File Changes --

    M draft-ietf-quic-recovery.md (10)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3667.patch
https://github.com/quicwg/base-drafts/pull/3667.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3667

----==_mimepart_5ec32e7ad2de9_32593fc1bcccd964157016
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>N was introduced in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="613057001" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3630" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3630/hovercard" href="https://github.com/quicwg/base-drafts/pull/3630">#3630</a> to describe how a sender might pace at a rate that allows it to send a congestion window's worth of data in a period that is shorter than an RTT. This PR clarifies text that goes into unnecessary detail, trying to describe assumptions (the network is spreading the packets out, for example, resulting in an ack clock).</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3667'>https://github.com/quicwg/base-drafts/pull/3667</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Trim text on pacing</li>
  <li>tweak language instead of removing</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3667/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (10)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3667.patch'>https://github.com/quicwg/base-drafts/pull/3667.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3667.diff'>https://github.com/quicwg/base-drafts/pull/3667.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3667">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2IOXQRDR7NCHDXYSDRSHKHVANCNFSM4NERNO5Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7MN2DJ5F2AGGCA5YTRSHKHVA5CNFSM4NERNO52YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JH5RIVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3667",
"url": "https://github.com/quicwg/base-drafts/pull/3667",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec32e7ad2de9_32593fc1bcccd964157016--


From nobody Mon May 18 17:57:16 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 466BB3A0DED for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:57:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.474
X-Spam-Level: 
X-Spam-Status: No, score=-0.474 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=0.726, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 lyBfRMcRg6AO for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:57:13 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EB00A3A0DEA for <quic-issues@ietf.org>; Mon, 18 May 2020 17:57:12 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 33D1B1C04A4 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:57:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589849832; bh=zcqiOcUBsJV8ko3wIDDOy8zBbFW02sXoBAbMPgOSuuA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SfNNNCkbMVvrO4r4GKzHYXvS0PmcpRTOzYWaHtVBlxF0Uc6/MXeSxqli99nMwAq7w J6JRRTwBasRJoFSIzmh/S6Q2FVNUcIu4kSog/LMCDfjogo7sfAAzdKM91t8RebhGrY Pja5wsw4jDpGcEqwf0VkZPnsPQqj/U0ovoZhqDmc=
Date: Mon, 18 May 2020 17:57:12 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2VDGYITA4S2PFIA3V4Z4H6REVBNHHCJ7MKFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3667/review/414030990@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3667@github.com>
References: <quicwg/base-drafts/pull/3667@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text on pacing (#3667)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec32ee8248be_1e963f7f43ecd9642587f8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LsSuWaeU-5Ig3jxx89rOKo6DGFc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 00:57:14 -0000

----==_mimepart_5ec32ee8248be_1e963f7f43ecd9642587f8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -908,12 +908,10 @@ Or, expressed as an inter-packet interval:
 interval = smoothed_rtt * packet_size / congestion_window / N
 ~~~
 
-Using a value for `N` that is small, but at least 1 (for example, 1.25) ensures
-that variations in round-trip time don't result in under-utilization of the
-congestion window.  Values of 'N' larger than 1 ultimately result in sending
-packets as acknowledgments are received rather than when timers fire, provided
-the congestion window is fully utilized and acknowledgments arrive at regular
-intervals.
+Using a value for N that is low, but at least 1 (for example, 1.25) ensures that
+variations in round-trip time don't result in under-utilization of the
+congestion window. Note that a higher N results in the inter-packet interval
+becoming smaller, and a large enough N defeats purpose of pacing.

```suggestion
becoming smaller, and a large enough N defeats the purpose of pacing.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3667#pullrequestreview-414030990
----==_mimepart_5ec32ee8248be_1e963f7f43ecd9642587f8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3667#discussi=
on_r426970235">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -908,12 +908,10 @@ Or, expressed as an =
inter-packet interval:=0D
 interval =3D smoothed_rtt * packet_size / congestion_window / N=0D
 ~~~=0D
 =0D
-Using a value for `N` that is small, but at least 1 (for example, 1.25) =
ensures=0D
-that variations in round-trip time don&#39;t result in under-utilization=
 of the=0D
-congestion window.  Values of &#39;N&#39; larger than 1 ultimately resul=
t in sending=0D
-packets as acknowledgments are received rather than when timers fire, pr=
ovided=0D
-the congestion window is fully utilized and acknowledgments arrive at re=
gular=0D
-intervals.=0D
+Using a value for N that is low, but at least 1 (for example, 1.25) ensu=
res that=0D
+variations in round-trip time don&#39;t result in under-utilization of t=
he=0D
+congestion window. Note that a higher N results in the inter-packet inte=
rval=0D
+becoming smaller, and a large enough N defeats purpose of pacing.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-becoming smaller, and a large enough N defeat=
s purpose of pacing.=0D
+becoming smaller, and a large enough N defeats the purpose of pacing.=0D=

</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3667#pullrequestreview-414030990">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K723NUU2MAA3RJBB23RSHKORANCNFSM4NERNO5Q">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK4JYJ7HYPUUMA6HTW3RSHKORA5CNFSM4=
NERNO52YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCWZZDQ.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3667#pullrequestrev=
iew-414030990",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3667#pullrequestreview=
-414030990",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec32ee8248be_1e963f7f43ecd9642587f8--


From nobody Mon May 18 17:57:21 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 727013A0DEE for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:57:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.428
X-Spam-Level: 
X-Spam-Status: No, score=0.428 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_12=1.629, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 c8QnyL6x31eb for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 17:57:18 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6EF893A0DED for <quic-issues@ietf.org>; Mon, 18 May 2020 17:57:18 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id A81872C0AF7 for <quic-issues@ietf.org>; Mon, 18 May 2020 17:57:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589849837; bh=IkiJHw5JQavLHmkwDPdWuqd/tDR8L1xJZJCAI88lehQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LS5ngxs1kwaUv5ErsJMRV0LP0Py9OiraV5/SmcF0IekJcVSSLuIq+MePCUez6yxLy qg4KHLYGZ+I98eQ8plvoXZpYZRvc3sOI8guCdnfNK9dWCqHbw65NPmBaFuEuEEZ6Mg oAgWd09bQnbQOg5Me4ZKPJrQs2ZA071qmmnrrJvA=
Date: Mon, 18 May 2020 17:57:17 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYFB6T2DYQQTRDNJXV4Z4H63EVBNHHCJ7MKFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3667/c630512298@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3667@github.com>
References: <quicwg/base-drafts/pull/3667@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text on pacing (#3667)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec32eed98837_76113f95eb0cd968136633"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/s1x6bV8EwnCxSKhfVSNiHZo2R9U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 00:57:19 -0000

----==_mimepart_5ec32eed98837_76113f95eb0cd968136633
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Seems fine to me.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3667#issuecomment-630512298
----==_mimepart_5ec32eed98837_76113f95eb0cd968136633
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Seems fine to me.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3667#issuecomment-630512298">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6K2XHAEUCMAZABHBTRSHKO3ANCNFSM4NERNO5Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5HQ3BS33UC5EYQUWDRSHKO3A5CNFSM4NERNO52YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWKNVKQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3667#issuecomment-630512298",
"url": "https://github.com/quicwg/base-drafts/pull/3667#issuecomment-630512298",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec32eed98837_76113f95eb0cd968136633--


From nobody Mon May 18 18:17:14 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 81CE13A0FB7 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 18:17:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.153
X-Spam-Level: 
X-Spam-Status: No, score=-0.153 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_16=1.048, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 9w-c_1tG7ykE for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 18:17:11 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1E0E13A0FB6 for <quic-issues@ietf.org>; Mon, 18 May 2020 18:17:11 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 70DEB960657 for <quic-issues@ietf.org>; Mon, 18 May 2020 18:17:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589851030; bh=/ro5a/F8wNrogNtjN6jnlf+1kqtRvQcU5FMLvQOfEYw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MfbyD5TLZnBXZ6q9PQirvOfn5Qip/ZSb/YHJ+YHcbM5guExGtpjjM9oPmkMSawA7Y xjLXfYzRylG4ciZG8De968nf/+g8+VjmmxjIBYOloLIZQ17UficFBozIKYYfGG0Kph C7hwXH5LJZU4lNH83x9WlxOj5HkxJdA/tp+Xi9Uk=
Date: Mon, 18 May 2020 18:17:10 -0700
From: ekr <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4ZMY5ISRZMGQC4R754Z4KJNEVBNHHCJ2QBFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3661/630518297@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3661@github.com>
References: <quicwg/base-drafts/issues/3661@github.com>
Subject: Re: [quicwg/base-drafts] Include epoch in the AAD or the nonce? (#3661)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec33396628bf_5fad3fe3128cd9649444d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ekr
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eM9jLj9ldFjans9gJAxnneV6CMQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 01:17:13 -0000

----==_mimepart_5ec33396628bf_5fad3fe3128cd9649444d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think where TLS is going to land is with no change, because the nonce includes the full epoch. I have the same intuitions as you, but as you say they aren't formal. 

With that said, as you observed in our call today, it seems like there is an easy fix: both AES_GCM and ChaCha20/Poly1305 take a 96-bit nonce which we are just left-padding with 0s. If we are willing to restrict to <2^32 key changes, we could encode the epoch in those 0s, right?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3661#issuecomment-630518297
----==_mimepart_5ec33396628bf_5fad3fe3128cd9649444d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I think where TLS is going to land is with no change, because the nonce includes the full epoch. I have the same intuitions as you, but as you say they aren't formal.</p>
<p>With that said, as you observed in our call today, it seems like there is an easy fix: both AES_GCM and ChaCha20/Poly1305 take a 96-bit nonce which we are just left-padding with 0s. If we are willing to restrict to &lt;2^32 key changes, we could encode the epoch in those 0s, right?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3661#issuecomment-630518297">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK76EZUCVDWZWPA7H3DRSHMZNANCNFSM4NCUCTOA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK75P6ULTXBXGUWW4PDRSHMZNA5CNFSM4NCUCTOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWKPEGI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3661#issuecomment-630518297",
"url": "https://github.com/quicwg/base-drafts/issues/3661#issuecomment-630518297",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec33396628bf_5fad3fe3128cd9649444d--


From nobody Mon May 18 18:26:36 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 9D4C73A0FC1 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 18:26:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.501
X-Spam-Level: 
X-Spam-Status: No, score=-0.501 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 WmFJmaKMIs9R for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 18:26:32 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F06823A0FC0 for <quic-issues@ietf.org>; Mon, 18 May 2020 18:26:31 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id E48FB660022 for <quic-issues@ietf.org>; Mon, 18 May 2020 18:26:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589851590; bh=6uBzqEzCbQNsrvpTnRh0HDiWLSNN2m7xM9SjK6o9R+U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tDC7iKG3VlNLzrMaMeQLxm3VAnuMj/JA/HvJVwJ1EAZ6mmfqezvZYrCVMCdnwe1Px Whb24M0cWR5D5b0aw8c5MWlZkbARRP87PPIuRfDtNuVt5w/qbx4nwIOAiBbF1gPlbv IB3Pc9rHtyV0oh4I48GmjsKpYnf7KPKXTsYRFAsU=
Date: Mon, 18 May 2020 18:26:30 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYCFTPGWPPHXSSNZNV4Z4LMNEVBNHHCJ2QBFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3661/630520690@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3661@github.com>
References: <quicwg/base-drafts/issues/3661@github.com>
Subject: Re: [quicwg/base-drafts] Include epoch in the AAD or the nonce? (#3661)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec335c6d51b2_43683fbd0a6cd96c88748"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8s-ijIQlJUmJto2B9SMsMyRTh40>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 01:26:34 -0000

----==_mimepart_5ec335c6d51b2_43683fbd0a6cd96c88748
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Given the limits we have on usage, 2^32 would mean exhausting epochs before we exhaust packet numbers.  Both are pretty large values, and maybe we can avoid that limit for some future AEAD.  For AES, that means 2^56.5, which equates to roughly 1e20 bytes (100 exabytes) at a 1400 byte MTU, which seems like it would be tolerable.

That said, this is a fairly fundamental change with fairly thin rationale.  If people don't want to do this, then I'm not inclined to push very hard for a change.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3661#issuecomment-630520690
----==_mimepart_5ec335c6d51b2_43683fbd0a6cd96c88748
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Given the limits we have on usage, 2^32 would mean exhausting epochs before we exhaust packet numbers.  Both are pretty large values, and maybe we can avoid that limit for some future AEAD.  For AES, that means 2^56.5, which equates to roughly 1e20 bytes (100 exabytes) at a 1400 byte MTU, which seems like it would be tolerable.</p>
<p>That said, this is a fairly fundamental change with fairly thin rationale.  If people don't want to do this, then I'm not inclined to push very hard for a change.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3661#issuecomment-630520690">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY3Q7QH7DV4BL3FQGLRSHN4NANCNFSM4NCUCTOA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5HCRX6BJCPITZSOMDRSHN4NA5CNFSM4NCUCTOKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWKPW4Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3661#issuecomment-630520690",
"url": "https://github.com/quicwg/base-drafts/issues/3661#issuecomment-630520690",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec335c6d51b2_43683fbd0a6cd96c88748--


From nobody Mon May 18 19:27:36 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 5EF4B3A10B4 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:27:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.201
X-Spam-Level: 
X-Spam-Status: No, score=-1.201 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 QSLJyjN5PK5w for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:27:32 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2070D3A10B5 for <quic-issues@ietf.org>; Mon, 18 May 2020 19:27:32 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 24C8D5204D6 for <quic-issues@ietf.org>; Mon, 18 May 2020 19:27:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589855251; bh=8rQ+3h73ifz+3UISVzDnejL/WVZzFmSLk6FoZp1YSBU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MWEtA//O9W6QG5R5xKnOlh9MYdaoK9ZKgkIR4JhVocLVb4+jI4qVQH4u267TVGue3 8BtoPYS4NXoyQ5a23mb4QBhfLg7HHy8vSYh+ddPZ2C0V0JIjFhFVnfrW29PeqrRuvJ plg26kZxBIhH2rGrtU/GFjYOnSSUbX4zhO8tU6ns=
Date: Mon, 18 May 2020 19:27:31 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYE3JNBUNK6KCUESHN4Z4SRHEVBNHHCJ5PG2I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/review/414039925@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec3441313f5e_3dff3fa4b5ecd96836517a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gkAOrzWguwo5P3LG2JTgp3qVKgI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 02:27:34 -0000

----==_mimepart_5ec3441313f5e_3dff3fa4b5ecd96836517a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> @@ -513,22 +513,26 @@ The PTO value MUST be set to at least kGranularity, to avoid the timer expiring
 immediately.
 
 A sender recomputes and may need to reset its PTO timer every time an
-ack-eliciting packet is sent. When ack-eliciting packets are in-flight in
-multiple packet number spaces, the timer MUST be set for the packet number
-space with the earliest timeout, except for ApplicationData, which MUST be
-ignored until the handshake completes; see Section 4.1.1 of {{QUIC-TLS}}.  Not
-arming the PTO for ApplicationData prevents a client from retransmitting a 0-RTT
-packet on a PTO expiration before confirming that the server is able to decrypt
-0-RTT packets, and prevents a server from sending a 1-RTT packet on a PTO
-expiration before it has the keys to process an acknowledgement.
+ack-eliciting packet is sent or acknowledged, when the handshake is confirmed,
+or when Initial or Handshake keys are discarded. This ensures the PTO is always
+set based on the latest RTT information and for the last sent packet in the
+correct packet number space.
+
+When ack-eliciting packets are in-flight in multiple packet number spaces,

```suggestion
When ack-eliciting packets in multiple packet number spaces are in flight,
```

> +the timer MUST be set for the packet number space with the earliest timeout,
+except for ApplicationData, which MUST be ignored until the handshake completes;
+see Section 4.1.1 of {{QUIC-TLS}}.  Not arming the PTO for ApplicationData

```suggestion
the timer MUST be set for the packet number space with the earliest timeout,
with one exception. The ApplicationData packet number space (Section 4.1.1
of {{QUIC-TLS}}) MUST be ignored until the handshake completes. Not arming
the PTO for ApplicationData
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-414039925
----==_mimepart_5ec3441313f5e_3dff3fa4b5ecd96836517a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3665#discussi=
on_r426978057">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -513,22 +513,26 @@ The PTO value MUST b=
e set to at least kGranularity, to avoid the timer expiring=0D
 immediately.=0D
 =0D
 A sender recomputes and may need to reset its PTO timer every time an=0D=

-ack-eliciting packet is sent. When ack-eliciting packets are in-flight i=
n=0D
-multiple packet number spaces, the timer MUST be set for the packet numb=
er=0D
-space with the earliest timeout, except for ApplicationData, which MUST =
be=0D
-ignored until the handshake completes; see Section 4.1.1 of {{QUIC-TLS}}=
.  Not=0D
-arming the PTO for ApplicationData prevents a client from retransmitting=
 a 0-RTT=0D
-packet on a PTO expiration before confirming that the server is able to =
decrypt=0D
-0-RTT packets, and prevents a server from sending a 1-RTT packet on a PT=
O=0D
-expiration before it has the keys to process an acknowledgement.=0D
+ack-eliciting packet is sent or acknowledged, when the handshake is conf=
irmed,=0D
+or when Initial or Handshake keys are discarded. This ensures the PTO is=
 always=0D
+set based on the latest RTT information and for the last sent packet in =
the=0D
+correct packet number space.=0D
+=0D
+When ack-eliciting packets are in-flight in multiple packet number space=
s,=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-When ack-eliciting packets are in-flight in m=
ultiple packet number spaces,=0D
+When ack-eliciting packets in multiple packet number spaces are in fligh=
t,=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3665#discussi=
on_r426993376">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +the timer MUST be set for the packet numb=
er space with the earliest timeout,=0D
+except for ApplicationData, which MUST be ignored until the handshake co=
mpletes;=0D
+see Section 4.1.1 of {{QUIC-TLS}}.  Not arming the PTO for ApplicationDa=
ta=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-the timer MUST be set for the packet number s=
pace with the earliest timeout,=0D
-except for ApplicationData, which MUST be ignored until the handshake co=
mpletes;=0D
-see Section 4.1.1 of {{QUIC-TLS}}.  Not arming the PTO for ApplicationDa=
ta=0D
+the timer MUST be set for the packet number space with the earliest time=
out,=0D
+with one exception. The ApplicationData packet number space (Section 4.1=
.1=0D
+of {{QUIC-TLS}}) MUST be ignored until the handshake completes. Not armi=
ng=0D
+the PTO for ApplicationData=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3665#pullrequestreview-414039925">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K6SSMO2U4ZLHKOKCVLRSHVBHANCNFSM4ND6MHEA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK2V4FAJDM4JJUTZPJLRSHVBHA5CNFSM4=
ND6MHEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCW365I.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3665#pullrequestrev=
iew-414039925",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview=
-414039925",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec3441313f5e_3dff3fa4b5ecd96836517a--


From nobody Mon May 18 19:28:01 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 EAE2C3A10B4 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:27:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.474
X-Spam-Level: 
X-Spam-Status: No, score=-0.474 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_28=0.726, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 T61vma3JOHY4 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:27:57 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A506D3A10B1 for <quic-issues@ietf.org>; Mon, 18 May 2020 19:27:57 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id C91156E11F7 for <quic-issues@ietf.org>; Mon, 18 May 2020 19:27:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589855276; bh=Vp9zfzQhQW+E+eFxFTVkESN4UHHtmvdDwaPpdkok5c8=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=hQQeh50PoVDaW7fD9HBzsFpEpgfcP1jtEk8sZkjttInT8POVJ5a3Mf3X2esGDiMsU ih4L62F5x7dnJ29t1Zs7/xkS5bIvUgyg0VQgvj/0mtRlx6x3z6vGA4g36a8SysCNSb uYc3fOEV/sEMz5ZrkNncvA4CJnrbhubPPmyqbsVU=
Date: Mon, 18 May 2020 19:27:56 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYBMA2UJXY26IWJDBN4Z4SSZEVBNHHCJ7QHRQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3668@github.com>
Subject: [quicwg/base-drafts] Changelog for -28 (#3668)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec3442cb97b3_186a3fac65ecd9602334c2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3TRM_qdNGutjW2amyJwSzDp7mP0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 02:28:00 -0000

----==_mimepart_5ec3442cb97b3_186a3fac65ecd9602334c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

My best stab at it.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3668

-- Commit Summary --

  * Transport and TLS changelog for -28
  * Recovery changelog for -28
  * HTTP and QPACK changelog for -28

-- File Changes --

    M draft-ietf-quic-http.md (9)
    M draft-ietf-quic-qpack.md (4)
    M draft-ietf-quic-recovery.md (15)
    M draft-ietf-quic-tls.md (8)
    M draft-ietf-quic-transport.md (26)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3668.patch
https://github.com/quicwg/base-drafts/pull/3668.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3668

----==_mimepart_5ec3442cb97b3_186a3fac65ecd9602334c2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>My best stab at it.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3668'>https://github.com/quicwg/base-drafts/pull/3668</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Transport and TLS changelog for -28</li>
  <li>Recovery changelog for -28</li>
  <li>HTTP and QPACK changelog for -28</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3668/files#diff-3d2f9fd0738589657498f2c06ee02f2f">draft-ietf-quic-http.md</a>
    (9)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3668/files#diff-c3ed24528f71fade042cdefbeadbd7b9">draft-ietf-quic-qpack.md</a>
    (4)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3668/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (15)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3668/files#diff-afdf56cd6ee6d10d94d669541f99bc07">draft-ietf-quic-tls.md</a>
    (8)
  </li>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3668/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (26)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3668.patch'>https://github.com/quicwg/base-drafts/pull/3668.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3668.diff'>https://github.com/quicwg/base-drafts/pull/3668.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3668">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3MWNH5HOLOVQNVYW3RSHVCZANCNFSM4NES47EA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7H4QUAULUU3SHZFHDRSHVCZA5CNFSM4NES47EKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JH6A6GA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3668",
"url": "https://github.com/quicwg/base-drafts/pull/3668",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec3442cb97b3_186a3fac65ecd9602334c2--


From nobody Mon May 18 19:28:19 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 98E653A10B1 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:28:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.2
X-Spam-Level: 
X-Spam-Status: No, score=-0.2 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 WNCqwsKmuw-Y for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:28:16 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7D9AE3A10B4 for <quic-issues@ietf.org>; Mon, 18 May 2020 19:28:16 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 634AA960586 for <quic-issues@ietf.org>; Mon, 18 May 2020 19:28:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589855295; bh=3IZ8YbtKrdMzu0pZZoQ1GJYr+4APIz9EDE3QJICaxDM=; h=Date:From:To:Subject:From; b=OYrBQKEGeAnzlc8g05qGou/0yUYI6SncZWB2MzIQFZyElEGQY2RIpltu6Kn1zLJL7 Oz9Qpp1eJA1KhgwkYtzPqusA7ck9Ba/4TnziQjqUY/tOfJ1KyfCuKkClPhSZv7tPi/ SSt+VZZO7pqYR5bbEA1M2GSZU07bN1E1I+/jtqSU=
Date: Mon, 18 May 2020 19:28:15 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/jri/fix-n/2b872b-42029c@github.com>
Subject: [quicwg/base-drafts] 42029c: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KtG1pBck_-S5jgN9CM6vLclrtYQ>
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: Tue, 19 May 2020 02:28:18 -0000

  Branch: refs/heads/jri/fix-n
  Home:   https://github.com/quicwg/base-drafts
  Commit: 42029ce2684faf7a4a2e0d088ec0d77eb776914c
      https://github.com/quicwg/base-drafts/commit/42029ce2684faf7a4a2e0d088ec0d77eb776914c
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Martin Thomson <mt@lowentropy.net>



From nobody Mon May 18 19:28:28 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 566383A10B5 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:28:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.499
X-Spam-Level: 
X-Spam-Status: No, score=-0.499 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 8Rzv6s-ai86K for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:28:26 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2933B3A10B4 for <quic-issues@ietf.org>; Mon, 18 May 2020 19:28:26 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 629438C054C for <quic-issues@ietf.org>; Mon, 18 May 2020 19:28:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589855305; bh=BrvYOgMokvFt62rt1ccACCJUKgySeZMmavk340VGouE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=InEtw21arH5vit8nraIxU9tjPss3NP2TVkN3wKBdRCKirb5W0MaY/V/L7tSsMaSgS SCy0WCuVfJNKT2K0l1IxI19LHxgocuDhSdSfkXssg8g1qFhCAtg0pmF3RRGgsDvhdb RtUGdF3W8/sLDAmEshIqHTUrvJn3IrCqPPOvXzL4=
Date: Mon, 18 May 2020 19:28:25 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3667/push/5093445663@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3667@github.com>
References: <quicwg/base-drafts/pull/3667@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text on pacing (#3667)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec34449536c5_50aa3fa6f3ecd9643739c6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/em-MoPerQkmzEKqEa_pO7YU03xc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 02:28:27 -0000

----==_mimepart_5ec34449536c5_50aa3fa6f3ecd9643739c6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar pushed 1 commit.

42029ce2684faf7a4a2e0d088ec0d77eb776914c  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3667/files/2b872b0250bfcdd66d56d59113bc9e367d715865..42029ce2684faf7a4a2e0d088ec0d77eb776914c

----==_mimepart_5ec34449536c5_50aa3fa6f3ecd9643739c6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/janaiyengar" class="user-mention">@janaiyengar</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/42029ce2684faf7a4a2e0d088ec0d77eb776914c">42029ce</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3667/files/2b872b0250bfcdd66d56d59113bc9e367d715865..42029ce2684faf7a4a2e0d088ec0d77eb776914c">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYJAGTERB57WRRG7CLRSHVETANCNFSM4NERNO5Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3SWDWYLXGK4IVKT63RSHVETA5CNFSM4NERNO52YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSOBRGUZDAOCQOVZWQIZVGA4TGNBUGU3DMMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3667/files/2b872b0250bfcdd66d56d59113bc9e367d715865..42029ce2684faf7a4a2e0d088ec0d77eb776914c",
"url": "https://github.com/quicwg/base-drafts/pull/3667/files/2b872b0250bfcdd66d56d59113bc9e367d715865..42029ce2684faf7a4a2e0d088ec0d77eb776914c",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec34449536c5_50aa3fa6f3ecd9643739c6--


From nobody Mon May 18 19:29:07 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 5CBFA3A10B1 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:29:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[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] 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 tLnUgWRbmMmi for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:29:05 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3EA033A10B4 for <quic-issues@ietf.org>; Mon, 18 May 2020 19:29:05 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 79221C6022B for <quic-issues@ietf.org>; Mon, 18 May 2020 19:29:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589855344; bh=xdXC1gcQD/auxCx3fsgaufmYoIxbsEq/X/PBGpyEjcs=; h=Date:From:To:Subject:From; b=Z80+CEYUjWR4XplsKDVglbUPtk/HBlrFPB7hQobDm1Hjgt4V631icQbJ+bLr0ta6f YeuJqz8lbmO37WwSPlLn/nZuJaLSbv3gdKfhB/7J4pAQiRvzU4z5iSRFE057ZrKiLy 1P8BSAC5Bcwd2Bmk8Sgy5qFTRHR9fbP+YAXx9JUs=
Date: Mon, 18 May 2020 19:29:04 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0d2af2-d9f762@github.com>
Subject: [quicwg/base-drafts] d9f762: Script updating gh-pages from 42029ce2. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-EVhV8THUAQrExV-pUQRpUigPrk>
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: Tue, 19 May 2020 02:29:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d9f76233b70a72a475b40d28c03fd516fc4aa7a2
      https://github.com/quicwg/base-drafts/commit/d9f76233b70a72a475b40d28c03fd516fc4aa7a2
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M index.html
    M jri/fix-n/draft-ietf-quic-recovery.html
    M jri/fix-n/draft-ietf-quic-recovery.txt

  Log Message:
  -----------
  Script updating gh-pages from 42029ce2. [ci skip]



From nobody Mon May 18 19:29:18 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 1FC4F3A10B4 for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:29:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 PjMgyqGxdWqn for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:29:16 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 291213A10B1 for <quic-issues@ietf.org>; Mon, 18 May 2020 19:29:16 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 7B571520B84 for <quic-issues@ietf.org>; Mon, 18 May 2020 19:29:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589855355; bh=q2wZkN1zd/kRiEGv0stm6lI1G+jvXPP8BPdc0TF7OS4=; h=Date:From:To:Subject:From; b=qG5rTmCXAeCXaDg13/19xJrIU3AIjevPMSB9lYXAPLRq1EZFqBbb2JyEhwoiKW5tt wk8tMgo6vQtH+Yx3mEGR1NH7+ZCUm2uRn61MMJtAF5ALR8kA4C60WHmRnfu4B75mTz aUjFUxnmZY14MHP5Pp05zItlBip2NZErd3M2Q8zM=
Date: Mon, 18 May 2020 19:29:15 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d9f762-4b3868@github.com>
Subject: [quicwg/base-drafts] 4b3868: Script updating archive at 2020-05-19T02:28:56Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Eb4rr6aDLM0yxPj-VvFrRqn2g-Y>
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: Tue, 19 May 2020 02:29:17 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4b38686e73bc8be331db648b2c85df0850d475e6
      https://github.com/quicwg/base-drafts/commit/4b38686e73bc8be331db648b2c85df0850d475e6
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-19T02:28:56Z. [ci skip]



From nobody Mon May 18 19:44:34 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 2C8A03A10CA for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:44:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.081
X-Spam-Level: 
X-Spam-Status: No, score=0.081 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_24=1.282, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 67KyClNu_dTC for <quic-issues@ietfa.amsl.com>; Mon, 18 May 2020 19:44:30 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7BB1F3A108C for <quic-issues@ietf.org>; Mon, 18 May 2020 19:44:30 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id AB8479602AF for <quic-issues@ietf.org>; Mon, 18 May 2020 19:44:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589856268; bh=qOtsOE1aTsotdKuUkfVHL2hg7A+46pIkD9eqzF+ubHE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=S0EqwV0/FjXoJoF0zMX4RiMvo8qITG/Mt3v5EfQ132X+amwpm0wIMLcsCICjVLwRq uPVKdTXUzdeDvwKZrlWQYKwYqnhUGkvvO5KbKHyVu03bdgfgimzwXQjZyMmMQT5F7Q Rej1/0m5+qYJsyVM7VWEjNdjvux/UUZtqobh4+bY=
Date: Mon, 18 May 2020 19:44:28 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7KCPMYFFO5OWIA3ZV4Z4UQZEVBNHHCJTOADM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/review/414060771@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec3480c9a7a7_45a33fbb444cd968960db"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zYdw9jsXO5F5e18mgYA8MR2T-kc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 02:44:32 -0000

----==_mimepart_5ec3480c9a7a7_45a33fbb444cd968960db
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> +Receiving a datagram might allow the server to send if the
+server was previously blocked by the anti-amplification limits.
+This is necessary even if none of the packets in the datagram
+are successfully processed.

```suggestion
When a server is  blocked by anti-amplification limits, receiving
a datagram unblocks it, even if none of the packets in the datagram
are successfully processed. In such a case, the PTO timer is now set,
since data is in flight and probes can be sent.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-414060771
----==_mimepart_5ec3480c9a7a7_45a33fbb444cd968960db
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3653#discussi=
on_r426995763">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +Receiving a datagram might allow the serv=
er to send if the=0D
+server was previously blocked by the anti-amplification limits.=0D
+This is necessary even if none of the packets in the datagram=0D
+are successfully processed.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-Receiving a datagram might allow the server t=
o send if the=0D
-server was previously blocked by the anti-amplification limits.=0D
-This is necessary even if none of the packets in the datagram=0D
-are successfully processed.=0D
+When a server is  blocked by anti-amplification limits, receiving=0D
+a datagram unblocks it, even if none of the packets in the datagram=0D
+are successfully processed. In such a case, the PTO timer is now set,=0D=

+since data is in flight and probes can be sent.=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3653#pullrequestreview-414060771">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K7NNUTDXBZBD6SYEPDRSHXAZANCNFSM4M7YPO6Q">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK5H4J5YATFQ2IZQ3OLRSHXAZA5CNFSM4=
M7YPO62YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODCXBBYY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestrev=
iew-414060771",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview=
-414060771",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec3480c9a7a7_45a33fbb444cd968960db--


From nobody Tue May 19 07:08:21 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 9C12D3A00C4 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:08:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.5
X-Spam-Level: 
X-Spam-Status: No, score=-0.5 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 4H0QuO8aDbCm for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:08:16 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B17613A0366 for <quic-issues@ietf.org>; Tue, 19 May 2020 07:08:16 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id D9FC56A1EF5 for <quic-issues@ietf.org>; Tue, 19 May 2020 07:08:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589897295; bh=J5jhtj+gYa/aplnClm4O9e8r7EEqjEF/5X0hL++NJ14=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ov0dHQKhmC8rNqdUoGPAbFkxPxMcu1utcC9DxqMl/ApXZXNXh72ibXShOKjo7ds4R IbP2KF3wDsCqj0QMXW29avArtNkI04dTWnEaAcVpxL2MdsyhppnDBqBP8hrTc7FSgL WqxeWFsBNsSXTNMH+IVjnk3rh6BW7pE3zHF9fS1c=
Date: Tue, 19 May 2020 07:08:15 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7JGFM4CTO3Y2DHTXV4Z7EU7EVBNHHCJ5NF4Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3664/review/414481565@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3664@github.com>
References: <quicwg/base-drafts/pull/3664@github.com>
Subject: Re: [quicwg/base-drafts] Move MUST not send bursts up in the pacing section (#3664)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec3e84fca420_41ff3fb1652cd96c87524"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/g3oantk8PtZsfuw43iTAoAtueRo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 14:08:20 -0000

----==_mimepart_5ec3e84fca420_41ff3fb1652cd96c87524
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> -controller. For example, a pacer might distribute the congestion window over
-the smoothed RTT when used with a window-based controller, or a pacer might use
-the rate estimate of a rate-based controller.

I thought it was redundant to the text you added below.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3664#discussion_r427329968
----==_mimepart_5ec3e84fca420_41ff3fb1652cd96c87524
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3664#discussion_r427329968">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; -controller. For example, a pacer might distribute the congestion window over
-the smoothed RTT when used with a window-based controller, or a pacer might use
-the rate estimate of a rate-based controller.
</pre>
<p>I thought it was redundant to the text you added below.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3664#discussion_r427329968">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK62OV7TA5YNP74VAALRSKHE7ANCNFSM4ND5YJTA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZBOS45OVVONXVEN6DRSKHE7A5CNFSM4ND5YJTKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC2HZHI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3664#discussion_r427329968",
"url": "https://github.com/quicwg/base-drafts/pull/3664#discussion_r427329968",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec3e84fca420_41ff3fb1652cd96c87524--


From nobody Tue May 19 07:27:24 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 DB4933A0865 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:27:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.2
X-Spam-Level: 
X-Spam-Status: No, score=-0.2 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 bwq9LKXLZPS4 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:27:18 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2D1023A087B for <quic-issues@ietf.org>; Tue, 19 May 2020 07:27:16 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 81BC4A0610 for <quic-issues@ietf.org>; Tue, 19 May 2020 07:27:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589898434; bh=vp3uOzKNTLP1Zle5BdQWfHrKZJ69A4u2cmr1Vbcnnns=; h=Date:From:To:Subject:From; b=QP5t7AjPXIswLJU301n42zcTtLP75ldPAAZmqq8KRisN0vNjt1BjVMZUzy4L5An45 OhyqkAfb/X7XyzCRf7KCOyPRSVVoc1W2s9MY4JQnyJtyJsCtq1n3vlHxg8W0bdaKDM hQm0qhvWdx4yL9w50ejcCFj3IYQplipIKSsYL/cQ=
Date: Tue, 19 May 2020 07:27:14 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-onpacketreceived/9be181-ee306a@github.com>
Subject: [quicwg/base-drafts] ee306a: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZAENdj9_X1iGUcKLup8rjoXrrK8>
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: Tue, 19 May 2020 14:27:22 -0000

  Branch: refs/heads/ianswett-onpacketreceived
  Home:   https://github.com/quicwg/base-drafts
  Commit: ee306ab8f36e504f8571cb269198eeaf0abf78f9
      https://github.com/quicwg/base-drafts/commit/ee306ab8f36e504f8571cb269198eeaf0abf78f9
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue May 19 07:27:30 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 62CE63A085A for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:27:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.5
X-Spam-Level: 
X-Spam-Status: No, score=-0.5 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 JvThjzn7_RSB for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:27:25 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1A2893A0889 for <quic-issues@ietf.org>; Tue, 19 May 2020 07:27:25 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 125979621EA for <quic-issues@ietf.org>; Tue, 19 May 2020 07:27:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589898444; bh=rPRnp0S5KS+4zizMn4xHxOFT9+hJ8N3eDrjtz7g0+Ks=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RtcFgUhWZSihMLKEhIn8MPWB1TGuspl51fJK4vK6ResS9fNrPRvPWaH2Bo2nezyfY Rt7R1xWix+gzA4oPxLZV9osMFtu/FBvuM3ZMfqTTaMp0ZCYLlWEqTpwnn63avRjlpB 1zdSXcopqBz+nQfSlDkPyvhubwjFQAgD/cFpqWKQ=
Date: Tue, 19 May 2020 07:27:24 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/push/5096566921@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec3eccc2948_1df73fbcb3acd96021831a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Arfxss5s93Gy1dT-x7Xm7dapDVQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 14:27:26 -0000

----==_mimepart_5ec3eccc2948_1df73fbcb3acd96021831a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

ee306ab8f36e504f8571cb269198eeaf0abf78f9  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653/files/9be18130577abf419d42efe0d3dae6f04184c00e..ee306ab8f36e504f8571cb269198eeaf0abf78f9

----==_mimepart_5ec3eccc2948_1df73fbcb3acd96021831a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/ee306ab8f36e504f8571cb269198eeaf0abf78f9">ee306ab</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3653/files/9be18130577abf419d42efe0d3dae6f04184c00e..ee306ab8f36e504f8571cb269198eeaf0abf78f9">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYSOGSCR45DNWNEVM3RSKJMZANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5FHQTDLBO6SGWR57TRSKJMZA5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTOMZXGQ3DEMSQOVZWQIZVGA4TMNJWGY4TEMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653/files/9be18130577abf419d42efe0d3dae6f04184c00e..ee306ab8f36e504f8571cb269198eeaf0abf78f9",
"url": "https://github.com/quicwg/base-drafts/pull/3653/files/9be18130577abf419d42efe0d3dae6f04184c00e..ee306ab8f36e504f8571cb269198eeaf0abf78f9",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec3eccc2948_1df73fbcb3acd96021831a--


From nobody Tue May 19 07:28:23 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 8E26E3A085A for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:28:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[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] 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 CFlVLdyXEtTc for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:28:21 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6224E3A0873 for <quic-issues@ietf.org>; Tue, 19 May 2020 07:28:21 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 90E5FE0AC1 for <quic-issues@ietf.org>; Tue, 19 May 2020 07:28:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589898500; bh=17WFUP5aF47YLn/rUSGJRYfTo2doAxGhr7/zfZLf9oo=; h=Date:From:To:Subject:From; b=AkUGvH7Qa00lTaDm7O7HFoLESMArk6nlSBX9hZJi/+HZv3AGMseFx34Tdi0hpzJU1 GqDn8byaHS6sQKJ9/tA8LJNm/sK7rYPWPytLteSVndX46I7SSN/HxoSzj1+Uh/IMLP vdP/o1kgdp8UOFjP6lgp3fYLYzxs0780CtNX4eoM=
Date: Tue, 19 May 2020 07:28:20 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4b3868-3aef2a@github.com>
Subject: [quicwg/base-drafts] 3aef2a: Script updating gh-pages from ee306ab8. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/snhUcDqXPJbG1hbs5V7UArCMyLI>
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: Tue, 19 May 2020 14:28:23 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3aef2aa32d0fba67946cc03be453d590c1a734aa
      https://github.com/quicwg/base-drafts/commit/3aef2aa32d0fba67946cc03be453d590c1a734aa
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M ianswett-onpacketreceived/draft-ietf-quic-http.html
    M ianswett-onpacketreceived/draft-ietf-quic-http.txt
    M ianswett-onpacketreceived/draft-ietf-quic-invariants.html
    M ianswett-onpacketreceived/draft-ietf-quic-invariants.txt
    M ianswett-onpacketreceived/draft-ietf-quic-qpack.html
    M ianswett-onpacketreceived/draft-ietf-quic-qpack.txt
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.html
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.txt
    M ianswett-onpacketreceived/draft-ietf-quic-tls.html
    M ianswett-onpacketreceived/draft-ietf-quic-tls.txt
    M ianswett-onpacketreceived/draft-ietf-quic-transport.html
    M ianswett-onpacketreceived/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from ee306ab8. [ci skip]



From nobody Tue May 19 07:28:35 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 184533A0865 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:28:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.201
X-Spam-Level: 
X-Spam-Status: No, score=-0.201 tagged_above=-999 required=5 tests=[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] 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 PcEgExcC7nEX for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:28:32 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 24D7D3A085A for <quic-issues@ietf.org>; Tue, 19 May 2020 07:28:32 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 7C2BDE006A for <quic-issues@ietf.org>; Tue, 19 May 2020 07:28:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589898511; bh=xhRc3j+tZB0TQTuzLaUB+Vm0HpdJ6m8g7+h4WJBhrz8=; h=Date:From:To:Subject:From; b=q89612ZR638MjYEikbrOe3veTjnTX98WjJz5VSloGJbtMXtkgZWylgIV2SjGCA2iw UUDAxwXKRIMMEffUuzozwBAdvnoVERiDY6PwFYcdFX2acnLVdVOMpGuP7deKBkMp3p n1nib+EYWHpeGTrVGXaKAvzzaPxDI36AnzhWMgmA=
Date: Tue, 19 May 2020 07:28:31 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3aef2a-88b211@github.com>
Subject: [quicwg/base-drafts] 88b211: Script updating archive at 2020-05-19T14:28:08Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ssCwy3FgszCHAnJE-c_qGiu4qVI>
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: Tue, 19 May 2020 14:28:33 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 88b2114185d881dd409f8a7dcee06344eac1c222
      https://github.com/quicwg/base-drafts/commit/88b2114185d881dd409f8a7dcee06344eac1c222
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-19T14:28:08Z. [ci skip]



From nobody Tue May 19 07:28:59 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 E64903A0865 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:28:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.199
X-Spam-Level: 
X-Spam-Status: No, score=-0.199 tagged_above=-999 required=5 tests=[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, TVD_SPACE_RATIO=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 7KU-GhpsL4nZ for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:28:57 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E8D5B3A0874 for <quic-issues@ietf.org>; Tue, 19 May 2020 07:28:56 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 4A27A6A126B for <quic-issues@ietf.org>; Tue, 19 May 2020 07:28:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589898536; bh=eanWcffg4pq56TgXfM1sVt4j+R1EmmJS++ma+Ly9jDo=; h=Date:From:To:Subject:From; b=W0XwAJzdT2O+H8e10LX1jiYpdaNpdBj5NrEpwQ9KwCRlOUwK9I5bsowN3IYBeMg12 lI9np/fMioMczzWOb4XidCyxk04X/HBTEbT6EE+dDk1l1KcO6OVMNnHFRXZDHQ0t1+ Vm5vDr0NPZeTAxXBP89gow0xKzLYOmFZC/BZ5bOA=
Date: Tue, 19 May 2020 07:28:56 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-onpacketreceived/ee306a-04e787@github.com>
Subject: [quicwg/base-drafts] 04e787: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Ny3pz68hQuaioXJD6_l6ZeTVmu0>
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: Tue, 19 May 2020 14:28:58 -0000

  Branch: refs/heads/ianswett-onpacketreceived
  Home:   https://github.com/quicwg/base-drafts
  Commit: 04e787fb731e380aaa79dc236064cfb294449dcc
      https://github.com/quicwg/base-drafts/commit/04e787fb731e380aaa79dc236064cfb294449dcc
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Tue May 19 07:29:09 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 7E5E93A0874 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:29:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.5
X-Spam-Level: 
X-Spam-Status: No, score=-0.5 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_IMAGE_ONLY_20=0.7, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 6wSULR-GLcNp for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:29:06 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6B7633A0865 for <quic-issues@ietf.org>; Tue, 19 May 2020 07:29:06 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id E1112120148 for <quic-issues@ietf.org>; Tue, 19 May 2020 07:29:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589898545; bh=wmfghahd72L1R89yv5KS3+6k43XVphXkpEMRdZzfJM4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jtKFczVgYo9BQ0Xp105tKFgsWF1fptht75Uo9TLvYIEfIQw7omNI3I0e9cdyUdVQm j2WCVgDerR1bomo4hAV82F8lYXe2huu0JuccHEk+YqjjJA4xQ9k4rULMoZUrwlqILC BiFb9ZtcrHcN9jQ6jmgYVGib9QOoIQo9nm7EHJok=
Date: Tue, 19 May 2020 07:29:05 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/push/5096577695@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec3ed319d3a8_70d03fd7ee2cd96c3382d2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3-b3lMhaC8Vt3vmgHiaxXtQE3aI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 14:29:08 -0000

----==_mimepart_5ec3ed319d3a8_70d03fd7ee2cd96c3382d2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

04e787fb731e380aaa79dc236064cfb294449dcc  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653/files/ee306ab8f36e504f8571cb269198eeaf0abf78f9..04e787fb731e380aaa79dc236064cfb294449dcc

----==_mimepart_5ec3ed319d3a8_70d03fd7ee2cd96c3382d2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/04e787fb731e380aaa79dc236064cfb294449dcc">04e787f</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3653/files/ee306ab8f36e504f8571cb269198eeaf0abf78f9..04e787fb731e380aaa79dc236064cfb294449dcc">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5CUH6CN2TKQ56SJEDRSKJTDANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7K7JXJQZUTF7Y33QTRSKJTDA5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTOMZXGQ3DEMSQOVZWQIZVGA4TMNJXG43DSNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653/files/ee306ab8f36e504f8571cb269198eeaf0abf78f9..04e787fb731e380aaa79dc236064cfb294449dcc",
"url": "https://github.com/quicwg/base-drafts/pull/3653/files/ee306ab8f36e504f8571cb269198eeaf0abf78f9..04e787fb731e380aaa79dc236064cfb294449dcc",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec3ed319d3a8_70d03fd7ee2cd96c3382d2--


From nobody Tue May 19 07:30:30 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 5BFB83A085A for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:30:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -0.202
X-Spam-Level: 
X-Spam-Status: No, score=-0.202 tagged_above=-999 required=5 tests=[DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Ve4lr1i_-qGR for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 07:30:28 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 50A1D3A0816 for <quic-issues@ietf.org>; Tue, 19 May 2020 07:30:28 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 61AE08C0FC5 for <quic-issues@ietf.org>; Tue, 19 May 2020 07:30:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589898627; bh=t+cFfisrNFXpvRomPNwLZzHxhvOzNefvgeeZ5iIkZuU=; h=Date:From:To:Subject:From; b=g0GjDFhVJ/9b9qC/oQSyKrQjvBt2flTUJ6hcCRIehk5pFfA/MNMpxqAGP6xv7St6Y 3NMfekOl4QG4+WLD8ZW2wS30qqg+Y/jGtiYLUm2iMa3sQtK5UX9xm/M+pYw5q2W14w wM8hb/XONA7Auog4dxjLDS6PGLSvqgpgNceoLL8k=
Date: Tue, 19 May 2020 07:30:27 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/88b211-854810@github.com>
Subject: [quicwg/base-drafts] 854810: Script updating gh-pages from 04e787fb. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8JT6cQaOJfd1sMtaofPIKKBA3Lg>
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: Tue, 19 May 2020 14:30:30 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8548107705180c95fb02bc1a4e346709a3efe476
      https://github.com/quicwg/base-drafts/commit/8548107705180c95fb02bc1a4e346709a3efe476
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.html
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 04e787fb. [ci skip]



From nobody Tue May 19 10:35:27 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 F0EDA3A0D52 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 10:35:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 RjELgAk3OATG for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 10:35:25 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EFF523A0D4F for <quic-issues@ietf.org>; Tue, 19 May 2020 10:35:24 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id 3515D6E03B2 for <quic-issues@ietf.org>; Tue, 19 May 2020 10:35:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589909724; bh=wL/2vJBHFgcSEwvOXMEApoZR8z8Dh6GtOjfkt5DQd7E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Kk3qhlclIQi1VLyMZC9FNREDpnLI0QHXpC/8fOYZtIwWsbADQ8d9jJsRTZR5Atukm UdShPIWJXoB/QiGTOQnyUravnCMKUVuVGmP+mQIz1rd1NNVfduhycG4J+jOhEqhwHZ UDAzjUjzGwXfjPX2LXO7+69QwgZHgV1+FlpQr5wY=
Date: Tue, 19 May 2020 10:35:24 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK35QRFAF2UGCXXADLV4Z745ZEVBNHHCJ7QHRQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3668/review/414674181@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3668@github.com>
References: <quicwg/base-drafts/pull/3668@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for -28 (#3668)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec418dc24c55_73923ff1838cd96c1214f8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dPZKnTEvKp2SC3DiQ0qMiRdZ0oY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 17:35:26 -0000

----==_mimepart_5ec418dc24c55_73923ff1838cd96c1214f8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414674181
----==_mimepart_5ec418dc24c55_73923ff1838cd96c1214f8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414674181">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ2OVFD3KBRQUASC7TRSK7NZANCNFSM4NES47EA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZWRLT3XR4NJM775N3RSK7NZA5CNFSM4NES47EKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC3W2BI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414674181",
"url": "https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414674181",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec418dc24c55_73923ff1838cd96c1214f8--


From nobody Tue May 19 12:39:30 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 63C963A0D7A for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 12:39:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 I5wIjlkDzGwL for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 12:39:28 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 27DE23A0D78 for <quic-issues@ietf.org>; Tue, 19 May 2020 12:39:28 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id 19020E00A2 for <quic-issues@ietf.org>; Tue, 19 May 2020 12:39:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589917167; bh=eL5K510d6I2So7Po7fhk2D/tH0pE2l5VPCIwh3BPa80=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TWly7HHwF0IWzRepKEtV4UeTdTSeK80L/Z3bxlYa7hixrARko2b9QjeZ2Ev2B+6h7 AXQJC5+77acLqOxKONif/+SxWbg3mo8sSCREZwehMhiloL9tgORRGWc/mHBwSOpiZx GT1kRw24r8ZNcV7IbkM7FS39tcWmW25nWqd6H0lY=
Date: Tue, 19 May 2020 12:39:27 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2P3BVISNG7HPB264N42ALO7EVBNHHCJ7QHRQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3668/review/414763242@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3668@github.com>
References: <quicwg/base-drafts/pull/3668@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for -28 (#3668)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec435ef9ad4_dd33f8bc20cd964815d0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tZg1h9kcfqME-R8HxL8wBFk3clc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 19:39:30 -0000

----==_mimepart_5ec435ef9ad4_dd33f8bc20cd964815d0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue approved this pull request.

Looks good. I know we typically only document design changes but FWIW the switch of the diagram formatting might catch some people off-guard.

> +- The entire payload of a datagram is used when counting bytes for
+  avoid amplification attacks (#3333, #3470)

is there a grammar nit in here?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414763242
----==_mimepart_5ec435ef9ad4_dd33f8bc20cd964815d0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@LPardue</b> approved this pull request.</p>

<p>Looks good. I know we typically only document design changes but FWIW the switch of the diagram formatting might catch some people off-guard.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3668#discussion_r427552024">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +- The entire payload of a datagram is used when counting bytes for
+  avoid amplification attacks (#3333, #3470)
</pre>
<p>is there a grammar nit in here?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414763242">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZLXYLSJUQJQ5HRIPLRSLN67ANCNFSM4NES47EA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2QFSBKNNFFLRO5ZS3RSLN67A5CNFSM4NES47EKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC4MR2Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414763242",
"url": "https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414763242",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec435ef9ad4_dd33f8bc20cd964815d0--


From nobody Tue May 19 13:34:58 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 1988F3A10EC for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 13:34:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 r8JSmYVhCOss for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 13:34:55 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 683543A0062 for <quic-issues@ietf.org>; Tue, 19 May 2020 13:34:55 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 5D929660922 for <quic-issues@ietf.org>; Tue, 19 May 2020 13:34:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589920494; bh=ryU9YvXdMtKmkHg9bAh1IVk21AQ4uwxDV0By2lwebAw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pL+qoAbFpJR6bvTdPePxPyWbX68/tpPhO7RrYdairBFQ+nflaiC0lWxmef9uRttE7 mF239DO6xBdX23ovu6VFBvMLfGXAQ77OKW7bwjcICkLFW4gXHHtfUrMmu9+r50CrW3 zuGBjH2TlExV4uwHvzHjzOuD5dGU91lida8sYNTU=
Date: Tue, 19 May 2020 13:34:54 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYYV2TIINVCLISSQE542AR65EVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/631067348@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec442ee4d74d_42743f94330cd968209381"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5aRtTxvWhwBczKELBWyaBe4eGOY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 20:34:57 -0000

----==_mimepart_5ec442ee4d74d_42743f94330cd968209381
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I've thought about this, and I don't believe we need this change, but I also think the change @kazuho suggested makes the current behavior better overall.

A server that supports migration on the SPA(ie: unicast) and not on the handshake address(ie: anycast) will end up not disabling migration and hoping that most clients migrate to the SPA or don't support migration of any sort.  That seems like a plausible hope, though I'm a bit leery of hope based protocol design.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631067348
----==_mimepart_5ec442ee4d74d_42743f94330cd968209381
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I've thought about this, and I don't believe we need this change, but I also think the change <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/kazuho/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a> suggested makes the current behavior better overall.</p>
<p>A server that supports migration on the SPA(ie: unicast) and not on the handshake address(ie: anycast) will end up not disabling migration and hoping that most clients migrate to the SPA or don't support migration of any sort.  That seems like a plausible hope, though I'm a bit leery of hope based protocol design.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631067348">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZX4BJRRFEPVAAYWXLRSLUO5ANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK36ZRLPAZWD4FJFMATRSLUO5A5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWOVFVA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631067348",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631067348",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec442ee4d74d_42743f94330cd968209381--


From nobody Tue May 19 13:38:31 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 43E6D3A1148 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 13:38:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 V59qI2OTQfdz for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 13:38:29 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F1AA13A10EC for <quic-issues@ietf.org>; Tue, 19 May 2020 13:38:28 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id DBE098C1147 for <quic-issues@ietf.org>; Tue, 19 May 2020 13:38:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589920707; bh=oVdH7vrBQFxmWXrtvY6AEVvywgISzqyWRi8cUl+sW9M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JjUD1UMn93BsTJwX+ll1sJ2stOBE7P5nBBbl5eGrzUpWOkRHJF1NVQqaGYSmMLBM8 FKE9pUUfeYn6m+R5Q1E8F+kG94bWHOsXudxygrflbFxmVln4i94q7PHKTUSXdZaViI tbQ2QDz//oPZeq7vn9h9NE476aDwln0r5ofDGlD8=
Date: Tue, 19 May 2020 13:38:27 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZCDXWRAHHHZA3MSGF42ASMHEVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/631068965@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec443c3bc585_6dcd3ff17fecd9604770cd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Vikb8DpnQl6AzkyYaU4wp7AdWAU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 20:38:30 -0000

----==_mimepart_5ec443c3bc585_6dcd3ff17fecd9604770cd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thinking about this more, a statement like:
"Migration is never guaranteed to succeed.  For servers that advertise a preferred address, it's expected migration is more likely to be successful when using the preferred address than the handshake address."

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631068965
----==_mimepart_5ec443c3bc585_6dcd3ff17fecd9604770cd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Thinking about this more, a statement like:<br>
"Migration is never guaranteed to succeed.  For servers that advertise a preferred address, it's expected migration is more likely to be successful when using the preferred address than the handshake address."</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631068965">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK52OXVKEYB5IFATX2DRSLU4HANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3XGN3YG5LU6TNQZITRSLU4HA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWOVSJI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631068965",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631068965",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec443c3bc585_6dcd3ff17fecd9604770cd--


From nobody Tue May 19 13:56:42 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 31B5A3A0A6A for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 13:56:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 cLoNqX65xisC for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 13:56:30 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8A3C23A0A34 for <quic-issues@ietf.org>; Tue, 19 May 2020 13:56:30 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 8F37F960618 for <quic-issues@ietf.org>; Tue, 19 May 2020 13:56:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589921789; bh=vb4YVc35tkArSqbP+UuT+iv+HILf6lBO8xXS+jY8TpQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0cXi18fCatIO4f8oGi6niRghBrnwNLZf1z4BkI8etDzZG5y5jw/G399aakFqsuEwZ rCF6kZWHbOSjUd7TZ98PQ4mYbSo2vk8RrdIom+nW/ISzxtvt+mgqbcoTrF1xYGuJBb BWOmW0Rs8aB+bIecDfEW86UP7VeTxWLMvg+Q1Rlo=
Date: Tue, 19 May 2020 13:56:29 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5WVYYBIRYCZEEK2JV42AUP3EVBNHHCJ7MKFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3667/c631077682@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3667@github.com>
References: <quicwg/base-drafts/pull/3667@github.com>
Subject: Re: [quicwg/base-drafts] Clarify text on pacing (#3667)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec447fd80d64_694b3fadd90cd96c14194d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nJNuHJX431RP7RuedBhxbL2qdHU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 20:56:32 -0000

----==_mimepart_5ec447fd80d64_694b3fadd90cd96c14194d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I tend to think this is a useful way to think of pacing for window based congestion controllers, which is why I suggested it be added.  We can talk later.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3667#issuecomment-631077682
----==_mimepart_5ec447fd80d64_694b3fadd90cd96c14194d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I tend to think this is a useful way to think of pacing for window based congestion controllers, which is why I suggested it be added.  We can talk later.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3667#issuecomment-631077682">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7ZEHKZHF2PPNYCUD3RSLW73ANCNFSM4NERNO5Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZWYENME2BLK6UVENTRSLW73A5CNFSM4NERNO52YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWOXWMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3667#issuecomment-631077682",
"url": "https://github.com/quicwg/base-drafts/pull/3667#issuecomment-631077682",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec447fd80d64_694b3fadd90cd96c14194d--


From nobody Tue May 19 14:02:23 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 47C1C3A0A0A for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:02:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 UVBxiVSDnW9Q for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:02:19 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 230F73A099A for <quic-issues@ietf.org>; Tue, 19 May 2020 14:02:19 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 8100852115E for <quic-issues@ietf.org>; Tue, 19 May 2020 14:02:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589922137; bh=pMe96P4T2GuqTcYt7Fn3TMkoB5HHZofgJtgdpco3wK0=; h=Date:From:To:Subject:From; b=cl6KG2TuAfmZLIZPMNG+jw/7OJkBtR2nNCKPHkKhRtJHut0q+M00OnpCy4P8LBG6j 8E0+vCGsV5u97rUKP745ehk1p97qCAuPcmI4c5/MEr5+KR4fFG3y+lmV0xCu1XEZOS yYfYiEOHLEXB7xkUANuyMlgR/Yyjwh1KmEqoJUOY=
Date: Tue, 19 May 2020 14:02:17 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recompute-pto/40e8c8-f9bde1@github.com>
Subject: [quicwg/base-drafts] f9bde1: Apply suggestions from code review
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/L5ttr0D6shASe40fLLfaP03lgxY>
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: Tue, 19 May 2020 21:02:22 -0000

  Branch: refs/heads/ianswett-recompute-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: f9bde12b42fe54fa9fc04a07630d2e0b35103ad8
      https://github.com/quicwg/base-drafts/commit/f9bde12b42fe54fa9fc04a07630d2e0b35103ad8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Apply suggestions from code review

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue May 19 14:02:30 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 5E7333A0BF5 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:02:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 qYOx-JU9JrhE for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:02:26 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A96C93A0A34 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:02:26 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id B01B38C0DAF for <quic-issues@ietf.org>; Tue, 19 May 2020 14:02:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589922145; bh=tBuqg+zl79iKW7BHVgftGIIae1yUJbio/86L5jnJcdU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=czvlt5vpdur+IoGd+OlfzNtNlfvtSxf+OG2FqHgG1CKqvqOlhHYB+ONrvqHLjx6oG HaE9rTMQIxFYjgAFi8kFyYCnZJqj1ZPl1NXD66LTM45SPrim3efAeJqKOLEvoZ48q4 knKiZM6JG+ub0zsX7aCXXENI2qcwiw3Y7H+6GDig=
Date: Tue, 19 May 2020 14:02:25 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/push/5098617803@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec44961a0fb4_5ab23faf4d8cd96c71537"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dvgKEB1s0B68U2LWYZsSqZevkFQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 21:02:28 -0000

----==_mimepart_5ec44961a0fb4_5ab23faf4d8cd96c71537
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

f9bde12b42fe54fa9fc04a07630d2e0b35103ad8  Apply suggestions from code review


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665/files/40e8c84ee5d29983a860f5fe1fc88c0387382a4c..f9bde12b42fe54fa9fc04a07630d2e0b35103ad8

----==_mimepart_5ec44961a0fb4_5ab23faf4d8cd96c71537
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/f9bde12b42fe54fa9fc04a07630d2e0b35103ad8">f9bde12</a>  Apply suggestions from code review</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3665/files/40e8c84ee5d29983a860f5fe1fc88c0387382a4c..f9bde12b42fe54fa9fc04a07630d2e0b35103ad8">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3L2HV4V5AU24IDJNLRSLXWDANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYD2WV4LY34ZJPZFM3RSLXWDA5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSNBQHA2TKMSQOVZWQIZVGA4TQNRRG44DAMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665/files/40e8c84ee5d29983a860f5fe1fc88c0387382a4c..f9bde12b42fe54fa9fc04a07630d2e0b35103ad8",
"url": "https://github.com/quicwg/base-drafts/pull/3665/files/40e8c84ee5d29983a860f5fe1fc88c0387382a4c..f9bde12b42fe54fa9fc04a07630d2e0b35103ad8",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec44961a0fb4_5ab23faf4d8cd96c71537--


From nobody Tue May 19 14:02:34 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 D823F3A1156 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:02:30 -0700 (PDT)
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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 DHERYeH1uK7U for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:02:29 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 96E843A0A0A for <quic-issues@ietf.org>; Tue, 19 May 2020 14:02:29 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id CFB60520BD8 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:02:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589922148; bh=ct/TBnjr24Dhf2c/RyXnm6nNCu9Dz6qkS2lGdJfxSKc=; h=Date:From:To:Subject:From; b=P+DaRtFycAR7TeQnjnJ5SBtQaHMYQhVejxEsM4TfwQeb52h0WNu7aFpQOI8p2Z7rB YmM3Gk2oAzfD92AfjGqi5hJMGBljddzbkbuQY0taIDtvt1GfrD4naAPuqPk1xJ+hh5 e0gBgUfrBt4M52QWarGsz74dAociPITJM3l1cQZA=
Date: Tue, 19 May 2020 14:02:28 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recompute-pto/f9bde1-54659b@github.com>
Subject: [quicwg/base-drafts] 54659b: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9lQU-JpRc_LaGr7H7-Thbu3Jfn4>
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: Tue, 19 May 2020 21:02:31 -0000

  Branch: refs/heads/ianswett-recompute-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 54659b1e26d41c50df060f617bafc9f4ac3ef201
      https://github.com/quicwg/base-drafts/commit/54659b1e26d41c50df060f617bafc9f4ac3ef201
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue May 19 14:02:41 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 484283A0AE9 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:02:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.553
X-Spam-Level: 
X-Spam-Status: No, score=-1.553 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 IGMuIcVL4JmK for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:02:39 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B46CC3A0A0A for <quic-issues@ietf.org>; Tue, 19 May 2020 14:02:38 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 871256A11C8 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:02:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589922157; bh=jyvj5yZt+fWA84Bo2oR6TlkPm2cOJCwF/FO/fW/ZHCw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=z2Jb4vxMiWcwuhqsW269fkqIFLcAHe2rbiS91IYqYT6lIbM7SaEvbwxJJYc5jRS+t QrF3gER1FR2oyhNEGuhcU9PsgtBMRZK/Km67rWQr1qoSWVua1MyxptAeTLA8jFV4Fp mkPLH6iDo+v9XtXJFXRSXYSLYkXRQzbPY51vFwR0=
Date: Tue, 19 May 2020 14:02:37 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/push/5098618735@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec4496d77dd8_a8d3fa5f2acd960150948"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/U-98fQsJR6me_r94I0rDMUXT2uI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 21:02:40 -0000

----==_mimepart_5ec4496d77dd8_a8d3fa5f2acd960150948
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

54659b1e26d41c50df060f617bafc9f4ac3ef201  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665/files/f9bde12b42fe54fa9fc04a07630d2e0b35103ad8..54659b1e26d41c50df060f617bafc9f4ac3ef201

----==_mimepart_5ec4496d77dd8_a8d3fa5f2acd960150948
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/54659b1e26d41c50df060f617bafc9f4ac3ef201">54659b1</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3665/files/f9bde12b42fe54fa9fc04a07630d2e0b35103ad8..54659b1e26d41c50df060f617bafc9f4ac3ef201">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYJAUHEQE6WBVBEJRLRSLXW3ANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2JFMCQZ2K67DKJD6DRSLXW3A5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSNBQHA2TKMSQOVZWQIZVGA4TQNRRHA3TGNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665/files/f9bde12b42fe54fa9fc04a07630d2e0b35103ad8..54659b1e26d41c50df060f617bafc9f4ac3ef201",
"url": "https://github.com/quicwg/base-drafts/pull/3665/files/f9bde12b42fe54fa9fc04a07630d2e0b35103ad8..54659b1e26d41c50df060f617bafc9f4ac3ef201",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec4496d77dd8_a8d3fa5f2acd960150948--


From nobody Tue May 19 14:03:39 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 97FEB3A1154 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:03:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 EpN2kxGYm_KM for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:03:37 -0700 (PDT)
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AB7913A1151 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:03:37 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 2F2B72616D4 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:03:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589922217; bh=nqz+8/wQQWwfeHx47y8dnK0LsbYCJFMgzSZ5Io2MCqo=; h=Date:From:To:Subject:From; b=Jx/EoAFM9DOufjDcU6DDnf0FuSh/GXL5JGl2eHinxZLcUqWi5FI7g5gAbH0RiBTy/ ECkcJfVgO2Xmd+9PjctezGS3Y3TAk30bGST2c2YdcKhK4/BNGk2fBg8meA9mbnKb+g ER5Ud3VEp8bmVdmkvNEglqMpKR1UFFQW0hflu6e4=
Date: Tue, 19 May 2020 14:03:36 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/854810-b7e005@github.com>
Subject: [quicwg/base-drafts] b7e005: Script updating gh-pages from 54659b1e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gqBGvynhegx6-NB1yU-5t2upIlw>
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: Tue, 19 May 2020 21:03:39 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b7e005187ab2e5d8fac63b4aa07bd915c77d837e
      https://github.com/quicwg/base-drafts/commit/b7e005187ab2e5d8fac63b4aa07bd915c77d837e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M ianswett-recompute-pto/draft-ietf-quic-http.html
    M ianswett-recompute-pto/draft-ietf-quic-http.txt
    M ianswett-recompute-pto/draft-ietf-quic-invariants.html
    M ianswett-recompute-pto/draft-ietf-quic-invariants.txt
    M ianswett-recompute-pto/draft-ietf-quic-qpack.html
    M ianswett-recompute-pto/draft-ietf-quic-qpack.txt
    M ianswett-recompute-pto/draft-ietf-quic-recovery.html
    M ianswett-recompute-pto/draft-ietf-quic-recovery.txt
    M ianswett-recompute-pto/draft-ietf-quic-tls.html
    M ianswett-recompute-pto/draft-ietf-quic-tls.txt
    M ianswett-recompute-pto/draft-ietf-quic-transport.html
    M ianswett-recompute-pto/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 54659b1e. [ci skip]



From nobody Tue May 19 14:11:03 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 5B30E3A0AB1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:11:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 FYaBc4XnX4mf for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:11:01 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 154B43A0982 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:11:01 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 348A41C036E for <quic-issues@ietf.org>; Tue, 19 May 2020 14:10:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589922659; bh=Hh9EDlzvzbYuktodSpJO56k77/ETWGIn/5aJMEAtzpg=; h=Date:From:To:Subject:From; b=dSrUzRX+F42flKQAetokomehjkHonHJgdzymnwD+FnmZWUSuE/pLJBZ4h+SBVnWGq S4GNbN2E5KMI+dgaIbo6xcmG4b5iL30w+xdtK4Ga5G1jvGFei4Gzg8YlvegsoXyBSb M81R6gii+xRSxCV7NZyIoTvvKR6MwuJCVPsJymTk=
Date: Tue, 19 May 2020 14:10:59 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recompute-pto/54659b-03d290@github.com>
Subject: [quicwg/base-drafts] 03d290: Martin's suggested reworked
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KFKTyjKz5wctFq778sNXL68_gcY>
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: Tue, 19 May 2020 21:11:03 -0000

  Branch: refs/heads/ianswett-recompute-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 03d29025efd1146a8688b1b5ab23c10c94644ceb
      https://github.com/quicwg/base-drafts/commit/03d29025efd1146a8688b1b5ab23c10c94644ceb
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Martin's suggested reworked



From nobody Tue May 19 14:11:28 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 373853A0AB1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:11:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Ke4NZZLf-6QE for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:11:08 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 37D2A3A0982 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:11:08 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 8C9D08C0BAA for <quic-issues@ietf.org>; Tue, 19 May 2020 14:11:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589922667; bh=Ct7TE5j2rR9Z6/AZRNPCDnMkK0S+K6jt6XBrpma1V80=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uRIALUfP3pSHE3TPANfaMtnlWPmQ2a9PTlxSeo1jXwNUZLUdQlkOIUFr36ZX2vLO/ zOo4hXEucSpXS/qazIUbg/UpOEfpA93XiTkoX4UN5a/9y2qMNyhtgRV1PMDWl7h7kP xwnErPpzv4zOTty8PLN25Wk4NVRjHlDpZLc4BYHg=
Date: Tue, 19 May 2020 14:11:07 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/push/5098657164@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec44b6b7dc63_3bfc3fa8312cd96831575a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/i5B8KprAinqQUU1tNHVTPSSPfFQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 21:11:11 -0000

----==_mimepart_5ec44b6b7dc63_3bfc3fa8312cd96831575a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

03d29025efd1146a8688b1b5ab23c10c94644ceb  Martin's suggested reworked


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665/files/54659b1e26d41c50df060f617bafc9f4ac3ef201..03d29025efd1146a8688b1b5ab23c10c94644ceb

----==_mimepart_5ec44b6b7dc63_3bfc3fa8312cd96831575a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/03d29025efd1146a8688b1b5ab23c10c94644ceb">03d2902</a>  Martin&#39;s suggested reworked</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3665/files/54659b1e26d41c50df060f617bafc9f4ac3ef201..03d29025efd1146a8688b1b5ab23c10c94644ceb">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZMP77XOTC6CPUKYPTRSLYWXANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK53R4MQW5YPJTBAYFTRSLYWXA5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSNBQHA2TKMSQOVZWQIZVGA4TQNRVG4YTMNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665/files/54659b1e26d41c50df060f617bafc9f4ac3ef201..03d29025efd1146a8688b1b5ab23c10c94644ceb",
"url": "https://github.com/quicwg/base-drafts/pull/3665/files/54659b1e26d41c50df060f617bafc9f4ac3ef201..03d29025efd1146a8688b1b5ab23c10c94644ceb",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec44b6b7dc63_3bfc3fa8312cd96831575a--


From nobody Tue May 19 14:11:33 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 2D95F3A0AB1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:11:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ORgoNQgnQQo8 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:11:29 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 558D73A0C35 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:11:29 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id AE21E6E1137 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:11:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589922688; bh=2fH7064ZEy1KuKwHyDLCcAkLueaKHo5NY7XzTL+q0oI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1yTE3K3v2ttdoAipNzqxoZSWVioSvGQqVXfE8uGpoLjSBrl/IKjIc+nme7pNPoBTL Tmhkg0VkpdjIM0RsDG0BNGmbrlDyqEi6oUOg1YFWDyITO8p+CdK1NdFVykj40bhsEz kibA0L/YS5uFK+Qx2bLVkxBENc57Rv9M1JW2f6N4=
Date: Tue, 19 May 2020 14:11:28 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4KRRNVB64FGVDQ3Y542AWIBEVBNHHCJ5PG2I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/review/414826239@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec44b809e203_562a3fded36cd968236623"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wAtqNblec9_HiY5fViZwXVxBXgQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 21:11:31 -0000

----==_mimepart_5ec44b809e203_562a3fded36cd968236623
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



>  
 When a PTO timer expires, the PTO backoff MUST be increased, resulting in the
-PTO period being set to twice its current value.  The PTO period is set based
-on the latest RTT information after receiving an acknowledgement. The PTO
-backoff is reset upon receiving an acknowledgement unless it's a client unsure
-if the the server has validated the client's address. Not resetting the backoff
-during peer address validation ensures the client's anti-deadlock timer is not
-set too aggressively when the server is slow in responding with handshake data.
+PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement unless it's a client unsure if the server has

SG, I tried to rework this with your suggestion.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665#discussion_r427602293
----==_mimepart_5ec44b809e203_562a3fded36cd968236623
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3665#discussion_r427602293">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;  
 When a PTO timer expires, the PTO backoff MUST be increased, resulting in the
-PTO period being set to twice its current value.  The PTO period is set based
-on the latest RTT information after receiving an acknowledgement. The PTO
-backoff is reset upon receiving an acknowledgement unless it&#39;s a client unsure
-if the the server has validated the client&#39;s address. Not resetting the backoff
-during peer address validation ensures the client&#39;s anti-deadlock timer is not
-set too aggressively when the server is slow in responding with handshake data.
+PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement unless it&#39;s a client unsure if the server has
</pre>
<p>SG, I tried to rework this with your suggestion.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3665#discussion_r427602293">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK26TIMAEI7YPYCZ6HTRSLYYBANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7EYGBAB4W7LR3PJXDRSLYYBA5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC4357Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665#discussion_r427602293",
"url": "https://github.com/quicwg/base-drafts/pull/3665#discussion_r427602293",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec44b809e203_562a3fded36cd968236623--


From nobody Tue May 19 14:12:24 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 0D7043A1168 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:12:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 RjaHdGzGsavW for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:12:15 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 90FC93A115D for <quic-issues@ietf.org>; Tue, 19 May 2020 14:12:15 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id D82C46E175A for <quic-issues@ietf.org>; Tue, 19 May 2020 14:12:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589922734; bh=xAQ+sHdSx+rf/ld3+JbGV22ihDO7sAgmumKJtEzuOOg=; h=Date:From:To:Subject:From; b=B+BWSq440LTz4WroWnZye/efLaDmkeRxEaRvSrfA2P7KFosf2HJRx4jco6MpGPDEE FAaBPnzAzzDifYzhlwHmbtQ+ss/v4N8kWMLFvlxPJcNPzyHXYA+6XdjUq3z3AcULmh 6uIGIpUYe56OGTWsvBj54DWbLgMF9b7KXDd9OeSw=
Date: Tue, 19 May 2020 14:12:14 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b7e005-66c225@github.com>
Subject: [quicwg/base-drafts] 66c225: Script updating gh-pages from 03d29025. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/em72jqnIJeneoDg7A4vfQi5j9Ic>
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: Tue, 19 May 2020 21:12:22 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 66c22542a340637370f6dcce916dab9e729ac5d7
      https://github.com/quicwg/base-drafts/commit/66c22542a340637370f6dcce916dab9e729ac5d7
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M ianswett-recompute-pto/draft-ietf-quic-recovery.html
    M ianswett-recompute-pto/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 03d29025. [ci skip]



From nobody Tue May 19 14:12:56 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 6F3323A11B6 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:12:50 -0700 (PDT)
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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 G4G--2Zp-VCD for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:12:49 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 151B03A1199 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:12:46 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id ED002A0DF3 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:12:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589922764; bh=ZfSgSbBJzD7Pyp4G0drJ1WST1a+XN3xky5lPGGJR4Ys=; h=Date:From:To:Subject:From; b=tp1fh4FsAYJLZaC0nt+ep17zAEI3tsrsVlrM/fyOiMMsTVjHho7muBNKpdRJsQY+H ruvAUNaw0r5D2pfOU/xDKv151cV0cKZL1doF8dsD7VZH5fzNbpaW4zccXbaUjZmMhV 1JNAWNPBQrVUJdZ7SxQyvf9V61bIfn8QYf3EEib4=
Date: Tue, 19 May 2020 14:12:44 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recompute-pto/03d290-a1618e@github.com>
Subject: [quicwg/base-drafts] a1618e: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MZGxHuTJxaOoiP8kFr_G1osh0nk>
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: Tue, 19 May 2020 21:12:54 -0000

  Branch: refs/heads/ianswett-recompute-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: a1618e828da8908b4ac8c850b3e9fac9a01e9f2e
      https://github.com/quicwg/base-drafts/commit/a1618e828da8908b4ac8c850b3e9fac9a01e9f2e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Tue May 19 14:13:02 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 527C73A0BFB for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:13:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.553
X-Spam-Level: 
X-Spam-Status: No, score=-1.553 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 lry9hrG1U5EN for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:12:59 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 085F83A1161 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:12:54 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 4F10E6A00AC for <quic-issues@ietf.org>; Tue, 19 May 2020 14:12:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589922773; bh=jMjYWgX6v3/DuIdL6uW9VKoniXjj4JD1/etCeXkOG2M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Tf0PD4BqkOYgQjyIDyiO40oD0fbJyYE1mCW7F4OFxAiGMYm1/gT3GSwN04ryGW73W FfrS+3gpjePJXZ2YJkbz36QBgO3Zk3lPOtOs9X+lKHSqKTWiPHEJFTTzANPFXYS6ri 9ALPPLt7xHWEdKhcXSXa/n2Fvk96OnrVLXZn50k8=
Date: Tue, 19 May 2020 14:12:53 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/push/5098665058@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec44bd5403d3_b223fc2740cd96c24191c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/q_tQ_hK7qx_AQxVq6gEzdcXQkPI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 21:13:00 -0000

----==_mimepart_5ec44bd5403d3_b223fc2740cd96c24191c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

a1618e828da8908b4ac8c850b3e9fac9a01e9f2e  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665/files/03d29025efd1146a8688b1b5ab23c10c94644ceb..a1618e828da8908b4ac8c850b3e9fac9a01e9f2e

----==_mimepart_5ec44bd5403d3_b223fc2740cd96c24191c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/a1618e828da8908b4ac8c850b3e9fac9a01e9f2e">a1618e8</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3665/files/03d29025efd1146a8688b1b5ab23c10c94644ceb..a1618e828da8908b4ac8c850b3e9fac9a01e9f2e">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK76AEDTJDLGWU4WNQLRSLY5LANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4V5R25SCPLMPESGXDRSLY5LA5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSNBQHA2TKMSQOVZWQIZVGA4TQNRWGUYDKOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665/files/03d29025efd1146a8688b1b5ab23c10c94644ceb..a1618e828da8908b4ac8c850b3e9fac9a01e9f2e",
"url": "https://github.com/quicwg/base-drafts/pull/3665/files/03d29025efd1146a8688b1b5ab23c10c94644ceb..a1618e828da8908b4ac8c850b3e9fac9a01e9f2e",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec44bd5403d3_b223fc2740cd96c24191c--


From nobody Tue May 19 14:13:46 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 1273A3A0AD4 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:13:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 rrO3vx0uZ-fi for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:13:43 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CB4C53A0AB1 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:13:43 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id 1329966100B for <quic-issues@ietf.org>; Tue, 19 May 2020 14:13:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589922822; bh=yGpw39WIMuBqO4fJkZJ92RMhOXvI6LuDhdDRb9EjHyE=; h=Date:From:To:Subject:From; b=HJY0CS4PAushVfLofGNnOGDIU8lA5QZ7/1NVbhbNgcMQPADoDE0SHCJXTPiAAx8+4 jOplqVy8uLip1GOCLpcfC0BLFkRr7DyIy6ScPN7Zn2jfsAdjZDdReLECP4K6+FyTtO t2qGVtEzmbrD6omrWgs1ijhpCPto97uvzoCMFydA=
Date: Tue, 19 May 2020 14:13:42 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/66c225-88c4c0@github.com>
Subject: [quicwg/base-drafts] 88c4c0: Script updating gh-pages from a1618e82. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uVX_buRIC_zN_kbNKgDO12Rsju0>
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: Tue, 19 May 2020 21:13:45 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 88c4c091248df972b15d85e9bf18b381907b3bdf
      https://github.com/quicwg/base-drafts/commit/88c4c091248df972b15d85e9bf18b381907b3bdf
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M ianswett-recompute-pto/draft-ietf-quic-recovery.html
    M ianswett-recompute-pto/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from a1618e82. [ci skip]



From nobody Tue May 19 14:14:09 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 87D193A0BFB for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:14:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 An5y3NIFRSZy for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:14:06 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5F1BC3A0AD4 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:14:06 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 99B08C60612 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:14:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589922845; bh=PjWMweUFyZhNMGmQYrVCPzXhCf5sSyjkVC1AWTB5omw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MfmKST7mVbaNxvxE3+aLrsCbwV3xFfwl1bM05h1/Wbhds/efDj4dMG9sKLMlz65jm PDnZJoSozuEwoPXtPoCe+m9gwSEHki0JoCXu7BARmLZ8hacpKJ/yajMnfTXdJuCn+h WMmw9Mx3jdn3hWcLKgSq9XeT3nc3MfvUckMsuddg=
Date: Tue, 19 May 2020 14:14:05 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2Q32W7W6QYJG56P5N42AWR3EVBNHHCJ7QHRQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3668/review/414827860@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3668@github.com>
References: <quicwg/base-drafts/pull/3668@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for -28 (#3668)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec44c1d8bbdd_abe3fa5f2acd9602675ae"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/A60Su01gwOMaspSUTrtfLn3dORA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 21:14:08 -0000

----==_mimepart_5ec44c1d8bbdd_abe3fa5f2acd9602675ae
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414827860
----==_mimepart_5ec44c1d8bbdd_abe3fa5f2acd9602675ae
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414827860">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6SKSVXHYNSWNNTAPDRSLZB3ANCNFSM4NES47EA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3ZU7SKNDE5SJVIL2TRSLZB3A5CNFSM4NES47EKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC44KVA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414827860",
"url": "https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414827860",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec44c1d8bbdd_abe3fa5f2acd9602675ae--


From nobody Tue May 19 14:34:30 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 0E30F3A1161 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:34:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 takvopR5wCUA for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:34:26 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7402B3A1160 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:34:26 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 4ABC26E0326 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:34:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589924065; bh=vblhB1SrbKf6cKx74DJjTN14bPij16F6gDQuORy5WoI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cN6+cqGsjEQ6nmXzx46nbj+473TgnIYzsgdHtel0d9JQ08CORr1YNFD058xDEnDWG tJVsLNrhuQ173fn8PUdgdMb+BfvQnH6KcoZ/pQq1rD8QkUGvM4w8BAlu9MCprgmSgz wz59F6mSVFN2Vk58MmzkjDBU5WpESupczPPiFG2E=
Date: Tue, 19 May 2020 14:34:25 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6SKKLOS4JGQ62NLXF42AY6DEVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/631095059@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec450e13a1a7_a873fa5f2acd9602509cf"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CKT0WoDRpmmMAuh9UZqdZW_Occ4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 21:34:28 -0000

----==_mimepart_5ec450e13a1a7_a873fa5f2acd9602509cf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This conversation has made it clear to me that an address, and not a server, is the thing that supports client migration. Which makes sense -- migration support at the server is entirely a question of routability, and it makes sense that it would be tied to the address in question and not the endpoint. So *if* we were to do anything, I think I would propose: 
- scoping disable_active_migration to the handshake address, and
- adding two disable_active_migration flags to the preferred_address TP, for the two addresses in the TP.

That said, this is a clean enough extension. A new extension can define a new TP that provides this granular interpretation of the three server addresses. A server that wishes to support this can send both the SPA and this newSPA TPs, with the SPA TP (with the current scoping of disable_active_migration applying to all server addresses) providing cover for legacy clients.

Also I expect that clients are likely to switch to using the SPA if provided. A server that has different routability properties for the two addresses can wait for some deployment and make decisions on whether to risk allowing migration based on data of what it sees as client behavior with SPA.

I would argue for doing nothing now. Experience will teach us the right way forward. If necessary, this extension will be easy enough to do, and importantly, the current interpretation of disable_active_migration gives us the right kind of cover in the meantime.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631095059
----==_mimepart_5ec450e13a1a7_a873fa5f2acd9602509cf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>This conversation has made it clear to me that an address, and not a server, is the thing that supports client migration. Which makes sense -- migration support at the server is entirely a question of routability, and it makes sense that it would be tied to the address in question and not the endpoint. So <em>if</em> we were to do anything, I think I would propose:</p>
<ul>
<li>scoping disable_active_migration to the handshake address, and</li>
<li>adding two disable_active_migration flags to the preferred_address TP, for the two addresses in the TP.</li>
</ul>
<p>That said, this is a clean enough extension. A new extension can define a new TP that provides this granular interpretation of the three server addresses. A server that wishes to support this can send both the SPA and this newSPA TPs, with the SPA TP (with the current scoping of disable_active_migration applying to all server addresses) providing cover for legacy clients.</p>
<p>Also I expect that clients are likely to switch to using the SPA if provided. A server that has different routability properties for the two addresses can wait for some deployment and make decisions on whether to risk allowing migration based on data of what it sees as client behavior with SPA.</p>
<p>I would argue for doing nothing now. Experience will teach us the right way forward. If necessary, this extension will be easy enough to do, and importantly, the current interpretation of disable_active_migration gives us the right kind of cover in the meantime.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631095059">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3NRP2IVZURVUTLQRLRSL3ODANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3JXKWU3JY4R2AZPK3RSL3ODA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWO36EY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631095059",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631095059",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec450e13a1a7_a873fa5f2acd9602509cf--


From nobody Tue May 19 14:44:16 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 938633A1162 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:44:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, TVD_SPACE_RATIO=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 XFloacSYi1SH for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:44:12 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5D93A3A115A for <quic-issues@ietf.org>; Tue, 19 May 2020 14:44:12 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 622806A0B5A for <quic-issues@ietf.org>; Tue, 19 May 2020 14:44:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589924651; bh=mSd9zvJJgXCuuhvv9SZIktjnJu25QEaOamZCxVIHd80=; h=Date:From:To:Subject:From; b=PpPuzPqh5pIAuiGrQ0C+tIw1FzR4B/dnLudW5ZLUtQnSFcKqpv9vAX05OWASxGV3P BQKRC0YxYWHMEQ64ykXhkBVOK1sKTNEnsCOPE93OyY3LOOvmI83FuBcpbx7D9WH0k2 hZlB6B2rqRThxOVTf1wQnycqOTHx2BJB3QAqwRpA=
Date: Tue, 19 May 2020 14:44:11 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/changelog-28/bc4f36-c05a11@github.com>
Subject: [quicwg/base-drafts] c05a11: Update draft-ietf-quic-transport.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vUDN4pl5oyCigMLHOn8Y52imDqE>
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: Tue, 19 May 2020 21:44:14 -0000

  Branch: refs/heads/changelog-28
  Home:   https://github.com/quicwg/base-drafts
  Commit: c05a11457615edb32945369f5b7e4c9ef6031f4c
      https://github.com/quicwg/base-drafts/commit/c05a11457615edb32945369f5b7e4c9ef6031f4c
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md



From nobody Tue May 19 14:44:26 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 76A013A115A for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:44:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.553
X-Spam-Level: 
X-Spam-Status: No, score=-1.553 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 KfW-BcpdY5YZ for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:44:22 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 19A073A1162 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:44:22 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 674A3660B84 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:44:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589924660; bh=sfaQBB+2mndd9Uxsr/T7rOhXR+mYoTyNM6si7q3BvlI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=d020UcloaUTpaMCyDSM6oCyqYug15p7GnY8pLXHOzrZFihzuQCck0KDZ5uzi7wloQ 7hzqYFr8W67F1C6I7YuZwFpNOTo/OR7h0VpLXJgN4buCg0Hu6+0mGh6cb1bkcLDMua bEf6wJVhuCb/wej3BGSTZa7jRwoRlU7i44H+Z2sE=
Date: Tue, 19 May 2020 14:44:20 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3668/push/5098796674@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3668@github.com>
References: <quicwg/base-drafts/pull/3668@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for -28 (#3668)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec45334560af_68a63fa9d6ccd96c3053aa"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/opiz-vrQNqst1NTuMZ1POtTKzRM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 21:44:24 -0000

----==_mimepart_5ec45334560af_68a63fa9d6ccd96c3053aa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar pushed 1 commit.

c05a11457615edb32945369f5b7e4c9ef6031f4c  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3668/files/bc4f3679897a52397118f7dbf009a752f848a3d1..c05a11457615edb32945369f5b7e4c9ef6031f4c

----==_mimepart_5ec45334560af_68a63fa9d6ccd96c3053aa
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/janaiyengar" class="user-mention">@janaiyengar</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/c05a11457615edb32945369f5b7e4c9ef6031f4c">c05a114</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3668/files/bc4f3679897a52397118f7dbf009a752f848a3d1..c05a11457615edb32945369f5b7e4c9ef6031f4c">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK76F4TQ4WPY7NEF5ADRSL4TJANCNFSM4NES47EA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK62E2EYQOY7F2SJKOLRSL4TJA5CNFSM4NES47EKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSOBTHAYDON2QOVZWQIZVGA4TQNZZGY3DONA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3668/files/bc4f3679897a52397118f7dbf009a752f848a3d1..c05a11457615edb32945369f5b7e4c9ef6031f4c",
"url": "https://github.com/quicwg/base-drafts/pull/3668/files/bc4f3679897a52397118f7dbf009a752f848a3d1..c05a11457615edb32945369f5b7e4c9ef6031f4c",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec45334560af_68a63fa9d6ccd96c3053aa--


From nobody Tue May 19 14:44:46 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 C51653A1162 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:44:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 oqQFeV1iQn0w for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:44:43 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8EF213A115A for <quic-issues@ietf.org>; Tue, 19 May 2020 14:44:43 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 97EE61C05EE for <quic-issues@ietf.org>; Tue, 19 May 2020 14:44:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589924682; bh=no2U84hFsAlTrenL7FIqtOKOfhr3Ybiaqcp5HYERJjo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hHahoqb/oxUcqo/YU/KLW2X2iJZ3E8L9byqKJg0dkCWWnpDjU24HBaRL7sV+oWdtQ 8QAwrNm7onL8EuSmMRqS7f/bs+Z/aIPgkobC38aPSOkYUxnIvdiYmA3nza9IfSaIKV yGIt5R0Ngg3RnU1WupBy4WDfFVISNak2OzsEJDXc=
Date: Tue, 19 May 2020 14:44:42 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6YBTRAMY4JO4YUI5542A2EVEVBNHHCJ7QHRQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3668/review/414845738@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3668@github.com>
References: <quicwg/base-drafts/pull/3668@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for -28 (#3668)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec4534a897fd_330d3fca6accd96c183360"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CnFaZetaebTZqaudnaeRrzQCPLc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 21:44:45 -0000

----==_mimepart_5ec4534a897fd_330d3fca6accd96c183360
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414845738
----==_mimepart_5ec4534a897fd_330d3fca6accd96c183360
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414845738">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYVTUNAUSBKYV7WUWDRSL4UVANCNFSM4NES47EA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZEYWVWSUOST44S2WDRSL4UVA5CNFSM4NES47EKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC5AWKQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414845738",
"url": "https://github.com/quicwg/base-drafts/pull/3668#pullrequestreview-414845738",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec4534a897fd_330d3fca6accd96c183360--


From nobody Tue May 19 14:45:02 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 AB4FB3A1162 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:45:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 arrE2Z3W5YG5 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 14:44:59 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B4EC93A115A for <quic-issues@ietf.org>; Tue, 19 May 2020 14:44:59 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 84C9E120385 for <quic-issues@ietf.org>; Tue, 19 May 2020 14:44:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589924698; bh=j6r8Xs0FJLQVxQLY3lus4kZHoMUoMWgufat6xRDOav8=; h=Date:From:To:Subject:From; b=ua5Uc9jJGmNcYbZ3Bsr9x/XxgsPFCdJXLjaER0S/oURA46v7Y3/R3Bnyd7OJg4JHc fhVbDfmLFXIsufOCi1PJLuKQSp+hpr7pRWw8nLVBq5Rr7PLEBStIPrPzVKicYu+HRD dyhaI6FCsdz8nRS4XcqqsClU2ptwjMkekUu8Udgo=
Date: Tue, 19 May 2020 14:44:58 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/88c4c0-aa72cd@github.com>
Subject: [quicwg/base-drafts] aa72cd: Script updating gh-pages from c05a1145. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qFzcG23J2bBldem-obXKgzqoF5I>
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: Tue, 19 May 2020 21:45:01 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: aa72cd8639d2a09f87628f75cf19cd413494ed39
      https://github.com/quicwg/base-drafts/commit/aa72cd8639d2a09f87628f75cf19cd413494ed39
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M changelog-28/draft-ietf-quic-http.html
    M changelog-28/draft-ietf-quic-http.txt
    M changelog-28/draft-ietf-quic-invariants.html
    M changelog-28/draft-ietf-quic-invariants.txt
    M changelog-28/draft-ietf-quic-qpack.html
    M changelog-28/draft-ietf-quic-qpack.txt
    M changelog-28/draft-ietf-quic-recovery.html
    M changelog-28/draft-ietf-quic-recovery.txt
    M changelog-28/draft-ietf-quic-tls.html
    M changelog-28/draft-ietf-quic-tls.txt
    M changelog-28/draft-ietf-quic-transport.html
    M changelog-28/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c05a1145. [ci skip]



From nobody Tue May 19 15:02:19 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 46BC53A1188 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:02:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 fZMoPFlIDMQK for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:02:13 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4EFFE3A117E for <quic-issues@ietf.org>; Tue, 19 May 2020 15:02:13 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 81EE59621D4 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:02:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589925732; bh=f5zgdyF85eIamATROnAIlFmmzll3POvJ/KimZuFAKro=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RtEha795Ty45hAthRK3EdZagqzEXuNZX8m78KmVw7nuvhHYffJBJSnassQRqqE2nl PvQTkOcdypZbn7WEIN/E3SnjSMgzMcEWiLLVl2l1Wg2nUM9A5+ucbGBeoV6UltHLYZ f2V/xLghEi9FhNvz3zaJgN/hDOvf5JCWP6XmSffc=
Date: Tue, 19 May 2020 15:02:12 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ3KB3Y5DIWPZB72DV42A4GJEVBNHHCJ5PG2I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/review/414855227@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec4576471d66_18683fa372acd9601636b2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/B_0r14FUrxiVCm-glm7W1JTWWos>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 22:02:17 -0000

----==_mimepart_5ec4576471d66_18683fa372acd9601636b2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> +PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement, except when a client receives an acknowledgment
+from a server prior to the server validating the client address. A client
+keeps increasing the PTO backoff until the server's address validation
+completes to ensure the client's PTO timer is not set too aggressively
+when the server is slow in responding with handshake data.

```suggestion
PTO period being set to twice its current value. The PTO backoff factor is reset
when an acknowledgement is received, except in the following case. A server
might take longer to respond to packets during the handshake than otherwise.
To protect such a server from repeated client probes, the PTO backoff is not
reset at a client that is not yet certain that the server has finished validating
the client's address. That is, a client does not reset the PTO backoff factor on
receiving acknowledgements until it receives a HANDSHAKE_DONE frame or
an acknowledgement for one of its Handshake or 1-RTT packets.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview-414855227
----==_mimepart_5ec4576471d66_18683fa372acd9601636b2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3665#discussi=
on_r427626058">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +PTO period being set to twice its current=
 value. The PTO backoff is reset upon=0D
+receiving an acknowledgement, except when a client receives an acknowled=
gment=0D
+from a server prior to the server validating the client address. A clien=
t=0D
+keeps increasing the PTO backoff until the server&#39;s address validati=
on=0D
+completes to ensure the client&#39;s PTO timer is not set too aggressive=
ly=0D
+when the server is slow in responding with handshake data.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-PTO period being set to twice its current val=
ue. The PTO backoff is reset upon=0D
-receiving an acknowledgement, except when a client receives an acknowled=
gment=0D
-from a server prior to the server validating the client address. A clien=
t=0D
-keeps increasing the PTO backoff until the server's address validation=0D=

-completes to ensure the client's PTO timer is not set too aggressively=0D=

-when the server is slow in responding with handshake data.=0D
+PTO period being set to twice its current value. The PTO backoff factor =
is reset=0D
+when an acknowledgement is received, except in the following case. A ser=
ver=0D
+might take longer to respond to packets during the handshake than otherw=
ise.=0D
+To protect such a server from repeated client probes, the PTO backoff is=
 not=0D
+reset at a client that is not yet certain that the server has finished v=
alidating=0D
+the client's address. That is, a client does not reset the PTO backoff f=
actor on=0D
+receiving acknowledgements until it receives a HANDSHAKE_DONE frame or=0D=

+an acknowledgement for one of its Handshake or 1-RTT packets.=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3665#pullrequestreview-414855227">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K5XT553ZRJA6XZO2SLRSL6WJANCNFSM4ND6MHEA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKY2FFOHYED3DZPYLVDRSL6WJA5CNFSM4=
ND6MHEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODC5DAOY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3665#pullrequestrev=
iew-414855227",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3665#pullrequestreview=
-414855227",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec4576471d66_18683fa372acd9601636b2--


From nobody Tue May 19 15:03:46 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 5D1643A118B for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:03:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 jjWAIgj6BHvy for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:03:44 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2F2883A1190 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:03:44 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 204FBA08AC for <quic-issues@ietf.org>; Tue, 19 May 2020 15:03:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589925823; bh=IpcDddvPiFKsCn8oJpDcdIIasV7vJC0aOB5w7GqOXXk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=R4YNomHa3G9VgJJ6+wXsA6uLZdlrpaul1mTnio7TkZHFuiF/XqTjQUZKLOKSWlkq2 bCZoEQIrRXmykHpUnFue6wzNn++wGo3hX2VSswdLpMpbCp5XQmROOUK8W61RtNJq9k Bx+m8ugrK+gozY4VocHAaS0+o/uoCGh7cRLzq7/M=
Date: Tue, 19 May 2020 15:03:43 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5D7IM4EWOM3DOYYGF42A4L7EVBNHHCJTOADM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/review/414856015@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec457bf119b1_76d43fbd70ccd964111439"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NaOu2pcKLioEFPbDC_0UnxlLpEo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 22:03:45 -0000

----==_mimepart_5ec457bf119b1_76d43fbd70ccd964111439
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> @@ -1142,6 +1142,22 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Datagram
+
+When a server is blocked by anti-amplification limits, receiving
+a datagram unblocks it, even if none of the packets in the
+datagram are successfully processed. In such a case, the PTO
+timer may need to be armed.

When would it not be armed?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-414856015
----==_mimepart_5ec457bf119b1_76d43fbd70ccd964111439
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3653#discussion_r427626695">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1142,6 +1142,22 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Datagram
+
+When a server is blocked by anti-amplification limits, receiving
+a datagram unblocks it, even if none of the packets in the
+datagram are successfully processed. In such a case, the PTO
+timer may need to be armed.
</pre>
<p>When would it not be armed?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-414856015">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4MXAB56FXTLGCTLWTRSL637ANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6R4SLPWLUK7MAJR23RSL637A5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC5DGTY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-414856015",
"url": "https://github.com/quicwg/base-drafts/pull/3653#pullrequestreview-414856015",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec457bf119b1_76d43fbd70ccd964111439--


From nobody Tue May 19 15:05:53 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 6C9203A118B for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:05:52 -0700 (PDT)
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 kxYqsWg1jAb5 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:05:51 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2A4783A117D for <quic-issues@ietf.org>; Tue, 19 May 2020 15:05:51 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 4C7E76A19C7 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:05:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589925950; bh=2YerWkKdJ4hou7Tb1Gv/Rru5MgFLYiQ7ZY9YsBE/Gto=; h=Date:From:To:Subject:From; b=mpC0oXYcLMdKZT2ieR4vNvYGjSMpsMOLSNKTZNg6oRa4VrYC8gSc1rd/VWXWsW0+F fORY4Ps0VBGQ92IL672hBFAdvymwLf4EzT68xNdaONRVqsm6HKtaIXccygZQ6PZhMs 0JVidSojkqsiCV1KygUc9VSAcYMH06JACgJXuc5Y=
Date: Tue, 19 May 2020 15:05:50 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-pseudocode/a2cbae-4398ec@github.com>
Subject: [quicwg/base-drafts] 01df49: Fix lint
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CgvdftfUV67td-7AOmVJXyGueiE>
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: Tue, 19 May 2020 22:05:52 -0000

  Branch: refs/heads/qpack-pseudocode
  Home:   https://github.com/quicwg/base-drafts
  Commit: 01df492f9e4f47e65e94ae00a14aa0f42d7832f6
      https://github.com/quicwg/base-drafts/commit/01df492f9e4f47e65e94ae00a14aa0f42d7832f6
  Author: Alan Frindell <afrind@fb.com>
  Date:   2020-04-14 (Tue, 14 Apr 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  Fix lint


  Commit: 4398ec6f2d91b08dfce60af512c325a872a0f1b0
      https://github.com/quicwg/base-drafts/commit/4398ec6f2d91b08dfce60af512c325a872a0f1b0
  Author: Alan Frindell <afrind@fb.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  Martin's feedback


Compare: https://github.com/quicwg/base-drafts/compare/a2cbaea607d6...4398ec6f2d91


From nobody Tue May 19 15:06:05 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 563093A1193 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:06:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 fZ3vx6bBrm4S for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:06:02 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1632D3A1192 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:06:01 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 889D65203AA for <quic-issues@ietf.org>; Tue, 19 May 2020 15:05:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589925959; bh=CWXKDhDUr5i86/hBFlGkls2mbvUP+RUWvKK1MCGnRXY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=v+LNGTdIp80w0CEejkQe+HzaTQTb+kF54XiSDhGh18KUs++bf+LDwY8lITFhuzNjc yC9xUDzTDzr94Dyop90ISNXjHZzy95lNvQOFYMjnZ37SUF5m0kQ9e3s+4hmuTf1sSX IGxVDKV/ya0sNQMVxWR1mv+tTw/pg3ej1ee4S1fM=
Date: Tue, 19 May 2020 15:05:59 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3577/push/5098883631@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3577@github.com>
References: <quicwg/base-drafts/pull/3577@github.com>
Subject: Re: [quicwg/base-drafts] [qpack] Overhaul the pseudocode (#3577)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec458477979b_65953fbf394cd9601568c8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7o57nWJHOA6FSrNTOFtPBq_lvLI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 22:06:03 -0000

----==_mimepart_5ec458477979b_65953fbf394cd9601568c8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@afrind pushed 2 commits.

01df492f9e4f47e65e94ae00a14aa0f42d7832f6  Fix lint
4398ec6f2d91b08dfce60af512c325a872a0f1b0  Martin's feedback


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3577/files/a2cbaea607d628cc621f95779a0254c371d7ef50..4398ec6f2d91b08dfce60af512c325a872a0f1b0

----==_mimepart_5ec458477979b_65953fbf394cd9601568c8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/afrind" class="user-mention">@afrind</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/01df492f9e4f47e65e94ae00a14aa0f42d7832f6">01df492</a>  Fix lint</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/4398ec6f2d91b08dfce60af512c325a872a0f1b0">4398ec6</a>  Martin&#39;s feedback</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3577/files/a2cbaea607d628cc621f95779a0254c371d7ef50..4398ec6f2d91b08dfce60af512c325a872a0f1b0">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2PKXWU6D4IPP7M7GDRSL7EPANCNFSM4MHJICCQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYLW66YNMGWS6PBTD3RSL7EPA5CNFSM4MHJICC2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYDEOBYGA4DEN2QOVZWQIZVGA4TQOBYGM3DGMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3577/files/a2cbaea607d628cc621f95779a0254c371d7ef50..4398ec6f2d91b08dfce60af512c325a872a0f1b0",
"url": "https://github.com/quicwg/base-drafts/pull/3577/files/a2cbaea607d628cc621f95779a0254c371d7ef50..4398ec6f2d91b08dfce60af512c325a872a0f1b0",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec458477979b_65953fbf394cd9601568c8--


From nobody Tue May 19 15:06:49 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 E389F3A1192 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:06:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 cUtujqFRVl6J for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:06:45 -0700 (PDT)
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 9ACB13A117D for <quic-issues@ietf.org>; Tue, 19 May 2020 15:06:45 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 257CA282BFF for <quic-issues@ietf.org>; Tue, 19 May 2020 15:06:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589926004; bh=rz6WbJKHnGF7aWDlWRicGjTckZp+2V/0TtcQ9NaHN5E=; h=Date:From:To:Subject:From; b=fq4C4N4vrwEp+y7Jk/FzuY6tp55RE18guRrh/YEMiukdGGq2KaoZDWKk24AqOLjBH kdkJep6MmAxIAyZJ0eCv5ihn3Earm+pLG9MLrCBe4/wKV5XwS3z7BOBBZbu62UtJBr Qcr1YIdcM4wiGpb5P7VcGCRr4qVP+rWOjH4iJa1w=
Date: Tue, 19 May 2020 15:06:44 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/aa72cd-f47c52@github.com>
Subject: [quicwg/base-drafts] f47c52: Script updating gh-pages from 4398ec6f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UC9NC9QjFFt1D5yJzOH8UT-XPmg>
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: Tue, 19 May 2020 22:06:47 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f47c527cf9f317a12f1b6f18f87a81cab47c46b8
      https://github.com/quicwg/base-drafts/commit/f47c527cf9f317a12f1b6f18f87a81cab47c46b8
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    R ianswett-initial-pto/draft-ietf-quic-http.html
    R ianswett-initial-pto/draft-ietf-quic-http.txt
    R ianswett-initial-pto/draft-ietf-quic-invariants.html
    R ianswett-initial-pto/draft-ietf-quic-invariants.txt
    R ianswett-initial-pto/draft-ietf-quic-qpack.html
    R ianswett-initial-pto/draft-ietf-quic-qpack.txt
    R ianswett-initial-pto/draft-ietf-quic-recovery.html
    R ianswett-initial-pto/draft-ietf-quic-recovery.txt
    R ianswett-initial-pto/draft-ietf-quic-tls.html
    R ianswett-initial-pto/draft-ietf-quic-tls.txt
    R ianswett-initial-pto/draft-ietf-quic-transport.html
    R ianswett-initial-pto/draft-ietf-quic-transport.txt
    R ianswett-initial-pto/index.html
    M index.html
    A qpack-pseudocode/draft-ietf-quic-http.html
    A qpack-pseudocode/draft-ietf-quic-http.txt
    A qpack-pseudocode/draft-ietf-quic-invariants.html
    A qpack-pseudocode/draft-ietf-quic-invariants.txt
    A qpack-pseudocode/draft-ietf-quic-qpack.html
    A qpack-pseudocode/draft-ietf-quic-qpack.txt
    A qpack-pseudocode/draft-ietf-quic-recovery.html
    A qpack-pseudocode/draft-ietf-quic-recovery.txt
    A qpack-pseudocode/draft-ietf-quic-tls.html
    A qpack-pseudocode/draft-ietf-quic-tls.txt
    A qpack-pseudocode/draft-ietf-quic-transport.html
    A qpack-pseudocode/draft-ietf-quic-transport.txt
    A qpack-pseudocode/index.html

  Log Message:
  -----------
  Script updating gh-pages from 4398ec6f. [ci skip]



From nobody Tue May 19 15:19:24 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 6323C3A11A1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:19:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 freR_ij3TE5F for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:19:09 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EF6D23A119D for <quic-issues@ietf.org>; Tue, 19 May 2020 15:19:08 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 18FA08C00A4 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:19:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589926748; bh=vuxnt0BSm9B8ol7ElgANzyJ4IpkRj/3RSFXIthXX9YI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OiI758D4arObWidgCZXmENVNsrsdhzzxJdoVZn7gIvP06XIX6Rj229X5Sl25Etsao aRh9lsswd+GKtbgO1be70xmDZq2vWa84nPuL9p7TuyNZpqRsf7fgLTxfOo3MGUmpLi swDgdhT+EcXAF03BkiGzQhX9khDpco5h0+YK8LoQ=
Date: Tue, 19 May 2020 15:19:08 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4HUEDUKIVDSZ2WXZN42A6FZEVBNHHCJTOADM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/review/414863471@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec45b5c753e_4ae43fbcdfccd96471973"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/F0Qi2eKTuEv3YWT4Bru0CO4Fx6Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 22:19:13 -0000

----==_mimepart_5ec45b5c753e_4ae43fbcdfccd96471973
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> @@ -1142,6 +1142,22 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Datagram
+
+When a server is blocked by anti-amplification limits, receiving
+a datagram unblocks it, even if none of the packets in the
+datagram are successfully processed. In such a case, the PTO
+timer may need to be armed.

I thought a padded ACK-only packet could hit the limit without bytes in flight, but I realize that each full-sized ACK allows 3 packets to be sent.  Updating text.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653#discussion_r427632916
----==_mimepart_5ec45b5c753e_4ae43fbcdfccd96471973
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3653#discussion_r427632916">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; @@ -1142,6 +1142,22 @@ Pseudocode for OnPacketSent follows:
      SetLossDetectionTimer()
 ~~~
 
+## On Receiving a Datagram
+
+When a server is blocked by anti-amplification limits, receiving
+a datagram unblocks it, even if none of the packets in the
+datagram are successfully processed. In such a case, the PTO
+timer may need to be armed.
</pre>
<p>I thought a padded ACK-only packet could hit the limit without bytes in flight, but I realize that each full-sized ACK allows 3 packets to be sent.  Updating text.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3653#discussion_r427632916">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6EYCU457I4FP7GFVLRSMAVZANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6ELT3WQTR3NXP2ZG3RSMAVZA5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC5FA3Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653#discussion_r427632916",
"url": "https://github.com/quicwg/base-drafts/pull/3653#discussion_r427632916",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec45b5c753e_4ae43fbcdfccd96471973--


From nobody Tue May 19 15:20:00 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 AF7E23A11A1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:19:57 -0700 (PDT)
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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 y-yh7ObG5UtI for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:19:56 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6FB4D3A119D for <quic-issues@ietf.org>; Tue, 19 May 2020 15:19:56 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 9818E8C03AA for <quic-issues@ietf.org>; Tue, 19 May 2020 15:19:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589926795; bh=rSaUemLEx+X/7j3PqHsBdGExVydCWX2MteABB7IUUTM=; h=Date:From:To:Subject:From; b=JdoPqpkuCTbQyl4di3obJ6ouLXwAxBzvQrYZ22D1/CeZku9E3oVlT91YNNUqkXiCd N+YNPlYySATRKhxjxqMyBrl05R2kOMY8eTKRehm3qxO8f1j5KNJ7dEcRUB05Z7JGbN VyvJDzIyLkjjOvSt3JLqEFLFRTXWo5ZenjpTlxjc=
Date: Tue, 19 May 2020 15:19:55 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-onpacketreceived/04e787-49ddf7@github.com>
Subject: [quicwg/base-drafts] 49ddf7: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bU1jDPvSLmlTTiD1ZuXrr3xDub0>
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: Tue, 19 May 2020 22:19:58 -0000

  Branch: refs/heads/ianswett-onpacketreceived
  Home:   https://github.com/quicwg/base-drafts
  Commit: 49ddf7fba915e7aabc815239718a83a720363e28
      https://github.com/quicwg/base-drafts/commit/49ddf7fba915e7aabc815239718a83a720363e28
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Tue May 19 15:20:08 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 51F3B3A11A1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:20:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.553
X-Spam-Level: 
X-Spam-Status: No, score=-1.553 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 cxNv-E96UmPU for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:20:06 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 243FC3A119D for <quic-issues@ietf.org>; Tue, 19 May 2020 15:20:06 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 7BBE06A0835 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:20:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589926804; bh=X1Od/Ltjmb9qsgwIgwF6pFBQLcOTwkeumBAf+FV4Yp4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lZ+E34dwsj38p/R2827vsJAbPMJlqhAstuJUZAYyQqvDUV2IU2lSzfnX+mzua03zF J8WWkEUxGYkIvUFN8mkrdW/fd6Lc23RJEWG1c10AvWD/PJAEC/wsMSvcxIgeBL6tuQ v1NQ6g1JZPLzLXLCTOvjkY1tmK6X95gRrJl7Fk6U=
Date: Tue, 19 May 2020 15:20:04 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/push/5098936231@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec45b946cb65_df73fee342cd9606875a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/S2jcY9Cb-a4fouObH3T11qOPtb8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 22:20:07 -0000

----==_mimepart_5ec45b946cb65_df73fee342cd9606875a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

49ddf7fba915e7aabc815239718a83a720363e28  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653/files/04e787fb731e380aaa79dc236064cfb294449dcc..49ddf7fba915e7aabc815239718a83a720363e28

----==_mimepart_5ec45b946cb65_df73fee342cd9606875a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/49ddf7fba915e7aabc815239718a83a720363e28">49ddf7f</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3653/files/04e787fb731e380aaa79dc236064cfb294449dcc..49ddf7fba915e7aabc815239718a83a720363e28">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7V2XFW47KAWUX2V2LRSMAZJANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYYA36U2CXRYEIPNZTRSMAZJA5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTOMZXGQ3DEMSQOVZWQIZVGA4TQOJTGYZDGMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653/files/04e787fb731e380aaa79dc236064cfb294449dcc..49ddf7fba915e7aabc815239718a83a720363e28",
"url": "https://github.com/quicwg/base-drafts/pull/3653/files/04e787fb731e380aaa79dc236064cfb294449dcc..49ddf7fba915e7aabc815239718a83a720363e28",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec45b946cb65_df73fee342cd9606875a--


From nobody Tue May 19 15:20:51 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 B76F23A11A1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:20:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Fwuv50wnVrOD for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:20:47 -0700 (PDT)
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 408BD3A119D for <quic-issues@ietf.org>; Tue, 19 May 2020 15:20:46 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 77939282CAE for <quic-issues@ietf.org>; Tue, 19 May 2020 15:20:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589926845; bh=EoKiiI9rQs3VZQKRf0sHPEyEQaP+4Wll7je2C5YmsrU=; h=Date:From:To:Subject:From; b=zn7NkkQZQTCsR4xIKmOSF3Ql6gfwAFhoacWRAxvJ1g3qzNlD44HYDfRPA/fukvb+V JZGQCA5Z6q9Cg+FcBpps4vaNoeXMEbLDwNR1NLGfjWpCQlzpjD9xBZGo5fFwb4Lo1T GObMjacGYbPV2y+lwPmzpzcN6zN1sFR3VVdyh1yY=
Date: Tue, 19 May 2020 15:20:45 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f47c52-be01b4@github.com>
Subject: [quicwg/base-drafts] be01b4: Script updating gh-pages from 49ddf7fb. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0XeAKl9NOYLEhdDNBlESubPWOJQ>
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: Tue, 19 May 2020 22:20:49 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: be01b4e7b4c79a7a531bc94dfc9ee628dd6279d6
      https://github.com/quicwg/base-drafts/commit/be01b4e7b4c79a7a531bc94dfc9ee628dd6279d6
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.html
    M ianswett-onpacketreceived/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 49ddf7fb. [ci skip]



From nobody Tue May 19 15:28:26 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 533F33A11B9 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:28:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 v3kMv_SZcBdT for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:28:23 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E3EAC3A11BF for <quic-issues@ietf.org>; Tue, 19 May 2020 15:28:22 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 83E7C1204D6 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:28:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589927302; bh=a6Y+BLCzD3RJiqLi6OD2pFcpHfPPwzcrGVNhX7F7MbE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eCpcW6+yIGvxXbj/tzeEZmc25usfmML0OEoBQFF4rqC5ozqUqSGBulUfpocK7Lh1B XRfWuPBBoF8WG2a5OhYus1M797pb2seNTXSUlO7EC5pMWDBxuefJ3LVUXNUk/EWhja mC9DWsGSwwil3SiTXXX8KPB9SDPyfdeP24z71X04=
Date: Tue, 19 May 2020 15:28:22 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5VHM2DH76R2C7GT3N42A7INEVBNHHCJ5PG2I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/review/414867536@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec45d863eebd_78053fa175ccd96c713c9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SMvlCqV3a4DbnJqA_k3aMvLpQ50>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 22:28:24 -0000

----==_mimepart_5ec45d863eebd_78053fa175ccd96c713c9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement, except when a client receives an acknowledgment
+from a server prior to the server validating the client address. A client
+keeps increasing the PTO backoff until the server's address validation
+completes to ensure the client's PTO timer is not set too aggressively
+when the server is slow in responding with handshake data.

use "handshake confirmed" for the last piece.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665#discussion_r427636314
----==_mimepart_5ec45d863eebd_78053fa175ccd96c713c9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3665#discussion_r427636314">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; +PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement, except when a client receives an acknowledgment
+from a server prior to the server validating the client address. A client
+keeps increasing the PTO backoff until the server&#39;s address validation
+completes to ensure the client&#39;s PTO timer is not set too aggressively
+when the server is slow in responding with handshake data.
</pre>
<p>use "handshake confirmed" for the last piece.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3665#discussion_r427636314">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY6ELY3NF3DDSXNV2TRSMBYNANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5BK2OMP3ALDXWHQUTRSMBYNA5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC5GAUA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665#discussion_r427636314",
"url": "https://github.com/quicwg/base-drafts/pull/3665#discussion_r427636314",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec45d863eebd_78053fa175ccd96c713c9--


From nobody Tue May 19 15:30:40 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 D7CCE3A11BF for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:30:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 eEh6rmfqcImu for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:30:36 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A2E9A3A11BC for <quic-issues@ietf.org>; Tue, 19 May 2020 15:30:36 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 51D121204D1 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:30:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589927436; bh=gPM53BcpuL1hqf8Ceusn6+HFaPTOP3WzTsjFA4fO7cI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IWrS51wEI9w6TtWsXe6ktAQn4bujwbQxhqMQspdCXuU1ajpJw4wz5HmV1W5lAccXf 1GTNhp9N7Is70HgHoacAvLO9hxwpUFYmTnCu8k/UyNlYngoKl96Qyao7khWHndogeb w7IrZCGHUWqSXCZanwHIA5TznibR79AZMRGFisdU=
Date: Tue, 19 May 2020 15:30:36 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7ALDZSXUV4JYYSMB542A7QZEVBNHHCJ5PG2I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/review/414868507@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec45e0cc9ea_111d3f7eb5acd9601767f1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lLVk_80XBR6z8KpWP6VCy1i95UQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 22:30:38 -0000

----==_mimepart_5ec45e0cc9ea_111d3f7eb5acd9601767f1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> +PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement, except when a client receives an acknowledgment
+from a server prior to the server validating the client address. A client
+keeps increasing the PTO backoff until the server's address validation
+completes to ensure the client's PTO timer is not set too aggressively
+when the server is slow in responding with handshake data.

An ACK of a Handshake packet isn't handshake confirmed, unfortunately.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665#discussion_r427637132
----==_mimepart_5ec45e0cc9ea_111d3f7eb5acd9601767f1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3665#discussion_r427637132">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; +PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement, except when a client receives an acknowledgment
+from a server prior to the server validating the client address. A client
+keeps increasing the PTO backoff until the server&#39;s address validation
+completes to ensure the client&#39;s PTO timer is not set too aggressively
+when the server is slow in responding with handshake data.
</pre>
<p>An ACK of a Handshake packet isn't handshake confirmed, unfortunately.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3665#discussion_r427637132">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2O3HJM7IZQP2E24LLRSMCAZANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7U2DVOGMVTMDO67A3RSMCAZA5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC5GIGY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665#discussion_r427637132",
"url": "https://github.com/quicwg/base-drafts/pull/3665#discussion_r427637132",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec45e0cc9ea_111d3f7eb5acd9601767f1--


From nobody Tue May 19 15:33:24 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 17E6D3A11C7 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:33:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 7rXWtc4B1wwz for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:33:20 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 79D183A11BF for <quic-issues@ietf.org>; Tue, 19 May 2020 15:33:20 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 525A0520075 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:33:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589927599; bh=uj1DPFIsxjZF6WTYnxcJ4b6EtS7Ag2x1ySticZUWw0g=; h=Date:From:To:Subject:From; b=tYUepj1o7d6R9Jd9x2Imm84vRY0ur2Ovfd6buFGst3o1tPDSEO2m3WmxOlYP+TysI +mIKQDEzwpADJpzLWbtIv/bjv3tjE9xpR5Kff53RaGbQRJtLYKInyq3xCWHtZqtTYd 3T+mk7wys7EWJYPeXwWc98plOpUFhdO7fjNjaSSg=
Date: Tue, 19 May 2020 15:33:19 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/54fcd2-ff55a1@github.com>
Subject: [quicwg/base-drafts] 444401: Add OnPacketReceived to pseudocode
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DB6Jg_ngOSYVJeX1Fa3ECGhl77A>
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: Tue, 19 May 2020 22:33:22 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4444017fe3f1f1eb1baf0b00e545b8913be94c7c
      https://github.com/quicwg/base-drafts/commit/4444017fe3f1f1eb1baf0b00e545b8913be94c7c
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Add OnPacketReceived to pseudocode

Pseudocode for re-arming the PTO when "If no additional data can be sent, the server's PTO timer MUST NOT be armed until datagrams have been received from the client, because packets sent on PTO count against the anti-amplification limit. "


  Commit: 2a479f634819f531129ab49ae871f23ed9e13940
      https://github.com/quicwg/base-drafts/commit/2a479f634819f531129ab49ae871f23ed9e13940
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 75aeb2ffb9deaa7bb33ad35b7a6960388f39844a
      https://github.com/quicwg/base-drafts/commit/75aeb2ffb9deaa7bb33ad35b7a6960388f39844a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-16 (Sat, 16 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update based on comments


  Commit: 54a7e018d34939d9bb42a9ea657f75415c10d907
      https://github.com/quicwg/base-drafts/commit/54a7e018d34939d9bb42a9ea657f75415c10d907
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-17 (Sun, 17 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: 3bdc0ed6e05a308ee501baf6bcbad206e9231f03
      https://github.com/quicwg/base-drafts/commit/3bdc0ed6e05a308ee501baf6bcbad206e9231f03
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-17 (Sun, 17 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: 9be18130577abf419d42efe0d3dae6f04184c00e
      https://github.com/quicwg/base-drafts/commit/9be18130577abf419d42efe0d3dae6f04184c00e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-17 (Sun, 17 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Remove ref to a section which does not exist.


  Commit: ee306ab8f36e504f8571cb269198eeaf0abf78f9
      https://github.com/quicwg/base-drafts/commit/ee306ab8f36e504f8571cb269198eeaf0abf78f9
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 04e787fb731e380aaa79dc236064cfb294449dcc
      https://github.com/quicwg/base-drafts/commit/04e787fb731e380aaa79dc236064cfb294449dcc
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 49ddf7fba915e7aabc815239718a83a720363e28
      https://github.com/quicwg/base-drafts/commit/49ddf7fba915e7aabc815239718a83a720363e28
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: ff55a162469dfc8e78c2bfb3471091e93a15ece9
      https://github.com/quicwg/base-drafts/commit/ff55a162469dfc8e78c2bfb3471091e93a15ece9
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3653 from quicwg/ianswett-onpacketreceived

Add OnPacketReceived to pseudocode


Compare: https://github.com/quicwg/base-drafts/compare/54fcd27ee757...ff55a162469d


From nobody Tue May 19 15:33:41 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 E979A3A11C5 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:33:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 DVzWAIsRSg2M for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:33:21 -0700 (PDT)
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B92083A11C3 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:33:20 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 6ACF62612B1 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:33:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589927600; bh=GozNmDs3Q/RxNr8jGLD2TZNYIlkPgvLHXkZPztpfYnA=; h=Date:From:To:Subject:From; b=TyOK31ESiiVdNicAdFns69iPDQhWjQ62BmfHo6B/F/O1LDBBajwZbVoNwcfoPknaY egraJpcHR670cRfhT6fvJZaLXOUt6Ldk6UbSTRKfLMBOKhe/Nlyu/8DsoYFIRIlcbo aUzEYZuXKetklf7aTtZq/OIt0KLHkjpVVrPNKkXs=
Date: Tue, 19 May 2020 15:33:20 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-onpacketreceived/49ddf7-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GK8a-4qMv1KA0WjJUwrSjxp74_U>
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: Tue, 19 May 2020 22:33:24 -0000

  Branch: refs/heads/ianswett-onpacketreceived
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 19 15:33:45 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 315EB3A11C7 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:33:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 9wOU8tBNgDFt for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:33:29 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 14BE63A11BF for <quic-issues@ietf.org>; Tue, 19 May 2020 15:33:29 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id DF216960415 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:33:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589927607; bh=o5IcqcM4zBoEoqiiDrSaGhq95lezsYrq3rpKi+KgfQ0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CQrHB7dDpkpGDF5XoLLelUXU+2ICY7gqeG082cXMYPL/dRZUhna/TqLs+yAEav6v+ BxSgTrhADd9ESmiC/EnREIWDdPjHEEHr8MZT54feIOXriCUm66lPGCrwjpQYFVhnFI 6HWqLMKaTL5I5Yms3f4Nwl2Pr/b8CTV5TrAl/0WA=
Date: Tue, 19 May 2020 15:33:27 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2KSQD7Q4ML3SYNSUV42A73PEVBNHHCJKJEKY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3639/issue_event/3353963601@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3639@github.com>
References: <quicwg/base-drafts/issues/3639@github.com>
Subject: Re: [quicwg/base-drafts] Server's first flight should be capped by INITCWND (#3639)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec45eb7cf6f3_3a713fdc4dacd96095365"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Nf228DwZAo1la5uKNsIcr61d_Ts>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 22:33:31 -0000

----==_mimepart_5ec45eb7cf6f3_3a713fdc4dacd96095365
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3639 via #3653.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3639#event-3353963601
----==_mimepart_5ec45eb7cf6f3_3a713fdc4dacd96095365
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="615064662" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3639" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3639/hovercard" href="https://github.com/quicwg/base-drafts/issues/3639">#3639</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="617463835" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3653" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3653/hovercard" href="https://github.com/quicwg/base-drafts/pull/3653">#3653</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3639#event-3353963601">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2XGA7M756OGGYQSYLRSMCLPANCNFSM4M4SWIFQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2BZ2BRK2MKYER4CXTRSMCLPA5CNFSM4M4SWIF2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY7UWYUI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3639#event-3353963601",
"url": "https://github.com/quicwg/base-drafts/issues/3639#event-3353963601",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec45eb7cf6f3_3a713fdc4dacd96095365--


From nobody Tue May 19 15:33:47 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 E5BE93A11BF for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:33:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 JAEzb8Le8e93 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:33:29 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 67A613A11C5 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:33:29 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 9E5A36A0A92 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:33:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589927608; bh=SlLJNpEh8wljIg3XyBE/T+zzlgtJkPaRyvjliyx6hJA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=C8pDUK8BgyftgERRfnkSU6NskPTbX08OOmuDWclTqR5PTuJ0BcFh9PXjmRsqxqi7r UMshHiPuU0B4fYEPXMAt7B09kHu3Rsr+RXbLzlNx5Kkz885xtz5w1+eQUxNTRM8Q04 0v6MJrFAM19NOUjp1Deq8HJEtT4xue4YG7mH7+R0=
Date: Tue, 19 May 2020 15:33:28 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK67JNCLCFZ4NXUFRUN42A73REVBNHHCJTOADM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3653/issue_event/3353963595@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3653@github.com>
References: <quicwg/base-drafts/pull/3653@github.com>
Subject: Re: [quicwg/base-drafts] Add OnPacketReceived to pseudocode (#3653)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec45eb88ecb2_c233fcc988cd968161951"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2symeCsPRi_XR7uaqzQGmHNwyvM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 22:33:32 -0000

----==_mimepart_5ec45eb88ecb2_c233fcc988cd968161951
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3653 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3653#event-3353963595
----==_mimepart_5ec45eb88ecb2_c233fcc988cd968161951
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="617463835" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3653" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3653/hovercard" href="https://github.com/quicwg/base-drafts/pull/3653">#3653</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3653#event-3353963595">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7XPNMYK7C252OLUOTRSMCLRANCNFSM4M7YPO6Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6EPZXEVUCDU2272VDRSMCLRA5CNFSM4M7YPO62YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY7UWYSY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3653#event-3353963595",
"url": "https://github.com/quicwg/base-drafts/pull/3653#event-3353963595",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec45eb88ecb2_c233fcc988cd968161951--


From nobody Tue May 19 15:35:03 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 E7FED3A1220 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:34:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 WW3pvQtL_aIp for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:34:53 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6D3993A1228 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:34:50 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 5175CC6099B for <quic-issues@ietf.org>; Tue, 19 May 2020 15:34:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589927689; bh=PjCZq5tFgRuDww/nEZS9sIC5vnsN3MXx7jhlpxO6J80=; h=Date:From:To:Subject:From; b=KJ9b2thFIU4R2uIAU/8+6Ckx8b/aK31Pa8f1IDEk7jwb5T9l9ub2qB5elFuvkSM6S VAHHPDOOC5MnyQV/VkdgjBOJvi13RrCLdB1f/zX4lHP5M25SbBAmkR9XR6ptuQ2Pj1 6t85/fBr3DjLJQw89W7vFXSmHjDH6/4zoTk7jCCg=
Date: Tue, 19 May 2020 15:34:49 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/be01b4-865854@github.com>
Subject: [quicwg/base-drafts] 865854: Script updating gh-pages from ff55a162. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yevwuDWF9lARKy9r4Q9esSfhjxg>
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: Tue, 19 May 2020 22:35:02 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 865854ff6b2443fb03280ff6329974f9fff7dfae
      https://github.com/quicwg/base-drafts/commit/865854ff6b2443fb03280ff6329974f9fff7dfae
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from ff55a162. [ci skip]



From nobody Tue May 19 15:35:15 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 F30603A120C for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:35:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 Ag-Kx0r4JVhG for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:35:08 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EAD213A124B for <quic-issues@ietf.org>; Tue, 19 May 2020 15:34:59 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 477236A0A9D for <quic-issues@ietf.org>; Tue, 19 May 2020 15:34:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589927699; bh=8YdESCWaAivKGHByBxNeK2zM9PZJ2Vdfo3cfUzR7NBE=; h=Date:From:To:Subject:From; b=ti+BL20hBOWUQTpGM3si/tiUs9jxCpMFJ3gKXQdTjjlC3J8Xgsffol46+evZ9l6yj Xrh74FeMIO9LkrRt1IY2iM4kKIwFzWtp05RetnqvId6Mnx4V2LTm12qxS0Lreaucr4 ZvGEv48mTd4Jg2eOAEYbi6fACRlhSDhTFNsjvCIk=
Date: Tue, 19 May 2020 15:34:59 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/865854-dd9b74@github.com>
Subject: [quicwg/base-drafts] dd9b74: Script updating archive at 2020-05-19T22:34:40Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/r-8xv9BgMjHLM5pVkHFKmXUa6dQ>
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: Tue, 19 May 2020 22:35:13 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: dd9b7468e71d503746c5a097b9ebae872cee5c71
      https://github.com/quicwg/base-drafts/commit/dd9b7468e71d503746c5a097b9ebae872cee5c71
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-19T22:34:40Z. [ci skip]



From nobody Tue May 19 15:37:20 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 B4F743A11C8 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:37:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 tRhS5yZ2aWQ6 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:37:18 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 621613A11C3 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:37:18 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 46FF78C06E8 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:37:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589927837; bh=/vt7aZDpIgtHPxSOBdM+SuDslTEa4SHMSKomxj5uEnA=; h=Date:From:To:Subject:From; b=IbYr66CSVuRQnuOmdE47ri8/LH7/+ajyJF4kY8UPDIQGgwqXHvK8lQgZ0dwwlGGcC msFnRVEaHyTxeKKOX4bonpBptRQr05WPmqMlMe+C7Yl0sKEiak4ZbUKu6EryKjdIhl C/ume58dYndK4azAw1cDDtxgQdSDRUkLi15sBZoY=
Date: Tue, 19 May 2020 15:37:17 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/transport/scope_disable/000000-6ab436@github.com>
Subject: [quicwg/base-drafts] 6ab436: Scope of disable_active_migration
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CgKrPAKDQ2lTxfhTJunrVrxxlgU>
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: Tue, 19 May 2020 22:37:20 -0000

  Branch: refs/heads/transport/scope_disable
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6ab4369e359889e6431b5ef9287f946d346a9a91
      https://github.com/quicwg/base-drafts/commit/6ab4369e359889e6431b5ef9287f946d346a9a91
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Scope of disable_active_migration



From nobody Tue May 19 15:38:24 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 362513A11C9 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:38:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 Hg00HbTontHm for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:38:21 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BF0153A11B5 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:38:21 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 09B8EE0052 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:38:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589927901; bh=NqVie6IB5olxLyzmz8AVxk+Angpb+inYj8+o9QiVlSc=; h=Date:From:To:Subject:From; b=TeUp2jDEu/gc9Yrup38E5r9U1CqbQbTwkGSkM97bOxR7g3NFbGXkl5ihIRvRkM7g8 zMYmpK39m2W+YMRRlz7zmmGEIKtP/qQRU7z9z9AndAVz4JzLRKfyQz2pS02EC1TR6x EmNeX8AalmZ5NU7L5/8duu4JVUhqw1mpodvvRFAE=
Date: Tue, 19 May 2020 15:38:20 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/dd9b74-c9ea9a@github.com>
Subject: [quicwg/base-drafts] c9ea9a: Script updating gh-pages from 6ab4369e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LQ-EpNX19Jfoh-evnm45s1kYb4Q>
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: Tue, 19 May 2020 22:38:23 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c9ea9ab70467502fcda3d8684d08d20f48ca30e1
      https://github.com/quicwg/base-drafts/commit/c9ea9ab70467502fcda3d8684d08d20f48ca30e1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M index.html
    A transport/scope_disable/draft-ietf-quic-http.html
    A transport/scope_disable/draft-ietf-quic-http.txt
    A transport/scope_disable/draft-ietf-quic-invariants.html
    A transport/scope_disable/draft-ietf-quic-invariants.txt
    A transport/scope_disable/draft-ietf-quic-qpack.html
    A transport/scope_disable/draft-ietf-quic-qpack.txt
    A transport/scope_disable/draft-ietf-quic-recovery.html
    A transport/scope_disable/draft-ietf-quic-recovery.txt
    A transport/scope_disable/draft-ietf-quic-tls.html
    A transport/scope_disable/draft-ietf-quic-tls.txt
    A transport/scope_disable/draft-ietf-quic-transport.html
    A transport/scope_disable/draft-ietf-quic-transport.txt
    A transport/scope_disable/index.html

  Log Message:
  -----------
  Script updating gh-pages from 6ab4369e. [ci skip]



From nobody Tue May 19 15:40:51 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 4E7573A0E02 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:40:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 TCoWoHfN-9eS for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:40:48 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A336A3A0E01 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:40:48 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id C62B7C607F0 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:40:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589928047; bh=swNYorTgUfqrqDt91iG8qFoem4OtPrqsqKV6Dfh5rK0=; h=Date:From:To:Subject:From; b=VPbDQAayTrJz1UnUV2xypzWlFT8FvsBj8CuRppKgs7fyEXL/ZpbYOhkfJ4VtQiSfv bOKknKTTRwjtWZCk8JNOp+qgq2HUJh/hREdLE69PqxqxX7k/Tfy4Qw4hxNOWwj1cIi EpMSh1ZfSJ16ygdudkrmPS09E75FL6OKJS3KVDzQ=
Date: Tue, 19 May 2020 15:40:47 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/only-ecn/000000-d95b49@github.com>
Subject: [quicwg/base-drafts] d95b49: ECN probing needs to imply that you stop
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CPKEvNTHLsXKYcbip2qUVBB33vE>
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: Tue, 19 May 2020 22:40:50 -0000

  Branch: refs/heads/only-ecn
  Home:   https://github.com/quicwg/base-drafts
  Commit: d95b49f433108dd49e7f8ad492c6d3d8a4a3d744
      https://github.com/quicwg/base-drafts/commit/d95b49f433108dd49e7f8ad492c6d3d8a4a3d744
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  ECN probing needs to imply that you stop

The current text doesn't really suggest that the probes stop.

Closes #3585.



From nobody Tue May 19 15:41:34 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 263F83A0E02 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:41:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 Qfznqjonyomc for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:41:30 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C51683A0E01 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:41:30 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 4BB151200DE for <quic-issues@ietf.org>; Tue, 19 May 2020 15:41:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589928090; bh=2fD0f0eiERHHS1sTLDUdi+owfLht6pOuv8mSOOE7BX8=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=0JEr81CY4I296wCyfRLLO1zZGrn9i3mkLTBJbwneEplme/gL/REcYbolerjGO0lNd jlualI5/TDrQc7+ZK3nEVmo9K+bqYQFXoB2goy/gcdTKp/pfokhJk8ZCydWpAs6gEp pELcSm5ogz02XjWH47oCgA2jjwKEf5Qn/HR12AaE=
Date: Tue, 19 May 2020 15:41:30 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4KEYNRHRCPETUU4VV42BAZVEVBNHHCKCF42A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3669@github.com>
Subject: [quicwg/base-drafts] ECN probing needs to imply that you stop (#3669)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec4609a6cfa_549f3fb7dc8cd95c103421"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DbPMyixttbwyFiD3COLBkMeHSQA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 22:41:32 -0000

----==_mimepart_5ec4609a6cfa_549f3fb7dc8cd95c103421
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The current text doesn&#39;t really suggest that the probes stop.

Closes #3585.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3669

-- Commit Summary --

  * ECN probing needs to imply that you stop

-- File Changes --

    M draft-ietf-quic-transport.md (6)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3669.patch
https://github.com/quicwg/base-drafts/pull/3669.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3669

----==_mimepart_5ec4609a6cfa_549f3fb7dc8cd95c103421
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The current text doesn't really suggest that the probes stop.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3585.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="601253955" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3585" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3585/hovercard" href="https://github.com/quicwg/base-drafts/issues/3585">#3585</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3669'>https://github.com/quicwg/base-drafts/pull/3669</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>ECN probing needs to imply that you stop</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3669/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (6)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3669.patch'>https://github.com/quicwg/base-drafts/pull/3669.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3669.diff'>https://github.com/quicwg/base-drafts/pull/3669.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3669">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6ESJJRW3YUIX5O343RSMDJVANCNFSM4NFNAW4Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6M6CMJJESLEIW3Z6TRSMDJVA5CNFSM4NFNAW42YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JIIXTIA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3669",
"url": "https://github.com/quicwg/base-drafts/pull/3669",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec4609a6cfa_549f3fb7dc8cd95c103421--


From nobody Tue May 19 15:41:42 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 A5A2D3A0E02 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:41:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 86VXA-Z4Q5XS for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:41:39 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E1B3D3A0E01 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:41:38 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 2282A960588 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:41:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589928098; bh=QElIrFqM/Uvig4hkBZL0+38ImdeE8/0ycBd70RFQRMc=; h=Date:From:To:Subject:From; b=gXma0014DhKuImuPJz9zP8q9aUYItzfPlyfcr8ow29anGKJhnA61eQJsORj1zvWmm wfb9OyV49d3smjk/YgUd2IyB9jAPJ8E9RWDk10FGA6Crn/+E8hrVJFy963cXFv+TLq gx6ksPaoZKcdPeKY18dthdK6Bdo5zLN6+qmjBntQ=
Date: Tue, 19 May 2020 15:41:38 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c9ea9a-ae853b@github.com>
Subject: [quicwg/base-drafts] ae853b: Script updating gh-pages from d95b49f4. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NnR0FHc5FnVyvjjhvf7SNHgUfNU>
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: Tue, 19 May 2020 22:41:41 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ae853b3744271cf3b473b2171463a392f4ff16a7
      https://github.com/quicwg/base-drafts/commit/ae853b3744271cf3b473b2171463a392f4ff16a7
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M index.html
    A only-ecn/draft-ietf-quic-http.html
    A only-ecn/draft-ietf-quic-http.txt
    A only-ecn/draft-ietf-quic-invariants.html
    A only-ecn/draft-ietf-quic-invariants.txt
    A only-ecn/draft-ietf-quic-qpack.html
    A only-ecn/draft-ietf-quic-qpack.txt
    A only-ecn/draft-ietf-quic-recovery.html
    A only-ecn/draft-ietf-quic-recovery.txt
    A only-ecn/draft-ietf-quic-tls.html
    A only-ecn/draft-ietf-quic-tls.txt
    A only-ecn/draft-ietf-quic-transport.html
    A only-ecn/draft-ietf-quic-transport.txt
    A only-ecn/index.html

  Log Message:
  -----------
  Script updating gh-pages from d95b49f4. [ci skip]



From nobody Tue May 19 15:44:00 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 8897D3A0E0C for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:43:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 DLG5okVY9vts for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:43:49 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1B0933A0E02 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:43:48 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 22C708C0065 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:43:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589928228; bh=pwvZcOgwoGcF7fgPh6AMx0aV6PKSE5fhVvFvWZLiSxo=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=nzXctJEAYbSmU5HCer0p1qMlt/20Bfqse50FBvYQaGodxTd9v6Juj2xY3yRRtSx2B rEiLurPlz6t0R7F0Jc47YWZqRC8z+2P4DBnyqjzqzlTxbwqmylk/qGBoCFUyBl1F7S 2vdNHMbzi13B/FKg1aAmaFmDP4n0ns+ceesB68gc=
Date: Tue, 19 May 2020 15:43:48 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZOAK2Z27NBCZS4OTF42BBCJEVBNHHCKCGAH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3670@github.com>
Subject: [quicwg/base-drafts] Scope of disable_active_migration (#3670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec4612412200_4cd13f7fc6acd96c111294"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Y2GYuJW0k3sUWF3MsOAtt7sJTXU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 22:43:51 -0000

----==_mimepart_5ec4612412200_4cd13f7fc6acd96c111294
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Following on @janaiyengar&#39;s insight that disable_active_migration is a property of an address, not a peer, we simply need to say which address the TP applies to.

This PR fixes #3608 by scoping the definition of disable_active_migration to the handshake address only.  This means that existing clients remain fully compliant, albeit slightly more conservative than necessary.

While I find @kazuho&#39;s argument convincing that a server capable of using SPA is highly unlikely to be unable to handle migration, it would be trivial for a future extension to define a second transport parameter carrying two bits that disable active migration for those addresses as well.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3670

-- Commit Summary --

  * Scope of disable_active_migration

-- File Changes --

    M draft-ietf-quic-transport.md (18)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3670.patch
https://github.com/quicwg/base-drafts/pull/3670.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3670

----==_mimepart_5ec4612412200_4cd13f7fc6acd96c111294
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Following on <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/janaiyengar/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/janaiyengar">@janaiyengar</a>'s insight that disable_active_migration is a property of an address, not a peer, we simply need to say which address the TP applies to.</p>
<p>This PR <span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3608.">fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="609163676" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3608" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3608/hovercard" href="https://github.com/quicwg/base-drafts/issues/3608">#3608</a> by scoping the definition of disable_active_migration to the handshake address only.  This means that existing clients remain fully compliant, albeit slightly more conservative than necessary.</p>
<p>While I find <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/kazuho/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a>'s argument convincing that a server capable of using SPA is highly unlikely to be unable to handle migration, it would be trivial for a future extension to define a second transport parameter carrying two bits that disable active migration for those addresses as well.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3670'>https://github.com/quicwg/base-drafts/pull/3670</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Scope of disable_active_migration</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3670/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (18)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3670.patch'>https://github.com/quicwg/base-drafts/pull/3670.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3670.diff'>https://github.com/quicwg/base-drafts/pull/3670.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3670">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5CUN63B7UFYGPNWNLRSMDSJANCNFSM4NFNBZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYFLI23HCWHFMETPRTRSMDSJA5CNFSM4NFNBZ6KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JIIYA7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3670",
"url": "https://github.com/quicwg/base-drafts/pull/3670",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec4612412200_4cd13f7fc6acd96c111294--


From nobody Tue May 19 15:55:05 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 D62893A11D1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:55:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 j6T55xPNXmXe for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 15:55:01 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0B88B3A11D0 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:55:00 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id C1138A11C7 for <quic-issues@ietf.org>; Tue, 19 May 2020 15:54:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589928899; bh=eFxqf1EFMXq+zshg9TmQvSR171AKz5eGLg7/szfwv+U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ohqc21LBW9+TTcN1mLdlgLmi/mFtuScoWx1FF+cR7VPdwZuQ8rSopWCNQlR04MBvC brcR4M1P+MYFmfsL7hhK9IGsdJvbbGzgkTvS41nSTXa7DQEVkfj80bEs96iawWvLPW VXz7qQGnPA7nmC4DDH8qhXJ46msIQ9KTi9M7n12o=
Date: Tue, 19 May 2020 15:54:59 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7PWHKGXTBFJ3SNAUF42BCMHEVBNHHCJ5PG2I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/review/414878718@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec463c3b2374_70dc3fee084cd96c80533"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kE3RsV8Mc1kwCC8uDRUqbi3OYbU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 22:55:04 -0000

----==_mimepart_5ec463c3b2374_70dc3fee084cd96c80533
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement, except when a client receives an acknowledgment
+from a server prior to the server validating the client address. A client
+keeps increasing the PTO backoff until the server's address validation
+completes to ensure the client's PTO timer is not set too aggressively
+when the server is slow in responding with handshake data.

But that's fine.  This doesn't need to more aggressive than confirmation.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665#discussion_r427645460
----==_mimepart_5ec463c3b2374_70dc3fee084cd96c80533
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3665#discussion_r427645460">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt; +PTO period being set to twice its current value. The PTO backoff is reset upon
+receiving an acknowledgement, except when a client receives an acknowledgment
+from a server prior to the server validating the client address. A client
+keeps increasing the PTO backoff until the server&#39;s address validation
+completes to ensure the client&#39;s PTO timer is not set too aggressively
+when the server is slow in responding with handshake data.
</pre>
<p>But that's fine.  This doesn't need to more aggressive than confirmation.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3665#discussion_r427645460">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK22EOLL3TYSRX4MMQ3RSME4HANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2DC6UDLL647KA3CADRSME4HA5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC5IX7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665#discussion_r427645460",
"url": "https://github.com/quicwg/base-drafts/pull/3665#discussion_r427645460",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec463c3b2374_70dc3fee084cd96c80533--


From nobody Tue May 19 16:07:56 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 E471A3A0028 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:07:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 YGj8qG9-8ZL8 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:07:54 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F08AC3A0029 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:07:53 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id DED0552114F for <quic-issues@ietf.org>; Tue, 19 May 2020 16:07:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589929672; bh=BceVLFd3LorzS3YxbU5HGgUnJ412JmT27QWl5eRSNOg=; h=Date:From:To:Subject:From; b=bWkRW6PB9sKfQsxzBLlqeVVwsxgxHShbQVB4SwWqArwlHuJbct8GHfT7uSW2PqeM9 HfujvWxDr7oBCGHJ/l8T8UCYDPVKkky2VIJtjwhWRZn9AAvPXNWQez5XO3hwTvwnI6 MeRKUgIZW1NorcAmJe2nq2AOfKwRdNTmBy80NR9o=
Date: Tue, 19 May 2020 16:07:52 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/changelog-28/c05a11-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/R25NughNN4eOWLVxtwppsZaNQ8Y>
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: Tue, 19 May 2020 23:07:55 -0000

  Branch: refs/heads/changelog-28
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 19 16:08:14 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 B5F063A003D for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:07:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 gTEu5yRRO80a for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:07:53 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 855E83A0028 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:07:53 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id B4DCB2C0081 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:07:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589929672; bh=hYdQKPhg+463EkZ2P7e4XDmd5npMnDMlo4PyllBsDTE=; h=Date:From:To:Subject:From; b=ECUnzoU9qKQCeQywD4AEllKNSOKl1Gbx+AI0hPmtN6X85kBRB9mTpQoIiF/64sDRW CpZDCdaawoblVl6ZCgLTO/14urpmLZNgWgXULXht3vSbKoh79qYTQUDCbkzTPNjm6g Nq1EHuSu8kM4RexDoxOJ6GJYSgyr6i4ZdV1jeMbk=
Date: Tue, 19 May 2020 16:07:52 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/ff55a1-eba43b@github.com>
Subject: [quicwg/base-drafts] e74794: Transport and TLS changelog for -28
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/leyfm7RfUYcgr_tTGF9F6KJXxoo>
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: Tue, 19 May 2020 23:07:55 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: e7479497b8d6aa0de4f310c8ff0e2184a38c570e
      https://github.com/quicwg/base-drafts/commit/e7479497b8d6aa0de4f310c8ff0e2184a38c570e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Transport and TLS changelog for -28


  Commit: fa0d5d929edfc57eafee91a3405c58ff15cce919
      https://github.com/quicwg/base-drafts/commit/fa0d5d929edfc57eafee91a3405c58ff15cce919
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Recovery changelog for -28


  Commit: bc4f3679897a52397118f7dbf009a752f848a3d1
      https://github.com/quicwg/base-drafts/commit/bc4f3679897a52397118f7dbf009a752f848a3d1
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  HTTP and QPACK changelog for -28


  Commit: c05a11457615edb32945369f5b7e4c9ef6031f4c
      https://github.com/quicwg/base-drafts/commit/c05a11457615edb32945369f5b7e4c9ef6031f4c
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md


  Commit: eba43bdf0f8e5240d6d7198cdef6cad6b4a6284b
      https://github.com/quicwg/base-drafts/commit/eba43bdf0f8e5240d6d7198cdef6cad6b4a6284b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-qpack.md
    M draft-ietf-quic-recovery.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3668 from quicwg/changelog-28

Changelog for -28


Compare: https://github.com/quicwg/base-drafts/compare/ff55a162469d...eba43bdf0f8e


From nobody Tue May 19 16:08:18 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 9C1043A0029 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:08:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZmLPMcKfX-ok for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:08:02 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1D3D13A0028 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:08:02 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 6455F96026C for <quic-issues@ietf.org>; Tue, 19 May 2020 16:08:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589929681; bh=KIE0vr47jz7hg4TcLfZhNZHZh070Zp4WDcBJlDrImWc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=w97vkMz2k3SvR69FvLCcKqWpKPGVVlzXKm5zZ+p1eDDNHH0lefmuHNtO7Ii0ZBcOp Bi+UMDlYUOdBcvQnhjAWwvfSuWSTqEz3oKs7ZkwWXkd9KgH2AhiHaW9JMCL5LqZ+0n vQow43akaDO4CUC6fe/XatLM4X5QBG/+WfqX9+8o=
Date: Tue, 19 May 2020 16:08:01 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6YVHZ73PRJG36T5XF42BD5DEVBNHHCJ7QHRQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3668/issue_event/3354041329@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3668@github.com>
References: <quicwg/base-drafts/pull/3668@github.com>
Subject: Re: [quicwg/base-drafts] Changelog for -28 (#3668)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec466d15343b_2a703ff5e06cd96c16246b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yAcS6oy4_sfP1VAj4r3ofZe4lCk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:08:04 -0000

----==_mimepart_5ec466d15343b_2a703ff5e06cd96c16246b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3668 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3668#event-3354041329
----==_mimepart_5ec466d15343b_2a703ff5e06cd96c16246b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="620627852" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3668" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3668/hovercard" href="https://github.com/quicwg/base-drafts/pull/3668">#3668</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3668#event-3354041329">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3GKZBO7U4OENFUUJDRSMGNDANCNFSM4NES47EA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK77CDEBOIZAI72JBRDRSMGNDA5CNFSM4NES47EKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY7VJX4I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3668#event-3354041329",
"url": "https://github.com/quicwg/base-drafts/pull/3668#event-3354041329",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec466d15343b_2a703ff5e06cd96c16246b--


From nobody Tue May 19 16:08:22 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 7E94A3A005B for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:08:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 u2n9SKgWyVpZ for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:08:18 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D732C3A003D for <quic-issues@ietf.org>; Tue, 19 May 2020 16:08:17 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 29C518C0C90 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:08:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589929697; bh=Ab3/zExzoXc9tmw06JM2Otx60qYznD0RT7kpt0tpVuo=; h=Date:From:To:Subject:From; b=ZWP2eFIlFTimzzisDzRAzJZNNh+l3WtxeErrNbYUYi2WyV0WzxPnphtcp6yZzpKrN dqGrxuyINCa8gp4je1gjHyjRA1i1WSRKHtBCrLWsQhnilQgbAbUfGghUIV/D58K+ea JQYn8knpTXiYdFFSPnekmhBa00tkM9F3sQ1YtAeE=
Date: Tue, 19 May 2020 16:08:17 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/example-28/5969c4-2699ce@github.com>
Subject: [quicwg/base-drafts] f00116: A pacing algorithm
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0cJn0LD_ad67Wk_Cq3baYJ8U9RI>
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: Tue, 19 May 2020 23:08:20 -0000

  Branch: refs/heads/example-28
  Home:   https://github.com/quicwg/base-drafts
  Commit: f001162b89055fad7e837b6f2847277ff0f20177
      https://github.com/quicwg/base-drafts/commit/f001162b89055fad7e837b6f2847277ff0f20177
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  A pacing algorithm

This isn't code, because I don't think we need to do any more than point
at the leaky bucket algorithm, but it does provide more concrete advice
than we've had.

It removes the reference to fqdisc as that isn't especially helpful, as
the original issue observes.

Closes #3122.


  Commit: 561df07e9b817460e4006266af1e0acee19c0f8a
      https://github.com/quicwg/base-drafts/commit/561df07e9b817460e4006266af1e0acee19c0f8a
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Forgot to include smoothed_rtt in the description


  Commit: a4b888eab05865e39b40e240bb3abf962f95de9b
      https://github.com/quicwg/base-drafts/commit/a4b888eab05865e39b40e240bb3abf962f95de9b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-01 (Fri, 01 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Reword rationale somewhat


  Commit: b776f4d79e077017b718671b8362650a0b8e62bd
      https://github.com/quicwg/base-drafts/commit/b776f4d79e077017b718671b8362650a0b8e62bd
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Using suggestions to edit


  Commit: 37eaf7e767121467227f3fbade7329a7d7b264f3
      https://github.com/quicwg/base-drafts/commit/37eaf7e767121467227f3fbade7329a7d7b264f3
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Add a blank line


  Commit: 75791409cdeafdfdb429024dc1ced0ed104f8648
      https://github.com/quicwg/base-drafts/commit/75791409cdeafdfdb429024dc1ced0ed104f8648
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Shorter figure line


  Commit: 4444017fe3f1f1eb1baf0b00e545b8913be94c7c
      https://github.com/quicwg/base-drafts/commit/4444017fe3f1f1eb1baf0b00e545b8913be94c7c
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Add OnPacketReceived to pseudocode

Pseudocode for re-arming the PTO when "If no additional data can be sent, the server's PTO timer MUST NOT be armed until datagrams have been received from the client, because packets sent on PTO count against the anti-amplification limit. "


  Commit: 2a479f634819f531129ab49ae871f23ed9e13940
      https://github.com/quicwg/base-drafts/commit/2a479f634819f531129ab49ae871f23ed9e13940
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-13 (Wed, 13 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 7ddcd1d53039f50f8050ec51912c086016407521
      https://github.com/quicwg/base-drafts/commit/7ddcd1d53039f50f8050ec51912c086016407521
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Trying to thread the needle


  Commit: 954f037f641703d7566f024cc41755f24ef6ae2b
      https://github.com/quicwg/base-drafts/commit/954f037f641703d7566f024cc41755f24ef6ae2b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Fix


  Commit: dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550
      https://github.com/quicwg/base-drafts/commit/dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  under-utilization

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 819f4d0d5710830a2e832acac8afa8e38c1439d6
      https://github.com/quicwg/base-drafts/commit/819f4d0d5710830a2e832acac8afa8e38c1439d6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-14 (Thu, 14 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Some editorial rearrangement


  Commit: 75aeb2ffb9deaa7bb33ad35b7a6960388f39844a
      https://github.com/quicwg/base-drafts/commit/75aeb2ffb9deaa7bb33ad35b7a6960388f39844a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-16 (Sat, 16 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update based on comments


  Commit: 42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe
      https://github.com/quicwg/base-drafts/commit/42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Some improvements from Ian

Co-authored-by: ianswett <ianswett@users.noreply.github.com>


  Commit: 54a7e018d34939d9bb42a9ea657f75415c10d907
      https://github.com/quicwg/base-drafts/commit/54a7e018d34939d9bb42a9ea657f75415c10d907
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-17 (Sun, 17 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: 3bdc0ed6e05a308ee501baf6bcbad206e9231f03
      https://github.com/quicwg/base-drafts/commit/3bdc0ed6e05a308ee501baf6bcbad206e9231f03
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-17 (Sun, 17 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: 9be18130577abf419d42efe0d3dae6f04184c00e
      https://github.com/quicwg/base-drafts/commit/9be18130577abf419d42efe0d3dae6f04184c00e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-17 (Sun, 17 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Remove ref to a section which does not exist.


  Commit: b0a1b1c0db25b4971df0078f14fe68bb50b5da9b
      https://github.com/quicwg/base-drafts/commit/b0a1b1c0db25b4971df0078f14fe68bb50b5da9b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  ack-clocking

Co-authored-by: ianswett <ianswett@users.noreply.github.com>


  Commit: a320b5463d042d2cfdf6b20a2278025687670fe6
      https://github.com/quicwg/base-drafts/commit/a320b5463d042d2cfdf6b20a2278025687670fe6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Reword ack-clocking again


  Commit: e7479497b8d6aa0de4f310c8ff0e2184a38c570e
      https://github.com/quicwg/base-drafts/commit/e7479497b8d6aa0de4f310c8ff0e2184a38c570e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Transport and TLS changelog for -28


  Commit: fa0d5d929edfc57eafee91a3405c58ff15cce919
      https://github.com/quicwg/base-drafts/commit/fa0d5d929edfc57eafee91a3405c58ff15cce919
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Recovery changelog for -28


  Commit: bc4f3679897a52397118f7dbf009a752f848a3d1
      https://github.com/quicwg/base-drafts/commit/bc4f3679897a52397118f7dbf009a752f848a3d1
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  HTTP and QPACK changelog for -28


  Commit: d433f6e3bc26b864377fdbf1172be959de70691d
      https://github.com/quicwg/base-drafts/commit/d433f6e3bc26b864377fdbf1172be959de70691d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3630 from quicwg/pacing-dfn

A pacing algorithm


  Commit: 54fcd27ee757e006405acbaeb3f446dfde759a6d
      https://github.com/quicwg/base-drafts/commit/54fcd27ee757e006405acbaeb3f446dfde759a6d
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  Fix verb number and a typo in the QPACK draft


  Commit: ee306ab8f36e504f8571cb269198eeaf0abf78f9
      https://github.com/quicwg/base-drafts/commit/ee306ab8f36e504f8571cb269198eeaf0abf78f9
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 04e787fb731e380aaa79dc236064cfb294449dcc
      https://github.com/quicwg/base-drafts/commit/04e787fb731e380aaa79dc236064cfb294449dcc
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: c05a11457615edb32945369f5b7e4c9ef6031f4c
      https://github.com/quicwg/base-drafts/commit/c05a11457615edb32945369f5b7e4c9ef6031f4c
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md


  Commit: 49ddf7fba915e7aabc815239718a83a720363e28
      https://github.com/quicwg/base-drafts/commit/49ddf7fba915e7aabc815239718a83a720363e28
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: ff55a162469dfc8e78c2bfb3471091e93a15ece9
      https://github.com/quicwg/base-drafts/commit/ff55a162469dfc8e78c2bfb3471091e93a15ece9
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3653 from quicwg/ianswett-onpacketreceived

Add OnPacketReceived to pseudocode


  Commit: eba43bdf0f8e5240d6d7198cdef6cad6b4a6284b
      https://github.com/quicwg/base-drafts/commit/eba43bdf0f8e5240d6d7198cdef6cad6b4a6284b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-qpack.md
    M draft-ietf-quic-recovery.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3668 from quicwg/changelog-28

Changelog for -28


  Commit: 2699ce60892a2daea3c6fb19cc5140c1c6f77488
      https://github.com/quicwg/base-drafts/commit/2699ce60892a2daea3c6fb19cc5140c1c6f77488
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-qpack.md
    M draft-ietf-quic-recovery.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge branch 'master' into example-28


Compare: https://github.com/quicwg/base-drafts/compare/5969c42dfd64...2699ce60892a


From nobody Tue May 19 16:08:25 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 1C2F03A003D for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:08:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 b4zdaR1j2QOL for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:08:19 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E584E3A003E for <quic-issues@ietf.org>; Tue, 19 May 2020 16:08:18 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id EB9D5E1395 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:08:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589929697; bh=xbkkVeP/ShTS2EbKdpgusGlf2MxcVjR2oWDIy7YJH6E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=azNQi4BLx3T+2vLKdKTwnANZwsdRzmlTsBC4q7b75BuQZhAsaeEJOtPH4SVMmOumj EO23ZopirijfPqdS4L1iAScQlfCHUWrlE2FZ85PFKc1sNxau7PpszKr+zaJ4bwAWGW yj+06MPe58L+gUad/FsyambVa6VFvX61OHs5ph8c=
Date: Tue, 19 May 2020 16:08:17 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK73T637V4DAYSOQ57N42BD6DEVBNHHCJXRQFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3660/c631133901@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3660@github.com>
References: <quicwg/base-drafts/pull/3660@github.com>
Subject: Re: [quicwg/base-drafts] Remove repeated sentence (#3660)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec466e1dc759_1c093ffd122cd96420657b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ozPIip2qaxT8tdbXEGhxEPxl_J0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:08:21 -0000

----==_mimepart_5ec466e1dc759_1c093ffd122cd96420657b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think it's slightly more complex that this.  Each paragraph identifies a failure condition, and says what to do if you encounter it.  The response, in both cases, is:
- CANCEL_PUSH
- If, due to race, the push already arrived, also stream error

If we want to de-dupe, we would need to combine the paragraphs to discuss the two error conditions then lay out the two-part response once.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3660#issuecomment-631133901
----==_mimepart_5ec466e1dc759_1c093ffd122cd96420657b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I think it's slightly more complex that this.  Each paragraph identifies a failure condition, and says what to do if you encounter it.  The response, in both cases, is:</p>
<ul>
<li>CANCEL_PUSH</li>
<li>If, due to race, the push already arrived, also stream error</li>
</ul>
<p>If we want to de-dupe, we would need to combine the paragraphs to discuss the two error conditions then lay out the two-part response once.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3660#issuecomment-631133901">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK46VYTKI6ZUD56T5MDRSMGODANCNFSM4NBBHDHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYENZLEGHKNBA3NWRLRSMGODA5CNFSM4NBBHDHKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWPFNTI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3660#issuecomment-631133901",
"url": "https://github.com/quicwg/base-drafts/pull/3660#issuecomment-631133901",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec466e1dc759_1c093ffd122cd96420657b--


From nobody Tue May 19 16:08:32 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 0316B3A005B for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:08:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 8kcX9OqIh4rM for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:08:29 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E9B343A0045 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:08:28 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 4652F6E0117 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:08:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589929708; bh=oryrzFTFVLSQOLtbeLFT8LY7oSYmglrdNjfPVtd7BF4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GgKfUtYzZ+V8uW5SRm2d8qHRPhse5MD6fUMsJsgu/3x8OEIGkTLqhdIQbUdel4+yl WN+cxdzI9Lj+60CTk7g+pyIVoUQARDbayqJhBbltoCOUHgHWCIw4L50OTNIWVpxCNH e2nj9Clp6Es1+4DkylcBFKlmylYz6X5GQDTFB4ko=
Date: Tue, 19 May 2020 16:08:28 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3663/push/5099100560@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3663@github.com>
References: <quicwg/base-drafts/pull/3663@github.com>
Subject: Re: [quicwg/base-drafts] Update examples for -28 (#3663)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec466ec3729b_27923fe163ecd96412962e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SLGwTCTaLWtd8W5_iZMzitRmJNs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:08:31 -0000

----==_mimepart_5ec466ec3729b_27923fe163ecd96412962e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

2699ce60892a2daea3c6fb19cc5140c1c6f77488  Merge branch 'master' into example-28


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3663/files/5969c42dfd647aa74fe9ed96f8c2bcf3de9380de..2699ce60892a2daea3c6fb19cc5140c1c6f77488

----==_mimepart_5ec466ec3729b_27923fe163ecd96412962e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/2699ce60892a2daea3c6fb19cc5140c1c6f77488">2699ce6</a>  Merge branch &#39;master&#39; into example-28</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3663/files/5969c42dfd647aa74fe9ed96f8c2bcf3de9380de..2699ce60892a2daea3c6fb19cc5140c1c6f77488">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7CT6YQ6A3RP7B57JTRSMGOZANCNFSM4NDXYEQQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3TNWXD5R7KOGCBUDTRSMGOZA5CNFSM4NDXYEQ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSMRWGEZTOMSQOVZWQIZVGA4TSMJQGA2TMMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3663/files/5969c42dfd647aa74fe9ed96f8c2bcf3de9380de..2699ce60892a2daea3c6fb19cc5140c1c6f77488",
"url": "https://github.com/quicwg/base-drafts/pull/3663/files/5969c42dfd647aa74fe9ed96f8c2bcf3de9380de..2699ce60892a2daea3c6fb19cc5140c1c6f77488",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec466ec3729b_27923fe163ecd96412962e--


From nobody Tue May 19 16:08:52 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 288DB3A003D for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:08:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 yUy0Ij8fsPsP for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:08:50 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1B7C63A0029 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:08:50 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 142702C12B4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:08:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589929729; bh=gAP1D/P+Ux95T3TiF41lefqEJPOR2fIP8uMloxvu5mo=; h=Date:From:To:Subject:From; b=GlAqVnKvB3X2NZymf5BD2pooS2Tlmbl0oTXqN/2TrhfvWnNn6ultTfSbkp2N4erOs tEK/7DNhZpcKk6/nFXEqdrOWFyTVivAQZGBBttEj5bct+s2ONLs7igGct9BzV0+4+A BQYvlZ6lNlbwkx+epoYBzz7PUlxdOdhUglE4rZnA=
Date: Tue, 19 May 2020 16:08:49 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ae853b-ccdfc6@github.com>
Subject: [quicwg/base-drafts] ccdfc6: Script updating gh-pages from eba43bdf. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/is0WVeXErM9JgGYKQh0FXP8r7Pw>
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: Tue, 19 May 2020 23:08:51 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ccdfc6eb7cb0d2b24b9cfdd299111a546a703234
      https://github.com/quicwg/base-drafts/commit/ccdfc6eb7cb0d2b24b9cfdd299111a546a703234
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from eba43bdf. [ci skip]



From nobody Tue May 19 16:09:20 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 493073A003E for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:09:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 zPjjJmQhkL2z for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:09:17 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C18393A003D for <quic-issues@ietf.org>; Tue, 19 May 2020 16:09:16 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id E7DC3C60A64 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:09:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589929755; bh=+9YcdgquNLhw4yd4nvFHcAQtv98GsmzORPlCyStj8SA=; h=Date:From:To:Subject:From; b=nvZEYgH10s+k2m/Hf/BFSPfQc3Xx6Dq8JDmdP4ta5LN95LSoj1kZMZ4KAd6ZLdrGJ nAPIXru1O+4rIR8QwtvJ2FbvgHNf9TzhGzyKLJCutSy0r6wb7NGEW79oNUdOQO7UNz 0yjLEZKF798nJaS6paigbprF+BBlRvHMsTNoiPKs=
Date: Tue, 19 May 2020 16:09:15 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ccdfc6-e96fa3@github.com>
Subject: [quicwg/base-drafts] e96fa3: Script updating gh-pages from 2699ce60. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HvFhsjSJ94RXEqvXvsiGjK8vO5c>
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: Tue, 19 May 2020 23:09:18 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e96fa3456d112070b229003024a4e289452d8af3
      https://github.com/quicwg/base-drafts/commit/e96fa3456d112070b229003024a4e289452d8af3
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M example-28/draft-ietf-quic-http.html
    M example-28/draft-ietf-quic-http.txt
    M example-28/draft-ietf-quic-invariants.html
    M example-28/draft-ietf-quic-invariants.txt
    M example-28/draft-ietf-quic-qpack.html
    M example-28/draft-ietf-quic-qpack.txt
    M example-28/draft-ietf-quic-recovery.html
    M example-28/draft-ietf-quic-recovery.txt
    M example-28/draft-ietf-quic-tls.html
    M example-28/draft-ietf-quic-tls.txt
    M example-28/draft-ietf-quic-transport.html
    M example-28/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 2699ce60. [ci skip]



From nobody Tue May 19 16:10:42 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 52AC13A005B for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:10:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 0n69Cdb2T2ur for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:10:39 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DBD573A003D for <quic-issues@ietf.org>; Tue, 19 May 2020 16:10:38 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 1C935521E5B for <quic-issues@ietf.org>; Tue, 19 May 2020 16:10:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589929838; bh=ly8COdye+jtbgbsZqFF104vqCbrVOYJ/jxJqRlN594U=; h=Date:From:To:Subject:From; b=0+Fwg7w35pINwpyjJIyLFSlxgrmTcdQq0PPimN0DtELZc33SBuMRyGn6yVD8v1pK7 wvrvlqF/Rn7M93uNH9Y0m+sVQzlZbXS/F9deNCDsyQDYhOEtGJ8oFmFxUPWItgpvrt qjY2tg8xOKwmBPnHyDtCwdRqmVgNAG6JLDyG/V68=
Date: Tue, 19 May 2020 16:10:38 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/eba43b-80e9e5@github.com>
Subject: [quicwg/base-drafts] e04411: Update examples for -28
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EqWDMiH3tvySSECnwdOiT8_3q7I>
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: Tue, 19 May 2020 23:10:40 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: e044112b34f1f19d334faed02c1594208c4eb56e
      https://github.com/quicwg/base-drafts/commit/e044112b34f1f19d334faed02c1594208c4eb56e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md
    M protection-samples.js

  Log Message:
  -----------
  Update examples for -28


  Commit: 5969c42dfd647aa74fe9ed96f8c2bcf3de9380de
      https://github.com/quicwg/base-drafts/commit/5969c42dfd647aa74fe9ed96f8c2bcf3de9380de
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M protection-samples.js

  Log Message:
  -----------
  Some more cleanup


  Commit: 2699ce60892a2daea3c6fb19cc5140c1c6f77488
      https://github.com/quicwg/base-drafts/commit/2699ce60892a2daea3c6fb19cc5140c1c6f77488
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-qpack.md
    M draft-ietf-quic-recovery.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge branch 'master' into example-28


  Commit: 80e9e5933ea8be6860d043102d064cecacc232c4
      https://github.com/quicwg/base-drafts/commit/80e9e5933ea8be6860d043102d064cecacc232c4
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md
    M protection-samples.js

  Log Message:
  -----------
  Merge pull request #3663 from quicwg/example-28

Update examples for -28


Compare: https://github.com/quicwg/base-drafts/compare/eba43bdf0f8e...80e9e5933ea8


From nobody Tue May 19 16:10:48 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 8C4EE3A003D for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:10:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 rMTOP2XJKl93 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:10:39 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7E91C3A0045 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:10:39 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id D4A0752047A for <quic-issues@ietf.org>; Tue, 19 May 2020 16:10:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589929838; bh=by9WQ7oEsj5F/K5hwZYuUhGF9KQpqZ7A9Yckyc+P4bE=; h=Date:From:To:Subject:From; b=kGczPYBj20x3mWE0lJjiJwryjzxH8LKjxCUsGPakbdrxZFlE1P3i4uHUYk8aeWrQ1 5+a4u+huHx9ZtEC6BalD//8khzglr8TddaDP0zvQ+1OGJO3SR7vrPYSsiBbZcq6l+v 74CUs0+3KjRwmPVDaBlbjOdN/vUc4zUlBTz5DTw0=
Date: Tue, 19 May 2020 16:10:38 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/example-28/2699ce-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/L702RqBsiA8LEuUgLJkEAW_dBRU>
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: Tue, 19 May 2020 23:10:41 -0000

  Branch: refs/heads/example-28
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 19 16:10:54 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 E445B3A003E for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:10:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 2n6XNXOBO1ly for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:10:47 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A60363A003D for <quic-issues@ietf.org>; Tue, 19 May 2020 16:10:47 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 0EC4A1C0CCD for <quic-issues@ietf.org>; Tue, 19 May 2020 16:10:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589929847; bh=oMN0ORf0EN9TQJg5+eWh1YBcuWr1Uh1CMlepGPIJwKM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HuO1IXkdhbeitQRk8NtdVS4YRBVkvA3NlKe9A2wdEIEa9h4ezvjqwxoQUG6HTn/FR i9udphJ1uQQhzFtC5+5zOPjqNFYoiQLYgCXv6BHvZ/JjJFpYxg4a5uZYThuo0XgtPJ XCSH/nVTpK1Vpn6Bt6H3gYRgY4MkL8ywcFm84JRI=
Date: Tue, 19 May 2020 16:10:46 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2T347DX5D66OD2XUN42BEHNEVBNHHCJ4Y7IQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3663/issue_event/3354047199@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3663@github.com>
References: <quicwg/base-drafts/pull/3663@github.com>
Subject: Re: [quicwg/base-drafts] Update examples for -28 (#3663)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46776f3037_28ac3fccceccd9601621a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/N3ZBVv-fmCiyHMjPlQh7VcK9mKA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:10:53 -0000

----==_mimepart_5ec46776f3037_28ac3fccceccd9601621a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3663 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3663#event-3354047199
----==_mimepart_5ec46776f3037_28ac3fccceccd9601621a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="619913028" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3663" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3663/hovercard" href="https://github.com/quicwg/base-drafts/pull/3663">#3663</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3663#event-3354047199">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5D7X5O2NY32MDUY63RSMGXNANCNFSM4NDXYEQQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYNV7VWVVEKBLDGKY3RSMGXNA5CNFSM4NDXYEQ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY7VLFXY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3663#event-3354047199",
"url": "https://github.com/quicwg/base-drafts/pull/3663#event-3354047199",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec46776f3037_28ac3fccceccd9601621a--


From nobody Tue May 19 16:11:45 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 2B9513A003E for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:11:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 Gph_jzG7_K-Y for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:11:42 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2B9DE3A003D for <quic-issues@ietf.org>; Tue, 19 May 2020 16:11:42 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 207706A0835 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:11:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589929901; bh=VGvIgXRPLHv2B+qN6mQ9pO1lh+LferkNo40OwYTBHhA=; h=Date:From:To:Subject:From; b=tFttHVniHE35kxxkZRbyQbH5q2Ob/sAINKqmTkv4mvUe1WXinWPGXMVQM8222y2dp JXhiYqAlRujC86uuEts2TIXjJM1o7U52KFTMGtBPa+Ew0ma9pWPHIOgKQntecm7nxf Y+dJsrmOKXC0aage8CnoBLu4R5M/uhN5IGU5ukOU=
Date: Tue, 19 May 2020 16:11:41 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e96fa3-a0675f@github.com>
Subject: [quicwg/base-drafts] a0675f: Script updating gh-pages from 80e9e593. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EOY2ofklAKGeCvU_tSPLECnI5Qk>
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: Tue, 19 May 2020 23:11:43 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: a0675faa4dbd6256dbc1d3e99936ce496407ef58
      https://github.com/quicwg/base-drafts/commit/a0675faa4dbd6256dbc1d3e99936ce496407ef58
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 80e9e593. [ci skip]



From nobody Tue May 19 16:17:04 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 C55EC3A00AD for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:17:02 -0700 (PDT)
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 0jj9kTostCpC for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:17:01 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 927113A0063 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:17:01 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id D51906A0840 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:17:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930220; bh=Q0bQyk8tcj55KyXxHaUiDXiuKVosoYjIXghG1fvyqZw=; h=Date:From:To:Subject:From; b=LIGn0dahcvD1f2SaRqRlhGQON89aPUjG2cY3XtbgYX2n+7vH9y/ukzrbqW7xoOP8L 9I3Rg5mAp7A/vnPEPsrLE0cbZCz2WYtGB/cnKbisjrvBSJQvo2LUREtD6eGBiYLZ5h lYjDL2LLSA+Ybkgw+DuLSyggVNHBFZswE3/aMRwo=
Date: Tue, 19 May 2020 16:17:00 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/80e9e5-402cd8@github.com>
Subject: [quicwg/base-drafts] 402cd8: [qpack] Overhaul the pseudocode (#3577)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kJnR1zLuG7FyzdoDwffEUqBdPQk>
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: Tue, 19 May 2020 23:17:03 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 402cd868abf559467f2ad64dd90c497084a979ab
      https://github.com/quicwg/base-drafts/commit/402cd868abf559467f2ad64dd90c497084a979ab
  Author: afrind <afrind@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  [qpack] Overhaul the pseudocode (#3577)

* [qpack] Overhaul the pseudocode

* Use the current terminology (insert count, base, encoder stream)
* Update to current design (modulo encoding of RIC)
* Normalize naming: index vs. idx
* Comments

Fixes #3544

* Fix lint

* Martin's feedback



From nobody Tue May 19 16:17:17 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 0D3963A0063 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:17:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 XRpekSKU8hcC for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:17:01 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C88283A0064 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:17:01 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id E07FB2C0E79 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:17:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930220; bh=VDn/lStOXV6ZwWF7snCf/Rpq28LNI8sirxS1Mym9SXY=; h=Date:From:To:Subject:From; b=lhD/nbdrHH1BNm7+n7PYpTpV6udQrYGVhWS9VucGtjnpmPP/9UxzECzeRuQ4MV+A5 clpgd0rglC8xOlNYuQuQYvlJmprC+bTfpsZYc/IvZb3kwr9MeX/mXBng/YGpKgl1zN GTSn/ov8DN5HBgsaqX65TLaA11JQB6IxRJ2Qf3to=
Date: Tue, 19 May 2020 16:17:00 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack-pseudocode/4398ec-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/YgxJzjIfYKQ04B9D7x8WPvrXZ3I>
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: Tue, 19 May 2020 23:17:03 -0000

  Branch: refs/heads/qpack-pseudocode
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 19 16:17:23 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 BECD73A0064 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:17:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KYo9Rwf06cai for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:17:10 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 888BB3A0063 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:17:10 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 1AEDE120499 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:17:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930230; bh=ILjxaufJ3jOG7ttDrHt1PSCS1209+td4qB/j3p+D/Oo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FhOXuX8C5NWR8P+XtbtWVvYxSmsW5xi848twjlaA8CnClz6QnbETMRGuVRQwI0F0r bwYKpV/VL0tIaIxRgNRi8+Bi0yqvjpGNdgHWgJNxw6c+SoxRTI9QA7/0zWCxPVjWPv ZoxF2FksnJgNRzO4yd6NOtSfCnJpCL/BDiBxSqao=
Date: Tue, 19 May 2020 16:17:09 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYR7M2JQLESFDXUXQV42BE7LEVBNHHCHNWTMM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3577/issue_event/3354060942@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3577@github.com>
References: <quicwg/base-drafts/pull/3577@github.com>
Subject: Re: [quicwg/base-drafts] [qpack] Overhaul the pseudocode (#3577)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec468f5b5495_5c843fb5ad4cd964647b8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/K7wxRJeVoz6d5-_Lm3MwCwf4-HU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:17:12 -0000

----==_mimepart_5ec468f5b5495_5c843fb5ad4cd964647b8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3577 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3577#event-3354060942
----==_mimepart_5ec468f5b5495_5c843fb5ad4cd964647b8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="599184227" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3577" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3577/hovercard" href="https://github.com/quicwg/base-drafts/pull/3577">#3577</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3577#event-3354060942">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3YJOLMKWDATC4TCGTRSMHPLANCNFSM4MHJICCQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6W4QVEWBE76B4HWJDRSMHPLA5CNFSM4MHJICC2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY7VORDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3577#event-3354060942",
"url": "https://github.com/quicwg/base-drafts/pull/3577#event-3354060942",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec468f5b5495_5c843fb5ad4cd964647b8--


From nobody Tue May 19 16:17:48 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 C23573A0064 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:17:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 NGgq492uQe8N for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:17:45 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 95EB43A0063 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:17:45 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id C53902C0FFD for <quic-issues@ietf.org>; Tue, 19 May 2020 16:17:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930264; bh=uZh2acyA9FmaeIXCEZtPTAjjTbIcLdFRWiZ8esNaF1U=; h=Date:From:To:Subject:From; b=aCJ+57PQgh0T6/e8jVBVveMVimw1rShRm5GPulUenlkdQ/hKhXjLRmb+QpPiovFLC 8vmsnuM1ymLRkT3i+vQYFX9sVcC4+NY1mdYe3aY0asJQgWrXCt3+9nKIF+Wv/PrZIy k+y671Ng+PP4ZxqF3wZrLeonIrNnnVmY5r0CpMts=
Date: Tue, 19 May 2020 16:17:44 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a0675f-c6aabd@github.com>
Subject: [quicwg/base-drafts] c6aabd: Script updating gh-pages from 402cd868. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aT_-KVen4ni25SYYFDFiAmEVrNU>
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: Tue, 19 May 2020 23:17:47 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c6aabddb12a7374634e6731e21678f853d3c463f
      https://github.com/quicwg/base-drafts/commit/c6aabddb12a7374634e6731e21678f853d3c463f
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 402cd868. [ci skip]



From nobody Tue May 19 16:20:45 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 319283A00C3 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:20:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, TVD_SPACE_RATIO=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 Fk2TOZAV8-hu for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:20:41 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8863D3A00C1 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:20:41 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id D27D1E0535 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:20:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930440; bh=yQvHYpF8r2BvA5au7bT+U1V6uR2OW5NRZV/4L+6ANd0=; h=Date:From:To:Subject:From; b=nclmeb+JcGnxAmo3q12GT2/bJl08dqx1tw3dQmZ7UbEII3gk9+gWK0c/tc9+W05nG 19R4Q5zE4HvR/E6FGVDtJezamsFSdtlcXGADb2dSBdhK3l9ahnW9+k8SRwxqNElpi1 u1mp9YEJ9q5PysekMQE5CfPYdyokj6hBYRRRwgOQ=
Date: Tue, 19 May 2020 16:20:40 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recompute-pto/a1618e-e4919c@github.com>
Subject: [quicwg/base-drafts] e4919c: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sk810wjxlIcrQnrsvZgM62ejs8o>
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: Tue, 19 May 2020 23:20:44 -0000

  Branch: refs/heads/ianswett-recompute-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: e4919c2b17fa369a7aaa15247437e5eeaddc7712
      https://github.com/quicwg/base-drafts/commit/e4919c2b17fa369a7aaa15247437e5eeaddc7712
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Tue May 19 16:20:54 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 75D8D3A00C1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:20:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 v7QRZqCmdn3d for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:20:50 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 614833A00B2 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:20:50 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id BFC501C0999 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:20:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930449; bh=J4BQArBS9sxbDTn1GqB1naK6TpknbhnIlf1WqIw7odo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QS59CCqlajkvDogP6C2SkKuTuCcjMMY9+uVVxIRIK1NXum4NgrvTrK5i9mL3SDx/M y146X94SIpKBp3l9xO/9zkT56mkRRH2/MS38YH0HWNiBItqyxH2bxcyV0X3nWlvJ17 0WhxU/OOkv3XHXZPiLtYw+gnPh1xaQaH4cBvD3BI=
Date: Tue, 19 May 2020 16:20:49 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/push/5099140793@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec469d1b1dce_64053fe43e2cd960664e9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LGqZpdJkdLjWkwNExxubUQj_AZw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:20:53 -0000

----==_mimepart_5ec469d1b1dce_64053fe43e2cd960664e9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar pushed 1 commit.

e4919c2b17fa369a7aaa15247437e5eeaddc7712  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665/files/a1618e828da8908b4ac8c850b3e9fac9a01e9f2e..e4919c2b17fa369a7aaa15247437e5eeaddc7712

----==_mimepart_5ec469d1b1dce_64053fe43e2cd960664e9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/janaiyengar" class="user-mention">@janaiyengar</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/e4919c2b17fa369a7aaa15247437e5eeaddc7712">e4919c2</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3665/files/a1618e828da8908b4ac8c850b3e9fac9a01e9f2e..e4919c2b17fa369a7aaa15247437e5eeaddc7712">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZLA2MJSZKQIKOE3JLRSMH5DANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYZEMQOHGHL27DDLUTRSMH5DA5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSNBQHA2TKMSQOVZWQIZVGA4TSMJUGA3TSMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665/files/a1618e828da8908b4ac8c850b3e9fac9a01e9f2e..e4919c2b17fa369a7aaa15247437e5eeaddc7712",
"url": "https://github.com/quicwg/base-drafts/pull/3665/files/a1618e828da8908b4ac8c850b3e9fac9a01e9f2e..e4919c2b17fa369a7aaa15247437e5eeaddc7712",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec469d1b1dce_64053fe43e2cd960664e9--


From nobody Tue May 19 16:21:46 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 E34793A00C4 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:21:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 Jn09H_-kiuvn for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:21:37 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1EE633A00C1 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:21:36 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 3B9E01C0721 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:21:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930496; bh=MJAZW4LTMLwQYLcA3SVyeK0QAZTzGzgWtHsaHrRtrz8=; h=Date:From:To:Subject:From; b=s2srCEDSmomtCoTspg54yjNMDx9WLTs+t0LyVRBdo4yUkjffENaV8A7TxPkKQfOkN sWSPXzt+tqsyx5FrULoGVkB390COhFB/O2tzbwn0evOMT4oIdR3N7cjJzv5MmPJkzA Jr0kWkD6EmikN/m8cPB1J0SEZauYUI5JFrhJ5O4E=
Date: Tue, 19 May 2020 16:21:36 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack/core_terminology/ef9415-ec2cf1@github.com>
Subject: [quicwg/base-drafts] de6e11: Clarify zero-length CIDs and active_connection_id_...
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/as2vkbc7p4L-nNZFCtr04fhsqDQ>
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: Tue, 19 May 2020 23:21:45 -0000

  Branch: refs/heads/qpack/core_terminology=0D
  Home:   https://github.com/quicwg/base-drafts=0D
  Commit: de6e116638bbdb77a98b998d719cdc00fa56b99c=0D
      https://github.com/quicwg/base-drafts/commit/de6e116638bbdb77a98b99=
8d719cdc00fa56b99c=0D
  Author: Nick Harper <nharper@chromium.org>=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
  Clarify zero-length CIDs and active_connection_id_limit TP=0D
=0D
=0D
  Commit: 19e5189c0519c9207a6e81699ea3e802924ad875=0D
      https://github.com/quicwg/base-drafts/commit/19e5189c0519c9207a6e81=
699ea3e802924ad875=0D
  Author: Nick Harper <nharper@chromium.org>=0D
  Date:   2020-02-06 (Thu, 06 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Ignore value if zero; clean up some other language.=0D
=0D
=0D
  Commit: 66894f8b39ba2c10a626972497de31e5c19b6f6a=0D
      https://github.com/quicwg/base-drafts/commit/66894f8b39ba2c10a62697=
2497de31e5c19b6f6a=0D
  Author: Nick Harper <nharper@chromium.org>=0D
  Date:   2020-02-06 (Thu, 06 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Explain why parameter is ignored in certain cases.=0D
=0D
This is @martinthomson's suggestion from the PR with a slight tweak.=0D
=0D
=0D
  Commit: 6936ea28ba228be60966351b035a06affbc877ab=0D
      https://github.com/quicwg/base-drafts/commit/6936ea28ba228be6096635=
1b035a06affbc877ab=0D
  Author: Nick Harper <github@nharper.org>=0D
  Date:   2020-02-06 (Thu, 06 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  s/MUST be no less/MUST NOT be less/=0D
=0D
Co-Authored-By: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 7eabbf9eb01302c45b75f3beb5fd9ced655112d6=0D
      https://github.com/quicwg/base-drafts/commit/7eabbf9eb01302c45b75f3=
beb5fd9ced655112d6=0D
  Author: Nick Harper <nharper@chromium.org>=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
  Tweak MUST NOT be less/MUST be at least=0D
=0D
=0D
  Commit: 2fc5157ed013ae8f84f17e44409c42be87660feb=0D
      https://github.com/quicwg/base-drafts/commit/2fc5157ed013ae8f84f17e=
44409c42be87660feb=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-03-11 (Wed, 11 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Authenticate connection IDs=0D
=0D
This authenticates all of them.=0D
=0D
Note that I have chosen to use position in the protocol (Source vs.=0D
Destination) as opposed to who selects the values (client vs. server) as=0D=

the means of deciding where each lies.  This avoids regressing an=0D
existing protocol characteristic.=0D
=0D
This changes the definition of original_connection_id so that it is=0D
mandatory for the server to include always.  A new=0D
handshake_connection_id (which might be initial_connection_id, but I=0D
think that's confusing) is also mandatory for both roles.  The=0D
retry_connection_id is used when there is a Retry.=0D
=0D
This is a granular encoding.  That means some additional bytes for the=0D=

types of transport parameters, but not so many as to be intolerable, I=0D=

think.  A single transport parameter, or a header on the transport=0D
parameter encoding (as we used to have) might be slightly more=0D
efficient, but offhand I think that the net saving would be at most 2=0D
bytes, so I'm going with simple over small.=0D
=0D
Closes #3439.=0D
=0D
=0D
  Commit: 0560290f9041482293cea9cdd053d326345b735a=0D
      https://github.com/quicwg/base-drafts/commit/0560290f9041482293cea9=
cdd053d326345b735a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-03-11 (Wed, 11 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Review feedback from David and Martin=0D
=0D
=0D
  Commit: beba71f8e874d803b9fb712312d62f769988d74d=0D
      https://github.com/quicwg/base-drafts/commit/beba71f8e874d803b9fb71=
2312d62f769988d74d=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-03-11 (Wed, 11 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Less text, more cross-reference=0D
=0D
=0D
  Commit: de068497997eb48d9cea63c903843dca5818fc4d=0D
      https://github.com/quicwg/base-drafts/commit/de068497997eb48d9cea63=
c903843dca5818fc4d=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-20 (Fri, 20 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Added considerations for 5tuple routing=0D
=0D
=0D
  Commit: b3e5a0c51f2e392366846026bafb98a0e654b4df=0D
      https://github.com/quicwg/base-drafts/commit/b3e5a0c51f2e3923668460=
26bafb98a0e654b4df=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-20 (Fri, 20 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  s/may/can=0D
=0D
=0D
  Commit: 657b103281dcbdceb2b1309dcdd1b1aae96fd71c=0D
      https://github.com/quicwg/base-drafts/commit/657b103281dcbdceb2b130=
9dcdd1b1aae96fd71c=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-20 (Fri, 20 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  typo=0D
=0D
=0D
  Commit: efb4c78cb4f64b9a926382777700f964ec6c0d61=0D
      https://github.com/quicwg/base-drafts/commit/efb4c78cb4f64b9a926382=
777700f964ec6c0d61=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-03-23 (Mon, 23 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  singular=0D
=0D
Co-Authored-By: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 41928cd80c885542633c0bd9898640850e51c69c=0D
      https://github.com/quicwg/base-drafts/commit/41928cd80c885542633c0b=
d9898640850e51c69c=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-03-24 (Tue, 24 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  complete sentences.=0D
=0D
Co-Authored-By: Mike Bishop <mbishop@evequefou.be>=0D
=0D
=0D
  Commit: f44f24e94b3eae910909cdcc76b738792a6a0105=0D
      https://github.com/quicwg/base-drafts/commit/f44f24e94b3eae910909cd=
cc76b738792a6a0105=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-03-24 (Tue, 24 Mar 2020)=0D
=0D
  Changed paths:=0D
    M .circleci/config.yml=0D
    M .lint.py=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-invariants.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
  Merge branch 'master' into authenticate-hs-cid=0D
=0D
=0D
  Commit: 1406b1db65cfbc237e455d081f162307573eb9b3=0D
      https://github.com/quicwg/base-drafts/commit/1406b1db65cfbc237e455d=
081f162307573eb9b3=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-25 (Wed, 25 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Responded to reviews=0D
=0D
=0D
  Commit: 6962e63f1744bb1b6a29ef892a1555b1969410fe=0D
      https://github.com/quicwg/base-drafts/commit/6962e63f1744bb1b6a29ef=
892a1555b1969410fe=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-26 (Thu, 26 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix latest reviews=0D
=0D
=0D
  Commit: 9374722d4f723e5cd1889ade44e10ab603bb710b=0D
      https://github.com/quicwg/base-drafts/commit/9374722d4f723e5cd1889a=
de44e10ab603bb710b=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-26 (Thu, 26 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Limit RCID state=0D
=0D
=0D
  Commit: 7ad84a2aa5dd28bc6ed38d18fb5935600d6f3b38=0D
      https://github.com/quicwg/base-drafts/commit/7ad84a2aa5dd28bc6ed38d=
18fb5935600d6f3b38=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-27 (Fri, 27 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Addressed most of MT's comments=0D
=0D
=0D
  Commit: efd55324649513ffc2cd7299ab3a19e094f81f17=0D
      https://github.com/quicwg/base-drafts/commit/efd55324649513ffc2cd72=
99ab3a19e094f81f17=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-27 (Fri, 27 Mar 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: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 9e1d5db348262fab522e0c794698031157aa67d7=0D
      https://github.com/quicwg/base-drafts/commit/9e1d5db348262fab522e0c=
794698031157aa67d7=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-27 (Fri, 27 Mar 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: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: b98bb9ea461c2099c2c0672e0356fc06b002c826=0D
      https://github.com/quicwg/base-drafts/commit/b98bb9ea461c2099c2c067=
2e0356fc06b002c826=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-27 (Fri, 27 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Ian's comments plus some additional text=0D
=0D
=0D
  Commit: a62abddacec3745841f89e9b40a76c64811edac6=0D
      https://github.com/quicwg/base-drafts/commit/a62abddacec3745841f89e=
9b40a76c64811edac6=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-27 (Fri, 27 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Whoops, missed one=0D
=0D
=0D
  Commit: 8ea8ed410a5340a7289e29ac57c2f6e5d4a52d18=0D
      https://github.com/quicwg/base-drafts/commit/8ea8ed410a5340a7289e29=
ac57c2f6e5d4a52d18=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-27 (Fri, 27 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  whitespace=0D
=0D
=0D
  Commit: dbc1c1db9cd94641b6faf82547a7028c25eaad60=0D
      https://github.com/quicwg/base-drafts/commit/dbc1c1db9cd94641b6faf8=
2547a7028c25eaad60=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 62b34f688440efd8db422ab23c8b103944d1d5a1=0D
      https://github.com/quicwg/base-drafts/commit/62b34f688440efd8db422a=
b23c8b103944d1d5a1=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 0abc1ed6f33ec1a6b62a320e12e4fa9a36a9972b=0D
      https://github.com/quicwg/base-drafts/commit/0abc1ed6f33ec1a6b62a32=
0e12e4fa9a36a9972b=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 4dfae9c5d7613a386e5ed598a28d54aa2947579e=0D
      https://github.com/quicwg/base-drafts/commit/4dfae9c5d7613a386e5ed5=
98a28d54aa2947579e=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 2c81e06af7c8d22384868e28da3467bb1df910a1=0D
      https://github.com/quicwg/base-drafts/commit/2c81e06af7c8d22384868e=
28da3467bb1df910a1=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 784000eefce372964fd50d4f11dca4f908ef0773=0D
      https://github.com/quicwg/base-drafts/commit/784000eefce372964fd50d=
4f11dca4f908ef0773=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 88a71208e9d4db9fcd6f4724bc1476e1f604a4bf=0D
      https://github.com/quicwg/base-drafts/commit/88a71208e9d4db9fcd6f47=
24bc1476e1f604a4bf=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  removed inferences about disable_migration=0D
=0D
=0D
  Commit: 66c76207669906a0937130fb5dda426e928e3462=0D
      https://github.com/quicwg/base-drafts/commit/66c76207669906a0937130=
fb5dda426e928e3462=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: c4d24944d60ecfb5fbc4873ff3d7c9438ab1f536=0D
      https://github.com/quicwg/base-drafts/commit/c4d24944d60ecfb5fbc487=
3ff3d7c9438ab1f536=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: f0b64a1301e329349ef1ba5fe4507d2288170782=0D
      https://github.com/quicwg/base-drafts/commit/f0b64a1301e329349ef1ba=
5fe4507d2288170782=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 9ec4b0c1d4086cc17f849563ca55bf2932ca13f9=0D
      https://github.com/quicwg/base-drafts/commit/9ec4b0c1d4086cc17f8495=
63ca55bf2932ca13f9=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Resolved all reviews I know how to address=0D
=0D
=0D
  Commit: e10134ef4d335a0640286d1437afa16418655df3=0D
      https://github.com/quicwg/base-drafts/commit/e10134ef4d335a0640286d=
1437afa16418655df3=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 4e3c1263433231a9e98365ec5fb75b541ef9de5e=0D
      https://github.com/quicwg/base-drafts/commit/4e3c1263433231a9e98365=
ec5fb75b541ef9de5e=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 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: 46f1894b7ec811fd56f54d49a98d6cd32a3aec0e=0D
      https://github.com/quicwg/base-drafts/commit/46f1894b7ec811fd56f54d=
49a98d6cd32a3aec0e=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  text alignment=0D
=0D
=0D
  Commit: 33548fd46adf3885542bbbe87ee2498bd2b92d75=0D
      https://github.com/quicwg/base-drafts/commit/33548fd46adf3885542bbb=
e87ee2498bd2b92d75=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-03-30 (Mon, 30 Mar 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  MT's suggestions=0D
=0D
=0D
  Commit: 455fb9734d268aa02bbd69bd7f62ca7a16b1fdc4=0D
      https://github.com/quicwg/base-drafts/commit/455fb9734d268aa02bbd69=
bd7f62ca7a16b1fdc4=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-01 (Wed, 01 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Migration with zero-length CID is inadvisable=0D
=0D
Closes #3559.=0D
=0D
=0D
  Commit: caf949d0d2c0f00f614205644b9895d2a63011cd=0D
      https://github.com/quicwg/base-drafts/commit/caf949d0d2c0f00f614205=
644b9895d2a63011cd=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-01 (Wed, 01 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Wordz is harrd=0D
=0D
=0D
  Commit: 6332cedcf7026fdcc1e0c36bca395d718344bae1=0D
      https://github.com/quicwg/base-drafts/commit/6332cedcf7026fdcc1e0c3=
6bca395d718344bae1=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-04-01 (Wed, 01 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  s/outstanding/in flight=0D
=0D
=0D
  Commit: beca69c7c49847bc0d473c681139bfaa9e882f57=0D
      https://github.com/quicwg/base-drafts/commit/beca69c7c49847bc0d473c=
681139bfaa9e882f57=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-04-01 (Wed, 01 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  update the rest of the text=0D
=0D
=0D
  Commit: 021b3cf00ab4be427f0b9f20b7d1b9a5cb6ab059=0D
      https://github.com/quicwg/base-drafts/commit/021b3cf00ab4be427f0b9f=
20b7d1b9a5cb6ab059=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-07 (Tue, 07 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Forbid zero-length connection ID with preferred addresses=0D
=0D
This is option 4 from the discussion in #3560.  That is, making=0D
preferred_address equivalent to NEW_CONNECTION_ID with a sequence number=0D=

of 1 in every way that matters.=0D
=0D
Closes #3560.=0D
=0D
=0D
  Commit: 0b3ff6b60864e9b29657e784c4a85bec36a05694=0D
      https://github.com/quicwg/base-drafts/commit/0b3ff6b60864e9b29657e7=
84c4a85bec36a05694=0D
  Author: Nick Harper <github@nharper.org>=0D
  Date:   2020-04-07 (Tue, 07 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarify what to do if an invalid value is received=0D
=0D
Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 495a97423b8b0bb6411f14a533408a6cfbc7fb29=0D
      https://github.com/quicwg/base-drafts/commit/495a97423b8b0bb6411f14=
a533408a6cfbc7fb29=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-04-07 (Tue, 07 Apr 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: 694774d0cc5c88a62d40975221f96ed622ea238d=0D
      https://github.com/quicwg/base-drafts/commit/694774d0cc5c88a62d4097=
5221f96ed622ea238d=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-08 (Wed, 08 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  SHOULD use adaptive thresholds=0D
=0D
Fixes #3571=0D
=0D
=0D
  Commit: 56a5ef401e3be26ef9b984969673ffcbf016ea39=0D
      https://github.com/quicwg/base-drafts/commit/56a5ef401e3be26ef9b984=
969673ffcbf016ea39=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-08 (Wed, 08 Apr 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: 5dfecdf98cece40f60b04b2110e3587ecfde4828=0D
      https://github.com/quicwg/base-drafts/commit/5dfecdf98cece40f60b04b=
2110e3587ecfde4828=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-08 (Wed, 08 Apr 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: 54e2a1207f926fc32ce23769368a06bbabfd0de1=0D
      https://github.com/quicwg/base-drafts/commit/54e2a1207f926fc32ce237=
69368a06bbabfd0de1=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-04-08 (Wed, 08 Apr 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: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 2dea527f716acf2f8a424dd300bd395839b6991d=0D
      https://github.com/quicwg/base-drafts/commit/2dea527f716acf2f8a424d=
d300bd395839b6991d=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-08 (Wed, 08 Apr 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: 4393b6dfc35064cc79493021ac6b80d460ad175f=0D
      https://github.com/quicwg/base-drafts/commit/4393b6dfc35064cc794930=
21ac6b80d460ad175f=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-08 (Wed, 08 Apr 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: 464d19911876512bf66747c79c7c85f0ff911139=0D
      https://github.com/quicwg/base-drafts/commit/464d19911876512bf66747=
c79c7c85f0ff911139=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-08 (Wed, 08 Apr 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: f436727acd7dcd49d613cac8ec032a9934c3f6ef=0D
      https://github.com/quicwg/base-drafts/commit/f436727acd7dcd49d613ca=
c8ec032a9934c3f6ef=0D
  Author: Martin Duke <m.duke@f5.com>=0D
  Date:   2020-04-08 (Wed, 08 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  fixed line endings=0D
=0D
=0D
  Commit: c7a236086266f17ba091046840d6e3d1e58251fe=0D
      https://github.com/quicwg/base-drafts/commit/c7a236086266f17ba09104=
6840d6e3d1e58251fe=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-09 (Thu, 09 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Jana's suggestion from review=0D
=0D
I'll need to reflow these...=0D
=0D
Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 6f5e5478139beb1f0d187c2ea58a7449098e7711=0D
      https://github.com/quicwg/base-drafts/commit/6f5e5478139beb1f0d187c=
2ea58a7449098e7711=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-09 (Thu, 09 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Reformat=0D
=0D
=0D
  Commit: 8cec1c293b280b20329837cf4528187480986ba3=0D
      https://github.com/quicwg/base-drafts/commit/8cec1c293b280b20329837=
cf4528187480986ba3=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-09 (Thu, 09 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Rename to initial_connection_id=0D
=0D
=0D
  Commit: b0ef978e1e2451acc6db7857698b141c4e7cad29=0D
      https://github.com/quicwg/base-drafts/commit/b0ef978e1e2451acc6db78=
57698b141c4e7cad29=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-09 (Thu, 09 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge branch 'master' into authenticate-hs-cid=0D
=0D
=0D
  Commit: e2f2b33800cb09add5e185e09f1512ef71e86099=0D
      https://github.com/quicwg/base-drafts/commit/e2f2b33800cb09add5e185=
e09f1512ef71e86099=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-14 (Tue, 14 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Restore active_connection_id_limit=0D
=0D
=0D
  Commit: 492c09329130b5524b5eaa2dfd409d2ca3070901=0D
      https://github.com/quicwg/base-drafts/commit/492c09329130b5524b5eaa=
2dfd409d2ca3070901=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Two reasons=0D
=0D
Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 196ecf7da23afd34a11fcc024395a7aa553e74a5=0D
      https://github.com/quicwg/base-drafts/commit/196ecf7da23afd34a11fcc=
024395a7aa553e74a5=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-14 (Tue, 14 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Non-normative=0D
=0D
=0D
  Commit: ccd78939eed2efc0329fb41752dec4695d630c83=0D
      https://github.com/quicwg/base-drafts/commit/ccd78939eed2efc0329fb4=
1752dec4695d630c83=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-14 (Tue, 14 Apr 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
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 3722988b7c139c915092397bec3cdac81d7c12c9=0D
      https://github.com/quicwg/base-drafts/commit/3722988b7c139c91509239=
7bec3cdac81d7c12c9=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-14 (Tue, 14 Apr 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: 65d2acbe3055ab996a07fd9a9c56626e66052844=0D
      https://github.com/quicwg/base-drafts/commit/65d2acbe3055ab996a07fd=
9a9c56626e66052844=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-15 (Wed, 15 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  More detail regarding dropping of ACK Ranges=0D
=0D
This explains what needs to be kept and why.  Specifically, you need to=0D=

keep ranges unless you have other means of ensuring that you don't=0D
accept packets from those ranges again.  You also need to keep the=0D
largest acknowledged so that you can get a packet number from subsequent=0D=

packets.=0D
=0D
This also recommends that ACK frames include the largest acknowledged=0D
always.  That is primarily to ensure that ECN works properly, and even=0D=

there, you only disable ECN if you get some weird reordering, so it's=0D
probably not a big deal if you don't follow this recommendation.=0D
=0D
Closes #3541.=0D
Closes #3537.=0D
=0D
=0D
  Commit: 27e3e87f9d41148ba04c39bde51e3c4030126193=0D
      https://github.com/quicwg/base-drafts/commit/27e3e87f9d41148ba04c39=
bde51e3c4030126193=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-18 (Sat, 18 Apr 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
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 66fb2929883fc076683392c81be00c2b6936ad82=0D
      https://github.com/quicwg/base-drafts/commit/66fb2929883fc076683392=
c81be00c2b6936ad82=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-19 (Sun, 19 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Why min CWND of 2 instead of 1=0D
=0D
Feel free to suggest better text or other reasons, but this is what I cam=
e up with.=0D
=0D
Fixes #3261=0D
=0D
=0D
  Commit: 8ec6c3ab72ea75f5e2dc07abce7b0640076552f2=0D
      https://github.com/quicwg/base-drafts/commit/8ec6c3ab72ea75f5e2dc07=
abce7b0640076552f2=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  @DavidSchinazi's suggested text with tweaks=0D
=0D
=0D
  Commit: 4ca647232fb7455f49c926314735d0434c9c0dc3=0D
      https://github.com/quicwg/base-drafts/commit/4ca647232fb7455f49c926=
314735d0434c9c0dc3=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarifications for preferred_address=0D
=0D
This just writes down what @MikeBishop suggested in #3432.=0D
=0D
Closes #3432.=0D
=0D
=0D
  Commit: 8162c9ae05ca0f7189f20d8a0846bf71b9b3f2e6=0D
      https://github.com/quicwg/base-drafts/commit/8162c9ae05ca0f7189f20d=
8a0846bf71b9b3f2e6=0D
  Author: Eric Kinnear <ekinnear@apple.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarify existing requirements on CID use to consolidate expected behavi=
or=0D
=0D
=0D
  Commit: 53c887eb54dd1f57e2ee126f7c7f3f1b1ad19f12=0D
      https://github.com/quicwg/base-drafts/commit/53c887eb54dd1f57e2ee12=
6f7c7f3f1b1ad19f12=0D
  Author: Eric Kinnear <ekinnear@apple.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Make {{issue-cid}} and {{retire-cid}} consistent=0D
=0D
=0D
  Commit: 0e1664e9680b22789418c61579c2ce7d1dee0336=0D
      https://github.com/quicwg/base-drafts/commit/0e1664e9680b22789418c6=
1579c2ce7d1dee0336=0D
  Author: Eric Kinnear <ekinnear@apple.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarify handshake confirmed for preferred address, note that any CID is=
 valid for use as mentioned later=0D
=0D
=0D
  Commit: 6d95aa65d4366e6474de8b61f964e99ffd9a996b=0D
      https://github.com/quicwg/base-drafts/commit/6d95aa65d4366e6474de8b=
61f964e99ffd9a996b=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 1225aad461e601e2cfec4e354a8b34704f633f81=0D
      https://github.com/quicwg/base-drafts/commit/1225aad461e601e2cfec4e=
354a8b34704f633f81=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: d214bfdcdc246bc0955acf834fc64c3d463ab2d6=0D
      https://github.com/quicwg/base-drafts/commit/d214bfdcdc246bc0955acf=
834fc64c3d463ab2d6=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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: ce6ab3402520ed0931bafed333a3ab3cddf73903=0D
      https://github.com/quicwg/base-drafts/commit/ce6ab3402520ed0931bafe=
d333a3ab3cddf73903=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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: 5580b7a57d7fa5f1585f598751f9930b4480c01a=0D
      https://github.com/quicwg/base-drafts/commit/5580b7a57d7fa5f1585f59=
8751f9930b4480c01a=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 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: 3cf8eaa6b912fd715691bbdb660967554c01d61a=0D
      https://github.com/quicwg/base-drafts/commit/3cf8eaa6b912fd715691bb=
db660967554c01d61a=0D
  Author: Eric Kinnear <32474881+erickinnear@users.noreply.github.com>=0D=

  Date:   2020-04-20 (Mon, 20 Apr 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: Martin Thomson <mt@lowentropy.net>=0D
Co-Authored-By: Mike Bishop <mbishop@evequefou.be>=0D
=0D
=0D
  Commit: 5509f1d2cd36a7c3dd780cf3722338b2c0348680=0D
      https://github.com/quicwg/base-drafts/commit/5509f1d2cd36a7c3dd780c=
f3722338b2c0348680=0D
  Author: Eric Kinnear <ekinnear@apple.com>=0D
  Date:   2020-04-20 (Mon, 20 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Review comments=0D
=0D
=0D
  Commit: 72c7eced88de7b859edf4d1f093277851433ab8a=0D
      https://github.com/quicwg/base-drafts/commit/72c7eced88de7b859edf4d=
1f093277851433ab8a=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-21 (Tue, 21 Apr 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
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: a6a266c9272ffd8db8ebd12a58e69e9d9ba9411e=0D
      https://github.com/quicwg/base-drafts/commit/a6a266c9272ffd8db8ebd1=
2a58e69e9d9ba9411e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-22 (Wed, 22 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-invariants.md=0D
    M draft-ietf-quic-qpack.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge branch 'master' into ek/preferred_address=0D
=0D
=0D
  Commit: d4baa8a6c01f5d30ff0c145693bd257717b59e2e=0D
      https://github.com/quicwg/base-drafts/commit/d4baa8a6c01f5d30ff0c14=
5693bd257717b59e2e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-23 (Thu, 23 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Prohibit TLS 1.3 middlebox compatibility mode=0D
=0D
Closes #3594.=0D
=0D
=0D
  Commit: cf939cc1e1dd4c40e46856fb335c8208c4a23b5e=0D
      https://github.com/quicwg/base-drafts/commit/cf939cc1e1dd4c40e46856=
fb335c8208c4a23b5e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-23 (Thu, 23 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Servers don't have to enforce=0D
=0D
=0D
  Commit: 089f74a748bfa3dc057071e06bf997331d5ab6cc=0D
      https://github.com/quicwg/base-drafts/commit/089f74a748bfa3dc057071=
e06bf997331d5ab6cc=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-23 (Thu, 23 Apr 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: 7f887a92f9a235c7bfc3d89644ef1d241dfc88db=0D
      https://github.com/quicwg/base-drafts/commit/7f887a92f9a235c7bfc3d8=
9644ef1d241dfc88db=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-23 (Thu, 23 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  The peer only has 1 key, so send both=0D
=0D
Sending in multiple PN spaces on PTO is particularly useful when the peer=
 only has receive keys for 1 pn space, and the you don't know which.=0D
=0D
Fixes #3583=0D
=0D
=0D
  Commit: f4408896e46b394fd4a9b99824ef8f3a52b23ca3=0D
      https://github.com/quicwg/base-drafts/commit/f4408896e46b394fd4a9b9=
9824ef8f3a52b23ca3=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-23 (Thu, 23 Apr 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: 514e5b4b68f3558b35e38a5efba361d969d8d8ee=0D
      https://github.com/quicwg/base-drafts/commit/514e5b4b68f3558b35e38a=
5efba361d969d8d8ee=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Version greasing rewrite=0D
=0D
This section was a holdover from when we had real version negotiation,=0D=

so it assumed a bunch of actions that don't really apply in the current=0D=

document.=0D
=0D
This doesn't change what is permitted, but it reframes it a little.=0D
=0D
Closes #3013.=0D
=0D
=0D
  Commit: 1bba65d0d8de49c21c62909450e8685a5aeb4266=0D
      https://github.com/quicwg/base-drafts/commit/1bba65d0d8de49c21c6290=
9450e8685a5aeb4266=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Rationale for NEW_CONNECTION_ID processing order=0D
=0D
We already had something here, but I think that it missed the central=0D
reason, which is the combination of:=0D
=0D
* wanting to replace all connection IDs=0D
* having used the limit from active_connection_id_limit=0D
* wanting to ensure that there is >=3D 1 available connection IDs left=0D=

=0D
This phrasing isn't quite that explicit, but I think that it is clear=0D
enough.=0D
=0D
Closes #3422.=0D
=0D
=0D
  Commit: b41c848f281bda976192136c6281185808c5e021=0D
      https://github.com/quicwg/base-drafts/commit/b41c848f281bda97619213=
6c6281185808c5e021=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Define the use of generic TLS alerts=0D
=0D
This was already permitted by the transport document, but it was not=0D
adequately explained.  The example that tripped us up was ALPN, which=0D
has received a bit of attention here.=0D
=0D
Closes #3580.=0D
=0D
=0D
  Commit: 88bbc30af2f9d630fb059d39774b295153fa580c=0D
      https://github.com/quicwg/base-drafts/commit/88bbc30af2f9d630fb059d=
39774b295153fa580c=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Cite relevant section=0D
=0D
=0D
  Commit: 475242d0c9ca9e32113c90859748c7adf577fdfc=0D
      https://github.com/quicwg/base-drafts/commit/475242d0c9ca9e32113c90=
859748c7adf577fdfc=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Tweaks from review=0D
=0D
=0D
  Commit: cb3e9a4961fffdba7493a77b0db2d73f63f072ca=0D
      https://github.com/quicwg/base-drafts/commit/cb3e9a4961fffdba7493a7=
7b0db2d73f63f072ca=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarify anti-deadlock Handshake PTO=0D
=0D
This is what the pseudocode says, but I couldn't find anywhere in the tex=
t that clarified that if there were no ack-eliciting packets to arm PTO f=
rom, use Now().=0D
=0D
=0D
  Commit: 05c12786fd19607933556d87eb28bfe1111b6c27=0D
      https://github.com/quicwg/base-drafts/commit/05c12786fd19607933556d=
87eb28bfe1111b6c27=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: eac517cfa6e3e58dd1caf817ee2218513204b905=0D
      https://github.com/quicwg/base-drafts/commit/eac517cfa6e3e58dd1caf8=
17ee2218513204b905=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 8e68ce6266e405fd56b90753737d641be8e7ba50=0D
      https://github.com/quicwg/base-drafts/commit/8e68ce6266e405fd56b907=
53737d641be8e7ba50=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  DPLPMTUD fixes=0D
=0D
A few minor tweaks based on review of the latest DPLPMTUD draft.=0D
=0D
If I never have to type DPLPMTUD ever again, I'll be happy.=0D
=0D
Closes #3217.=0D
=0D
=0D
  Commit: 675d02f739735fbc387853e6bea102ec82013d58=0D
      https://github.com/quicwg/base-drafts/commit/675d02f739735fbc387853=
e6bea102ec82013d58=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 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-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix references=0D
=0D
Take the regex (note leading space):=0D
=0D
```=0D
 \(see([\n\s]+(?:(?:Section|Appendix)[\n\s]+\S+[\n\s]+of[\n\s]+)?(?:\{\{|=
\[)[^\}]+(?:\}\}|\]))\)\.=0D
```=0D
And replace with:=0D
```=0D
; see$1.=0D
```=0D
=0D
All mechanical, no manual fixups.=0D
=0D
=0D
  Commit: 86c3ad5a1b53e80e3d2c05155c87877166823118=0D
      https://github.com/quicwg/base-drafts/commit/86c3ad5a1b53e80e3d2c05=
155c87877166823118=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Manual fixes for -transport=0D
=0D
=0D
  Commit: 49983b1f93846c871fa0ee39147b310a5b1b5156=0D
      https://github.com/quicwg/base-drafts/commit/49983b1f93846c871fa0ee=
39147b310a5b1b5156=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Manual fixes for -http=0D
=0D
=0D
  Commit: cef47aeb28cab88c401968cc4039f6d262e0a7db=0D
      https://github.com/quicwg/base-drafts/commit/cef47aeb28cab88c401968=
cc4039f6d262e0a7db=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update pseudocode to not arm PTO..=0D
=0D
For ApplicationData until the handshake is complete.=0D
=0D
=0D
  Commit: 5faae5c78a75758cbc495374dd457f8abf3d0110=0D
      https://github.com/quicwg/base-drafts/commit/5faae5c78a75758cbc4953=
74dd457f8abf3d0110=0D
  Author: afrind <afrind@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  [qpack] Add comment explaining static table (#3576)=0D
=0D
* [qpack] Add comment explaining static table=0D
=0D
Fixes #3562=0D
=0D
* Feedback from Martin and Lucas=0D
=0D
=0D
  Commit: f53564576b1aac2aeb58abaf12e63c7b6c9ee91c=0D
      https://github.com/quicwg/base-drafts/commit/f53564576b1aac2aeb58ab=
af12e63c7b6c9ee91c=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Remove trailing spaces=0D
=0D
=0D
  Commit: d9ed15b2424498cfc8f593392e0971b92d75524f=0D
      https://github.com/quicwg/base-drafts/commit/d9ed15b2424498cfc8f593=
392e0971b92d75524f=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 681ade21279f5472630008c98c2a66ce930252d7=0D
      https://github.com/quicwg/base-drafts/commit/681ade21279f5472630008=
c98c2a66ce930252d7=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3599 from quicwg/version-greasing=0D
=0D
Version greasing rewrite=0D
=0D
=0D
  Commit: 88a2d691e8f4b25d6f969cf05de7bbfda29244f3=0D
      https://github.com/quicwg/base-drafts/commit/88a2d691e8f4b25d6f969c=
f05de7bbfda29244f3=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3597 from quicwg/ianswett-1-key=0D
=0D
The peer only has 1 key, so PTO both=0D
=0D
=0D
  Commit: 49476e60ba257b06730ede5bd93a8acb53eb484a=0D
      https://github.com/quicwg/base-drafts/commit/49476e60ba257b06730ede=
5bd93a8acb53eb484a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3600 from quicwg/cid-limit-flip=0D
=0D
Rationale for NEW_CONNECTION_ID processing order=0D
=0D
=0D
  Commit: 1c7e1332ad70abd26438c42825a003fbff341dd6=0D
      https://github.com/quicwg/base-drafts/commit/1c7e1332ad70abd26438c4=
2825a003fbff341dd6=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-04-28 (Tue, 28 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  MUST verify =3D> MUST NOT accept on fail=0D
=0D
=0D
  Commit: 948cb8eccab03b9b1405ab9a6b9bdc9331fcce40=0D
      https://github.com/quicwg/base-drafts/commit/948cb8eccab03b9b1405ab=
9a6b9bdc9331fcce40=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3588 from quicwg/spa-clarifications=0D
=0D
Clarifications for preferred_address=0D
=0D
=0D
  Commit: 5e6c5b4750c8300f625ae9539ca65f27a5824e0f=0D
      https://github.com/quicwg/base-drafts/commit/5e6c5b4750c8300f625ae9=
539ca65f27a5824e0f=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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
=0D
  Commit: e06a5420b9870f9cfe6450f1f1e2e655b76e3861=0D
      https://github.com/quicwg/base-drafts/commit/e06a5420b9870f9cfe6450=
f1f1e2e655b76e3861=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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
=0D
  Commit: 1c5b3a9454c5b3e6d183e93d57ce5ce980fcd604=0D
      https://github.com/quicwg/base-drafts/commit/1c5b3a9454c5b3e6d183e9=
3d57ce5ce980fcd604=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 0b4044e328abb21d5d1fb5055209721b7daf4db5=0D
      https://github.com/quicwg/base-drafts/commit/0b4044e328abb21d5d1fb5=
055209721b7daf4db5=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 19e9d5c5cdd9e50d524c6c4fc7c9ef77dce667b8=0D
      https://github.com/quicwg/base-drafts/commit/19e9d5c5cdd9e50d524c6c=
4fc7c9ef77dce667b8=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 729fcb04e76d59f508d2c853d270065ded6e02cd=0D
      https://github.com/quicwg/base-drafts/commit/729fcb04e76d59f508d2c8=
53d270065ded6e02cd=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 2c874dc1c477a7d8f07d5ad232251c73069f0a97=0D
      https://github.com/quicwg/base-drafts/commit/2c874dc1c477a7d8f07d5a=
d232251c73069f0a97=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  More explicit 'probe for the MTU'=0D
=0D
=0D
  Commit: 6567ba811900207808bd427f892ec12de5adf32b=0D
      https://github.com/quicwg/base-drafts/commit/6567ba811900207808bd42=
7f892ec12de5adf32b=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 1368ccebe589a4088b5e86a579d1d4b5818a002d=0D
      https://github.com/quicwg/base-drafts/commit/1368ccebe589a4088b5e86=
a579d1d4b5818a002d=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-28 (Tue, 28 Apr 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: 7d5089a754a6cecce519d6c20325ec0adaf65f2e=0D
      https://github.com/quicwg/base-drafts/commit/7d5089a754a6cecce519d6=
c20325ec0adaf65f2e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Use a different example=0D
=0D
=0D
  Commit: 3b25faf7fc35bcabc7e67569b94ac7901aefedd8=0D
      https://github.com/quicwg/base-drafts/commit/3b25faf7fc35bcabc7e675=
69b94ac7901aefedd8=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Ian's suggestions=0D
=0D
Co-Authored-By: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: da3ad003f45cd41cf802ac9526de3e4fd7f924ea=0D
      https://github.com/quicwg/base-drafts/commit/da3ad003f45cd41cf802ac=
9526de3e4fd7f924ea=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3581 from quicwg/keep-acknowledged=0D
=0D
More detail regarding dropping of ACK Ranges=0D
=0D
=0D
  Commit: bcda6c227d2699cb6f161154d3d1ecf2de79ab1d=0D
      https://github.com/quicwg/base-drafts/commit/bcda6c227d2699cb6f1611=
54d3d1ecf2de79ab1d=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Alternative for simple routing section=0D
=0D
A follow-up for #3536.=0D
=0D
=0D
  Commit: 5fd61877c43e2f7c4788f084c177aa658a1fed46=0D
      https://github.com/quicwg/base-drafts/commit/5fd61877c43e2f7c4788f0=
84c177aa658a1fed46=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-qpack.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Scrub for backticks=0D
=0D
This doesn't do qpack because qpack is weird and needs a lot more work.=0D=

=0D
The places where I kept backticks are for the inline formulae that were=0D=

used for the reserved codepoints.  That seemed like it was worth quoting=0D=

somehow still.  I also kept backticks for references to variables in=0D
examples.=0D
=0D
However, this last principle really hurts in qpack and I don't know what=0D=

to do about that.=0D
=0D
Closes #3609 (we'll need another issue for qpack).=0D
=0D
=0D
  Commit: cb6d26caf615a6fd3e036cc54ac1b881fc6504fd=0D
      https://github.com/quicwg/base-drafts/commit/cb6d26caf615a6fd3e036c=
c54ac1b881fc6504fd=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Helpful tweak to existing text=0D
=0D
=0D
  Commit: 3b2a284675735e2be6b8fe97d977f12ce7df57d2=0D
      https://github.com/quicwg/base-drafts/commit/3b2a284675735e2be6b8fe=
97d977f12ce7df57d2=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Use a list for TLS contributors too=0D
=0D
=0D
  Commit: 36cac20525c1aefd0c6de9c004866c47261e30a1=0D
      https://github.com/quicwg/base-drafts/commit/36cac20525c1aefd0c6de9=
c004866c47261e30a1=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-04-29 (Wed, 29 Apr 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: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 601c8fe1cd1f0dc4c9a4c35c386b566c7a989a89=0D
      https://github.com/quicwg/base-drafts/commit/601c8fe1cd1f0dc4c9a4c3=
5c386b566c7a989a89=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-04-29 (Wed, 29 Apr 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: 743702ca376c3ac2354a27820d75101111cfc857=0D
      https://github.com/quicwg/base-drafts/commit/743702ca376c3ac2354a27=
820d75101111cfc857=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-04-29 (Wed, 29 Apr 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: cedaac6a30fc82ff2c946af54e13dbb8924aa3fd=0D
      https://github.com/quicwg/base-drafts/commit/cedaac6a30fc82ff2c946a=
f54e13dbb8924aa3fd=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Bullet points, now that we can=0D
=0D
=0D
  Commit: f254feb0490fb248aa0a4ccd6351072e8e9206b6=0D
      https://github.com/quicwg/base-drafts/commit/f254feb0490fb248aa0a4c=
cd6351072e8e9206b6=0D
  Author: Bence B=C3=A9ky <bnc@google.com>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarify reserved values.=0D
=0D
Clarify reserved values for stream types, settings identifiers, frame=0D
types, and error codes.=0D
=0D
0x1f * N + 0x21 for the value of N =3D -1 is 0x02.  Literal interpretatio=
n=0D
of the current text includes this as a reserved value.  The=0D
parenthetical examples given in Section 11.2 make it clear that this was=0D=

not the intention, rendering this PR editorial.=0D
=0D
The main motivation of this PR is not that the current text is=0D
inconsistent, but that parenthetical examples from 11.2 are necessary to=0D=

correctly interpret the definitions in sections 6.2.3, 7.2.4.1, 7.2.8,=0D=

and 8.1.=0D
=0D
Alternative wordings could be:=0D
"0x1f * N + 0x21 for N =3D 0, 1, 2, ..."=0D
"0x1f * N + 0x02 for positive integer values of N"=0D
"0x1f * N + 0x02 for N =3D 1, 2, 3, ..."=0D
"0x21, 0x21 + 0x1f, 0x21 + 2 * 0x1f, ..."=0D
"a value of at least 0x21 with a remainder of 0x02 modulo 0x1f"=0D
"a value of at least 0x21 that is congruent to 0x21 modulo 0x1f"=0D
none of which is better than what this PR proposes.=0D
=0D
=0D
  Commit: d1644e737c1bb358111cf490befa3246e13bad7a=0D
      https://github.com/quicwg/base-drafts/commit/d1644e737c1bb358111cf4=
90befa3246e13bad7a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-30 (Thu, 30 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Revert cases of two different things=0D
=0D
Co-Authored-By: Mike Bishop <mbishop@evequefou.be>=0D
=0D
=0D
  Commit: 568bd282754328ce0be2939ca1f4da9448201506=0D
      https://github.com/quicwg/base-drafts/commit/568bd282754328ce0be293=
9ca1f4da9448201506=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-30 (Thu, 30 Apr 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-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3607 from quicwg/semicolons=0D
=0D
Moar semicolons=0D
=0D
=0D
  Commit: 83cc29e72fc4f4ed10871ceabde7b1dae906c58e=0D
      https://github.com/quicwg/base-drafts/commit/83cc29e72fc4f4ed10871c=
eabde7b1dae906c58e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-04-30 (Thu, 30 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3536 from martinduke/5tuple-routing=0D
=0D
5tuple routing=0D
=0D
=0D
  Commit: 1bd9afb85bd769cd6f26fc366795841a60aa2daa=0D
      https://github.com/quicwg/base-drafts/commit/1bd9afb85bd769cd6f26fc=
366795841a60aa2daa=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-04-29 (Wed, 29 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix circular reference to kInitialRtt=0D
=0D
=0D
  Commit: 87df8ee7dba9a546a6f8b1ae118eb1d520de55df=0D
      https://github.com/quicwg/base-drafts/commit/87df8ee7dba9a546a6f8b1=
ae118eb1d520de55df=0D
  Author: Julian Reschke <julian.reschke@gmx.de>=0D
  Date:   2020-04-30 (Thu, 30 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  recovery: fix broken reference to TLS, "Discarding Initial Keys"=0D
=0D
=0D
  Commit: 4b6baa3648838bf89f944f9a6d4accebca9f525a=0D
      https://github.com/quicwg/base-drafts/commit/4b6baa3648838bf89f944f=
9a6d4accebca9f525a=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-04-30 (Thu, 30 Apr 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
Co-authored-by: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: f62641bda28c5482c3243af27e84adcc7ebbe4b3=0D
      https://github.com/quicwg/base-drafts/commit/f62641bda28c5482c3243a=
f27e84adcc7ebbe4b3=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-30 (Thu, 30 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3614 from martinduke/patch-3=0D
=0D
Fix circular reference to kInitialRtt=0D
=0D
=0D
  Commit: 4d3e918fee5ed3468f7a4ee1e67c3f05bbe0236f=0D
      https://github.com/quicwg/base-drafts/commit/4d3e918fee5ed3468f7a4e=
e1e67c3f05bbe0236f=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-04-30 (Thu, 30 Apr 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  QUIC could see more reordering=0D
=0D
=0D
  Commit: 266084226a089ee1df00ebc796e045b0c6418a46=0D
      https://github.com/quicwg/base-drafts/commit/266084226a089ee1df00eb=
c796e045b0c6418a46=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Quoting in recovery=0D
=0D
This fixes some of the quoting issues that I discovered reading the=0D
spec.=0D
=0D
=0D
  Commit: f39b1b711e1934b77984de0d9d1120396c214592=0D
      https://github.com/quicwg/base-drafts/commit/f39b1b711e1934b77984de=
0d9d1120396c214592=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Use Section not section=0D
=0D
=0D
  Commit: bca51a97cd4373c5256fac9128f7523a955c6761=0D
      https://github.com/quicwg/base-drafts/commit/bca51a97cd4373c5256fac=
9128f7523a955c6761=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  a/that=0D
=0D
Co-authored-by: Mike Bishop <mbishop@evequefou.be>=0D
=0D
=0D
  Commit: 68f81c2b8487a115a9ca30928685bb92b86a2c59=0D
      https://github.com/quicwg/base-drafts/commit/68f81c2b8487a115a9ca30=
928685bb92b86a2c59=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3615 from quicwg/simple-routing-rephrase=0D
=0D
Alternative for simple routing section=0D
=0D
=0D
  Commit: f001162b89055fad7e837b6f2847277ff0f20177=0D
      https://github.com/quicwg/base-drafts/commit/f001162b89055fad7e837b=
6f2847277ff0f20177=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  A pacing algorithm=0D
=0D
This isn't code, because I don't think we need to do any more than point=0D=

at the leaky bucket algorithm, but it does provide more concrete advice=0D=

than we've had.=0D
=0D
It removes the reference to fqdisc as that isn't especially helpful, as=0D=

the original issue observes.=0D
=0D
Closes #3122.=0D
=0D
=0D
  Commit: 561df07e9b817460e4006266af1e0acee19c0f8a=0D
      https://github.com/quicwg/base-drafts/commit/561df07e9b817460e40062=
66af1e0acee19c0f8a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Forgot to include smoothed_rtt in the description=0D
=0D
=0D
  Commit: b192a052bf006dc2689ea526cc80746ab409aff1=0D
      https://github.com/quicwg/base-drafts/commit/b192a052bf006dc2689ea5=
26cc80746ab409aff1=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3606 from quicwg/dplpmtudtdtd=0D
=0D
DPLPMTUD fixes=0D
=0D
=0D
  Commit: dee37615ffed31ac9ff2cd9061ca0e79f866a0ee=0D
      https://github.com/quicwg/base-drafts/commit/dee37615ffed31ac9ff2cd=
9061ca0e79f866a0ee=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3611 from quicwg/transport/contributor_bullets=0D
=0D
Bullet points in Transport Contributors=0D
=0D
=0D
  Commit: a4b888eab05865e39b40e240bb3abf962f95de9b=0D
      https://github.com/quicwg/base-drafts/commit/a4b888eab05865e39b40e2=
40bb3abf962f95de9b=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Reword rationale somewhat=0D
=0D
=0D
  Commit: d50128221a55d34c05069d4aadd6e2a726e1c9ba=0D
      https://github.com/quicwg/base-drafts/commit/d50128221a55d34c05069d=
4aadd6e2a726e1c9ba=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-01 (Fri, 01 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3604 from quicwg/ianswett-pto-handshake-complete=0D=

=0D
Update pseudocode to not arm PTO..=0D
=0D
=0D
  Commit: 7c19197ca32011ba80fdfbdb12ce330133fe6bde=0D
      https://github.com/quicwg/base-drafts/commit/7c19197ca32011ba80fdfb=
db12ce330133fe6bde=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-04 (Mon, 04 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3621 from quicwg/list-tls-contribs=0D
=0D
Use a list for TLS contributors too=0D
=0D
=0D
  Commit: 66d56893377e52727d620ceb305cd33dc97b3381=0D
      https://github.com/quicwg/base-drafts/commit/66d56893377e52727d620c=
eb305cd33dc97b3381=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-04 (Mon, 04 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3618 from reschke/patch-28=0D
=0D
recovery: fix broken reference to TLS, "Discarding Initial Keys"=0D
=0D
=0D
  Commit: fd1142b09af589b871fb7b84745c7e4c03e80f22=0D
      https://github.com/quicwg/base-drafts/commit/fd1142b09af589b871fb7b=
84745c7e4c03e80f22=0D
  Author: Bence B=C3=A9ky <bnc@google.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  [HTTP/3] Merge two redundant paragraphs on frame ordering.=0D
=0D
=0D
  Commit: 6da585a501ddb3a451b1905db42165402dfc3d27=0D
      https://github.com/quicwg/base-drafts/commit/6da585a501ddb3a451b190=
5db42165402dfc3d27=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-06 (Wed, 06 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-qpack.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3617 from quicwg/backticks=0D
=0D
Scrub for backticks=0D
=0D
=0D
  Commit: 6a1ea10afffb0c1b8047596bc0198619522969c9=0D
      https://github.com/quicwg/base-drafts/commit/6a1ea10afffb0c1b804759=
6bc0198619522969c9=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Initial Contributors=0D
=0D
=0D
  Commit: 1e67d0fb1c81085c81ab5812621111608d824cdf=0D
      https://github.com/quicwg/base-drafts/commit/1e67d0fb1c81085c81ab58=
12621111608d824cdf=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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: b32ab8c350ac15b92b520f7a3b15f7415b22083b=0D
      https://github.com/quicwg/base-drafts/commit/b32ab8c350ac15b92b520f=
7a3b15f7415b22083b=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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: c6a32d20a9d9a05779076434da2884773cf8aefe=0D
      https://github.com/quicwg/base-drafts/commit/c6a32d20a9d9a057790764=
34da2884773cf8aefe=0D
  Author: Lucas Pardue <lucaspardue.24.7@gmail.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  editorial advice for h2<->h3 error propagation (#3602)=0D
=0D
* editorial advice for h2<->h3 error propagation=0D
=0D
* Mike's feedback: invert the advice=0D
=0D
=0D
  Commit: a09979ec646c0bad69f079fb78ed5c8dd1084899=0D
      https://github.com/quicwg/base-drafts/commit/a09979ec646c0bad69f079=
fb78ed5c8dd1084899=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3603 from quicwg/ianswett-deadlock-handshake-pto=0D=

=0D
Clarify anti-deadlock Handshake PTO=0D
=0D
=0D
  Commit: 58a2fbbc75252ee3c8503ead31e5146e5f74349b=0D
      https://github.com/quicwg/base-drafts/commit/58a2fbbc75252ee3c8503e=
ad31e5146e5f74349b=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-06 (Wed, 06 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3601 from quicwg/alpn-generic=0D
=0D
Define the use of generic TLS alerts=0D
=0D
=0D
  Commit: b270451746cc6ae9655ceb30281de6bf6bbdb628=0D
      https://github.com/quicwg/base-drafts/commit/b270451746cc6ae9655ceb=
30281de6bf6bbdb628=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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
Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 9f773931b7c57a232ef9a9814fb664832eb7436e=0D
      https://github.com/quicwg/base-drafts/commit/9f773931b7c57a232ef9a9=
814fb664832eb7436e=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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
Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: c5b9e72880734f6e9e54bcbbd0339d72bdded5bc=0D
      https://github.com/quicwg/base-drafts/commit/c5b9e72880734f6e9e54bc=
bbd0339d72bdded5bc=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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: 9a69f882ff119ab34608b3a750ddc7f4639f3ec1=0D
      https://github.com/quicwg/base-drafts/commit/9a69f882ff119ab34608b3=
a750ddc7f4639f3ec1=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 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
Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 1f66975cd3f9cdc5c0fae57376f59177701d8d97=0D
      https://github.com/quicwg/base-drafts/commit/1f66975cd3f9cdc5c0fae5=
7376f59177701d8d97=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3586 from quicwg/ianswett-min-cwnd=0D
=0D
Why min CWND of 2 instead of 1=0D
=0D
=0D
  Commit: 4e9c4ee480862086ae05778160b23c5b27f09f04=0D
      https://github.com/quicwg/base-drafts/commit/4e9c4ee480862086ae0577=
8160b23c5b27f09f04=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3629 from quicwg/section-ref-titlecase=0D
=0D
Use Section not section=0D
=0D
=0D
  Commit: 6c90af6ebd271f09f740ad49c396ffd38dc72076=0D
      https://github.com/quicwg/base-drafts/commit/6c90af6ebd271f09f740ad=
49c396ffd38dc72076=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-05 (Tue, 05 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3628 from quicwg/recovery-quoting=0D
=0D
Quoting in recovery=0D
=0D
=0D
  Commit: c5063a3cc6755c095376693641862a1a75192527=0D
      https://github.com/quicwg/base-drafts/commit/c5063a3cc6755c09537669=
3641862a1a75192527=0D
  Author: Alan Frindell <afrind@fb.com>=0D
  Date:   2020-05-06 (Wed, 06 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  [qpack] Remove backticks=0D
=0D
The new principle is to only use backticks when referring to variables in=
 pseudocode.  There were two such instances that remain.=0D
=0D
Fixes #3626=0D
=0D
=0D
  Commit: dcf603b4707cce7ec9f92df72a2f5b6026560860=0D
      https://github.com/quicwg/base-drafts/commit/dcf603b4707cce7ec9f92d=
f72a2f5b6026560860=0D
  Author: afrind <afrind@users.noreply.github.com>=0D
  Date:   2020-05-06 (Wed, 06 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  QPACK security considerations (#3575)=0D
=0D
* QPACK security considerations=0D
=0D
Behold=0D
=0D
Fixes: 1737=0D
=0D
* Fix lint=0D
=0D
* Feedback from Martin and Lucas=0D
=0D
* Apply suggestions from code review=0D
=0D
Feedback from Mike=0D
=0D
Co-authored-by: Mike Bishop <mbishop@evequefou.be>=0D
=0D
* Wordsmithing suggestion from Bence=0D
=0D
Co-authored-by: Mike Bishop <mbishop@evequefou.be>=0D
=0D
=0D
  Commit: 32b432f443270261c5dc6b58a1519198152102ca=0D
      https://github.com/quicwg/base-drafts/commit/32b432f443270261c5dc6b=
58a1519198152102ca=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-05-07 (Thu, 07 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    R workflow.xml=0D
=0D
  Log Message:=0D
  -----------=0D
  A missed commit=0D
=0D
=0D
  Commit: 1b967adee968825c2f230d3c20c69118f70c4778=0D
      https://github.com/quicwg/base-drafts/commit/1b967adee968825c2f230d=
3c20c69118f70c4778=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-05-07 (Thu, 07 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-invariants.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Text/figure consistency=0D
=0D
=0D
  Commit: 5ddd5814b6e3e839a16d1ef960b22694e67eae4a=0D
      https://github.com/quicwg/base-drafts/commit/5ddd5814b6e3e839a16d1e=
f960b22694e67eae4a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-08 (Fri, 08 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-invariants.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Math, and no more X.=0D
=0D
=0D
  Commit: 103cfce74f5da885d97b95e6ea46967821068501=0D
      https://github.com/quicwg/base-drafts/commit/103cfce74f5da885d97b95=
e6ea46967821068501=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-08 (Fri, 08 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-invariants.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3636 from quicwg/invariants/consistency=0D
=0D
Text/figure consistency=0D
=0D
=0D
  Commit: 8411fae236d9ec1598c04e976e3ab90a5525129c=0D
      https://github.com/quicwg/base-drafts/commit/8411fae236d9ec1598c04e=
976e3ab90a5525129c=0D
  Author: Kazu Yamamoto <kazu@iij.ad.jp>=0D
  Date:   2020-05-08 (Fri, 08 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  redrawing handshake figures in ascending encryption-level order.=0D
=0D
=0D
  Commit: 20d77df1ddb05985570b2a5df88423046a67740b=0D
      https://github.com/quicwg/base-drafts/commit/20d77df1ddb05985570b2a=
5df88423046a67740b=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-08 (Fri, 08 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3637 from kazu-yamamoto/fix-handshake-figures=0D
=0D
redrawing handshake figures in ascending encryption-level order.=0D
=0D
=0D
  Commit: 149475babfed6f9f739460dee7ff953bd43c0ad9=0D
      https://github.com/quicwg/base-drafts/commit/149475babfed6f9f739460=
dee7ff953bd43c0ad9=0D
  Author: Nick Harper <nharper@chromium.org>=0D
  Date:   2020-05-08 (Fri, 08 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarify issues instead of uses 0-length CID=0D
=0D
=0D
  Commit: 010574ee63c0cc9af3ed84758e91e13beffe55bf=0D
      https://github.com/quicwg/base-drafts/commit/010574ee63c0cc9af3ed84=
758e91e13beffe55bf=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-10 (Sun, 10 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Limit sending by the anti-amplification factor=0D
=0D
Fixes #3639=0D
=0D
=0D
  Commit: c8fa3f8b1a97d520b177470fe2f57451c875c91c=0D
      https://github.com/quicwg/base-drafts/commit/c8fa3f8b1a97d520b17747=
0fe2f57451c875c91c=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-10 (Sun, 10 May 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: 3a633d8b22eb2a850b4fed0d7a1e339186885830=0D
      https://github.com/quicwg/base-drafts/commit/3a633d8b22eb2a850b4fed=
0d7a1e339186885830=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-11 (Mon, 11 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  reference legacy_session_id directly=0D
=0D
Co-authored-by: ekr <ekr@rtfm.com>=0D
=0D
=0D
  Commit: 6a4c95ef0487b3dcfa012330590c6fb1e168c670=0D
      https://github.com/quicwg/base-drafts/commit/6a4c95ef0487b3dcfa0123=
30590c6fb1e168c670=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-11 (Mon, 11 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  You can't carry CCS anyway=0D
=0D
=0D
  Commit: d29840a2953c9f87abbe8c4838b58934ee46de9a=0D
      https://github.com/quicwg/base-drafts/commit/d29840a2953c9f87abbe8c=
4838b58934ee46de9a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-11 (Mon, 11 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  CIDs are requested in this context=0D
=0D
Co-authored-by: ekr <ekr@rtfm.com>=0D
=0D
=0D
  Commit: b400f0946ee8770b9432ae6f38ca80b479bd17a7=0D
      https://github.com/quicwg/base-drafts/commit/b400f0946ee8770b9432ae=
6f38ca80b479bd17a7=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-11 (Mon, 11 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  reflow=0D
=0D
=0D
  Commit: e30cf5fc52da2f7958901fbdf5bcbec920a60d71=0D
      https://github.com/quicwg/base-drafts/commit/e30cf5fc52da2f7958901f=
bdf5bcbec920a60d71=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-11 (Mon, 11 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Editorial comments thanks to @DavidSchinazi=0D
=0D
There are a bunch of things here, but mostly this is just a=0D
transcription of the helpful suggestions.=0D
=0D
I have also renamed the parameters.=0D
=0D
=0D
  Commit: 017c103440f89092773ab11edd6529972448f2bf=0D
      https://github.com/quicwg/base-drafts/commit/017c103440f89092773ab1=
1edd6529972448f2bf=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-05-11 (Mon, 11 May 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: ekr <ekr@rtfm.com>=0D
=0D
=0D
  Commit: 5b9205c5c06f3b3a06dde340d9418d81f9e64a68=0D
      https://github.com/quicwg/base-drafts/commit/5b9205c5c06f3b3a06dde3=
40d9418d81f9e64a68=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-05-11 (Mon, 11 May 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: 51e52b27a79adc4f85472fcc30cd5de04b28b356=0D
      https://github.com/quicwg/base-drafts/commit/51e52b27a79adc4f85472f=
cc30cd5de04b28b356=0D
  Author: Martin Duke <martin.h.duke@gmail.com>=0D
  Date:   2020-05-11 (Mon, 11 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  MT's suggestion for ekr=0D
=0D
=0D
  Commit: ff574d568b039e4b4e3f691a0d88e2d2ad18a3e9=0D
      https://github.com/quicwg/base-drafts/commit/ff574d568b039e4b4e3f69=
1a0d88e2d2ad18a3e9=0D
  Author: Martin Duke <martin.h.duke@gmail.com>=0D
  Date:   2020-05-11 (Mon, 11 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  typos/whitespace=0D
=0D
=0D
  Commit: cc13fc68144a01d3b30c8fb45dba03ae7bbadb4b=0D
      https://github.com/quicwg/base-drafts/commit/cc13fc68144a01d3b30c8f=
b45dba03ae7bbadb4b=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-05-11 (Mon, 11 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-invariants.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  VN, too=0D
=0D
=0D
  Commit: 52242c6f15c3d8c7f69a9f765b17c588788aaa05=0D
      https://github.com/quicwg/base-drafts/commit/52242c6f15c3d8c7f69a9f=
765b17c588788aaa05=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-05-11 (Mon, 11 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Minor errors=0D
=0D
=0D
  Commit: a77915f2c89916a5ec38844ace65dad1900a1961=0D
      https://github.com/quicwg/base-drafts/commit/a77915f2c89916a5ec3884=
4ace65dad1900a1961=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-invariants.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3641 from quicwg/vn-consistency=0D
=0D
Consistency for VN, too=0D
=0D
=0D
  Commit: cc6e8b75fa9c4b72f1d95b1303014760318caebb=0D
      https://github.com/quicwg/base-drafts/commit/cc6e8b75fa9c4b72f1d95b=
1303014760318caebb=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3642 from quicwg/transport/handshake-tokens=0D
=0D
Minor errors in new diagrams=0D
=0D
=0D
  Commit: 442f5774a16899063d2f3fbae6c46802a6ec86b9=0D
      https://github.com/quicwg/base-drafts/commit/442f5774a16899063d2f3f=
bae6c46802a6ec86b9=0D
  Author: martinduke <martin.h.duke@gmail.com>=0D
  Date:   2020-05-11 (Mon, 11 May 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: ekr <ekr@rtfm.com>=0D
=0D
=0D
  Commit: 81bcdb67d85d953aca7ae378b1f2e4c6a4744578=0D
      https://github.com/quicwg/base-drafts/commit/81bcdb67d85d953aca7ae3=
78b1f2e4c6a4744578=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-invariants.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 workflow.xml=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge branch 'master' into authenticate-hs-cid=0D
=0D
=0D
  Commit: 740cd920d57433273a5dbc74b7fb9a276f6c84bc=0D
      https://github.com/quicwg/base-drafts/commit/740cd920d57433273a5dbc=
74b7fb9a276f6c84bc=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Add a picture=0D
=0D
This new figure shows the complete set of messages that determine the=0D
connection ID that each peer uses.  The explanation describes how the=0D
connection IDs in those messages are included in transport parameters.=0D=

=0D
Hopefully this aids in understanding how this is put together.  It's not=0D=

complicated, but it's not necessarily clear from reading a set of rules=0D=

that this is the case.=0D
=0D
=0D
  Commit: 6c046207932beb402d293fc5b2c37180995e0dba=0D
      https://github.com/quicwg/base-drafts/commit/6c046207932beb402d293f=
c5b2c37180995e0dba=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-invariants.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge branch 'master' into authenticate-hs-cid=0D
=0D
=0D
  Commit: b61358a381f7f6ce19f2432b500453aefa1ae257=0D
      https://github.com/quicwg/base-drafts/commit/b61358a381f7f6ce19f243=
2b500453aefa1ae257=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Exception for Retire Prior To=0D
=0D
The rules for the active connection ID limit were such that the brief=0D
bump that NEW_CONNECTION_ID + Retire Prior To could add was not=0D
permitted.  Strictly speaking, if you requested retirement, the=0D
connection IDs that you requested be retired are still active until you=0D=

receive a RETIRE_CONNECTION_ID frame.  That means that you were=0D
technically violating this MUST in the spec.  Adding an exception for=0D
this case was the best way I could see to fix this.=0D
=0D
The other was to change the definition of "active connection ID".  I=0D
tried that and, while it was a smaller change, it made the definition=0D
less crisp.  This approach seems best.=0D
=0D
=0D
  Commit: f7a9c3b3bb78485bc65476b894306899f70d8205=0D
      https://github.com/quicwg/base-drafts/commit/f7a9c3b3bb78485bc65476=
b894306899f70d8205=0D
  Author: Eric Kinnear <ekinnear@apple.com>=0D
  Date:   2020-05-11 (Mon, 11 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Refer to addresses instead of network paths=0D
Reword exception that allows continuing to use the same CID when the peer=
 does not change=0D
=0D
=0D
  Commit: 6ae7f18bfb4052e352d91c2f95715867b41d2582=0D
      https://github.com/quicwg/base-drafts/commit/6ae7f18bfb4052e352d91c=
2f95715867b41d2582=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Use a more generic reference=0D
=0D
=0D
  Commit: 7c61e509e4aa78475f3db55845d4082669dd8af6=0D
      https://github.com/quicwg/base-drafts/commit/7c61e509e4aa78475f3db5=
5845d4082669dd8af6=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  One more semicolon=0D
=0D
=0D
  Commit: 96b9bc212447cc41396e55dd428e202c8671b0e3=0D
      https://github.com/quicwg/base-drafts/commit/96b9bc212447cc41396e55=
dd428e202c8671b0e3=0D
  Author: Benjamin Saunders <ben.e.saunders@gmail.com>=0D
  Date:   2020-05-11 (Mon, 11 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Restore missing Length fields in long packet headers=0D
=0D
=0D
  Commit: 821dff86b0f2fef5888bd8814e7673e686f7a822=0D
      https://github.com/quicwg/base-drafts/commit/821dff86b0f2fef5888bd8=
814e7673e686f7a822=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3645 from Ralith/restore-long-length=0D
=0D
Restore missing Length fields in long packet headers=0D
=0D
=0D
  Commit: fee4020ce6d9aaa9bbee74a51424701ca98bbf44=0D
      https://github.com/quicwg/base-drafts/commit/fee4020ce6d9aaa9bbee74=
a51424701ca98bbf44=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Correct a few more errors=0D
=0D
=0D
  Commit: 27dfb6973f76c27fee090c001b6f82427b463806=0D
      https://github.com/quicwg/base-drafts/commit/27dfb6973f76c27fee090c=
001b6f82427b463806=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fewer words=0D
=0D
=0D
  Commit: fc03421115f6786cda02b9d21dfd44264091ecde=0D
      https://github.com/quicwg/base-drafts/commit/fc03421115f6786cda02b9=
d21dfd44264091ecde=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Another one=0D
=0D
=0D
  Commit: 47424338c35fc15cc7e022f8077887b45a7ade6c=0D
      https://github.com/quicwg/base-drafts/commit/47424338c35fc15cc7e022=
f8077887b45a7ade6c=0D
  Author: Martin Duke <martin.h.duke@gmail.com>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  ekr's suggestions=0D
=0D
=0D
  Commit: ee4343f39007ed49c2bdd1829bb3190ebe08eea1=0D
      https://github.com/quicwg/base-drafts/commit/ee4343f39007ed49c2bdd1=
829bb3190ebe08eea1=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3646 from quicwg/transport/another-one=0D
=0D
Another diagram discrepancy=0D
=0D
=0D
  Commit: bfc26350519a349fec1db57495fc9a9e9fa33eb7=0D
      https://github.com/quicwg/base-drafts/commit/bfc26350519a349fec1db5=
7495fc9a9e9fa33eb7=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3644 from quicwg/more-semicolon=0D
=0D
One more semicolon=0D
=0D
=0D
  Commit: 3ea9d07054dd5e39c247bca0505dd34c188afbea=0D
      https://github.com/quicwg/base-drafts/commit/3ea9d07054dd5e39c247bc=
a0505dd34c188afbea=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Restore missing period on rttvar definition=0D
=0D
=0D
  Commit: b3a870e491a56287c3f1b861bd60581de53e8e87=0D
      https://github.com/quicwg/base-drafts/commit/b3a870e491a56287c3f1b8=
61bd60581de53e8e87=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3647 from quicwg/period-rttvar=0D
=0D
Restore missing period on rttvar definition=0D
=0D
=0D
  Commit: 1dc5a83ad1f6bdd68c177dfa2683b0313e63db51=0D
      https://github.com/quicwg/base-drafts/commit/1dc5a83ad1f6bdd68c177d=
fa2683b0313e63db51=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  s/alarm/timer/=0D
=0D
=0D
  Commit: b776f4d79e077017b718671b8362650a0b8e62bd=0D
      https://github.com/quicwg/base-drafts/commit/b776f4d79e077017b71867=
1b8362650a0b8e62bd=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Using suggestions to edit=0D
=0D
=0D
  Commit: 37eaf7e767121467227f3fbade7329a7d7b264f3=0D
      https://github.com/quicwg/base-drafts/commit/37eaf7e767121467227f3f=
bade7329a7d7b264f3=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Add a blank line=0D
=0D
=0D
  Commit: 444638c184f103962546695f78dd30adaaaeabe3=0D
      https://github.com/quicwg/base-drafts/commit/444638c184f10396254669=
5f78dd30adaaaeabe3=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-12 (Tue, 12 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3650 from quicwg/alarm-timer=0D
=0D
s/alarm/timer/=0D
=0D
=0D
  Commit: 75791409cdeafdfdb429024dc1ced0ed104f8648=0D
      https://github.com/quicwg/base-drafts/commit/75791409cdeafdfdb42902=
4dc1ced0ed104f8648=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Shorter figure line=0D
=0D
=0D
  Commit: d081726ce4ab18213d9cd65fe19cbb82ef2e52e0=0D
      https://github.com/quicwg/base-drafts/commit/d081726ce4ab18213d9cd6=
5fe19cbb82ef2e52e0=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Include max_udp_payload_size in packet size discussion=0D
=0D
This isn't a complete dissertation on how clients might choose to use=0D
larger packet sizes.  In particular, it doesn't capture the whole=0D
discussion about starting at a higher size being a way to raise the 1280=0D=

to something higher, with the requisite cost being that you might have=0D=

failures.  Deciding to put that in would be much harder.=0D
=0D
What this does is just say that the transport parameter acts as a=0D
further limit on packet size and that you won't know that prior to=0D
knowing.  That means that you are guessing about the network path AND=0D
your peer when you decide to send >1200 (to be fair, the former really=0D=

only applies for IPv4, and it's not much of a guess).=0D
=0D
Closes #3638.=0D
=0D
=0D
  Commit: 8c7e6033f60b5064780338971de611723f3c1c09=0D
      https://github.com/quicwg/base-drafts/commit/8c7e6033f60b5064780338=
971de611723f3c1c09=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Attempt at rewording the NEW_CONNECITON_ID/Retire Prior To validation r=
ule=0D
=0D
=0D
  Commit: abcb20da2d769c0ffe9eaeea94b10730d61e82fb=0D
      https://github.com/quicwg/base-drafts/commit/abcb20da2d769c0ffe9eae=
ea94b10730d61e82fb=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M .lint.py=0D
=0D
  Log Message:=0D
  -----------=0D
  Convert command-line arguments to integers=0D
=0D
Then black did its thing.=0D
=0D
=0D
  Commit: 48825d06241bbed760a5d9e35ff60a43fbb8457c=0D
      https://github.com/quicwg/base-drafts/commit/48825d06241bbed760a5d9=
e35ff60a43fbb8457c=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3640 from quicwg/ianswett-anti-amplification=0D
=0D
Limit sending by the anti-amplification factor=0D
=0D
=0D
  Commit: 4444017fe3f1f1eb1baf0b00e545b8913be94c7c=0D
      https://github.com/quicwg/base-drafts/commit/4444017fe3f1f1eb1baf0b=
00e545b8913be94c7c=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Add OnPacketReceived to pseudocode=0D
=0D
Pseudocode for re-arming the PTO when "If no additional data can be sent,=
 the server's PTO timer MUST NOT be armed until datagrams have been recei=
ved from the client, because packets sent on PTO count against the anti-a=
mplification limit. "=0D
=0D
=0D
  Commit: 2a479f634819f531129ab49ae871f23ed9e13940=0D
      https://github.com/quicwg/base-drafts/commit/2a479f634819f531129ab4=
9ae871f23ed9e13940=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-13 (Wed, 13 May 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: 3353fd18fd5b2d8c0aabef01c155e57a5507c84b=0D
      https://github.com/quicwg/base-drafts/commit/3353fd18fd5b2d8c0aabef=
01c155e57a5507c84b=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Move a PTO section up=0D
=0D
The fact that PTO doesn't declare losses when it expires is quite importa=
nt.  It at the very end of the section, so I moved it to the first part.=0D=

=0D
=0D
  Commit: dfcb5d820e42570332f217a191437fc6cdafba77=0D
      https://github.com/quicwg/base-drafts/commit/dfcb5d820e42570332f217=
a191437fc6cdafba77=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-13 (Wed, 13 May 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: beed8a8b4b1a342ecea36527c6ed85d9bfda6230=0D
      https://github.com/quicwg/base-drafts/commit/beed8a8b4b1a342ecea365=
27c6ed85d9bfda6230=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3572 from quicwg/ianswett-adaptive-loss=0D
=0D
Adaptive thresholds are useful=0D
=0D
=0D
  Commit: a7101944f1dec2dd4d4c890e56f3029e1648545d=0D
      https://github.com/quicwg/base-drafts/commit/a7101944f1dec2dd4d4c89=
0e56f3029e1648545d=0D
  Author: Eric Kinnear <32474881+erickinnear@users.noreply.github.com>=0D=

  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Remove duplicate MUST=0D
=0D
Co-authored-by: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 16d3b9549c6da6ca27db9f23af6c826b950c24bb=0D
      https://github.com/quicwg/base-drafts/commit/16d3b9549c6da6ca27db9f=
23af6c826b950c24bb=0D
  Author: Alan Frindell <afrind@fb.com>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  [qpack] Table Flip=0D
=0D
All other tables insert on the left and drop on the right=0D
=0D
Fixes #3633=0D
=0D
=0D
  Commit: e58f1b6d472b2f5b8cf3dbd296537d4f07961c0f=0D
      https://github.com/quicwg/base-drafts/commit/e58f1b6d472b2f5b8cf3db=
d296537d4f07961c0f=0D
  Author: afrind <afrind@users.noreply.github.com>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  QPACK acknowledgements (#3648)=0D
=0D
* QPACK acknowledgements=0D
=0D
First take - please me know if I missed someone who made a meaningful con=
tribution.=0D
=0D
Fixes #3278=0D
=0D
* comma drama=0D
=0D
=0D
  Commit: dad1786ae37811b245fcb285885188adfff797fd=0D
      https://github.com/quicwg/base-drafts/commit/dad1786ae37811b245fcb2=
85885188adfff797fd=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M .lint.py=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3652 from quicwg/lint-args=0D
=0D
Convert command-line arguments to integers=0D
=0D
=0D
  Commit: 5ddcfde12293d813dbf8fe2e4e94edc18c0f2fc1=0D
      https://github.com/quicwg/base-drafts/commit/5ddcfde12293d813dbf8fe=
2e4e94edc18c0f2fc1=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-05-13 (Wed, 13 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3654 from quicwg/ianswett-pto-loss-reorg=0D
=0D
Move a PTO section up=0D
=0D
=0D
  Commit: 7ddcd1d53039f50f8050ec51912c086016407521=0D
      https://github.com/quicwg/base-drafts/commit/7ddcd1d53039f50f8050ec=
51912c086016407521=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Trying to thread the needle=0D
=0D
=0D
  Commit: 954f037f641703d7566f024cc41755f24ef6ae2b=0D
      https://github.com/quicwg/base-drafts/commit/954f037f641703d7566f02=
4cc41755f24ef6ae2b=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix=0D
=0D
=0D
  Commit: defd05efb0892dca1ddd94f9ffbc77daea5a581e=0D
      https://github.com/quicwg/base-drafts/commit/defd05efb0892dca1ddd94=
f9ffbc77daea5a581e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Language tweaking=0D
=0D
Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: d891e7d79138b1a4275fd009b6cf21b4e063ad93=0D
      https://github.com/quicwg/base-drafts/commit/d891e7d79138b1a4275fd0=
09b6cf21b4e063ad93=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3651 from quicwg/max-udp-pmtud=0D
=0D
Include max_udp_payload_size in packet size discussion=0D
=0D
=0D
  Commit: 67dc30dd88c4ceb82fc12343f122e91c17d8b61f=0D
      https://github.com/quicwg/base-drafts/commit/67dc30dd88c4ceb82fc123=
43f122e91c17d8b61f=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Attempt at making smaller sentences=0D
=0D
=0D
  Commit: dbc8ffcf3816c7c88ea997283e7c4ae06a0a2550=0D
      https://github.com/quicwg/base-drafts/commit/dbc8ffcf3816c7c88ea997=
283e7c4ae06a0a2550=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  under-utilization=0D
=0D
Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 819f4d0d5710830a2e832acac8afa8e38c1439d6=0D
      https://github.com/quicwg/base-drafts/commit/819f4d0d5710830a2e832a=
cac8afa8e38c1439d6=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Some editorial rearrangement=0D
=0D
=0D
  Commit: a5808755ed1e14268de646e8de5ae4125b2b2d49=0D
      https://github.com/quicwg/base-drafts/commit/a5808755ed1e14268de646=
e8de5ae4125b2b2d49=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3563 from quicwg/link-preferred-address=0D
=0D
Migration with zero-length CID is inadvisable=0D
=0D
=0D
  Commit: 5751547629523cc0e6be3ded9cf80d0083174059=0D
      https://github.com/quicwg/base-drafts/commit/5751547629523cc0e6be3d=
ed9cf80d0083174059=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3565 from quicwg/preferred_ncid=0D
=0D
Forbid zero-length connection ID with preferred addresses=0D
=0D
=0D
  Commit: 53dc234ddceb48d1d3f19c65effbc0c3897e0d79=0D
      https://github.com/quicwg/base-drafts/commit/53dc234ddceb48d1d3f19c=
65effbc0c3897e0d79=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3595 from quicwg/tls-compat-mode=0D
=0D
Prohibit TLS 1.3 middlebox compatibility mode=0D
=0D
=0D
  Commit: d1a7887e675246469de14576a9ca2e9de403a765=0D
      https://github.com/quicwg/base-drafts/commit/d1a7887e675246469de145=
76a9ca2e9de403a765=0D
  Author: Marten Seemann <martenseemann@gmail.com>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  fix MUST not in CRYPTO frame handling=0D
=0D
=0D
  Commit: b6d3a89e9ff096befb74196f6b7bcfda4fe7fc15=0D
      https://github.com/quicwg/base-drafts/commit/b6d3a89e9ff096befb7419=
6f6b7bcfda4fe7fc15=0D
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix two typos in the transport draft=0D
=0D
=0D
  Commit: 564884edb9450ce2fb799d11e3a9e8d455562ae9=0D
      https://github.com/quicwg/base-drafts/commit/564884edb9450ce2fb799d=
11e3a9e8d455562ae9=0D
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix name of the Transport Parameter Length field=0D
=0D
(It's "Parameter," not "Param.")=0D
=0D
=0D
  Commit: 304da5753b4c1fa15077dcd912ff6e9f9325034f=0D
      https://github.com/quicwg/base-drafts/commit/304da5753b4c1fa15077dc=
d912ff6e9f9325034f=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-15 (Fri, 15 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3658 from dtikhonov/202005140900-fix-transport-typo=
s=0D
=0D
Fix two typos in the transport draft=0D
=0D
=0D
  Commit: cf0fdf6c6b8043885ce74696c21c895dd3dbbee1=0D
      https://github.com/quicwg/base-drafts/commit/cf0fdf6c6b8043885ce746=
96c21c895dd3dbbee1=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-15 (Fri, 15 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3656 from marten-seemann/fix-must-not=0D
=0D
fix MUST not in CRYPTO frame handling=0D
=0D
=0D
  Commit: ca0decd66b88576741494c0fc077d2b78424e279=0D
      https://github.com/quicwg/base-drafts/commit/ca0decd66b88576741494c=
0fc077d2b78424e279=0D
  Author: Eric Kinnear <ekinnear@apple.com>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M .lint.py=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-invariants.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 workflow.xml=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge branch 'master' into ek/preferred_address=0D
=0D
=0D
  Commit: 77b06fcadb8d708a9fb932930ff7742a640b7e0a=0D
      https://github.com/quicwg/base-drafts/commit/77b06fcadb8d708a9fb932=
930ff7742a640b7e0a=0D
  Author: Eric Kinnear <ekinnear@apple.com>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update whitespace for consistency=0D
=0D
=0D
  Commit: b9cb2b3f0a1db27aa89d6d964280413366dd6c4d=0D
      https://github.com/quicwg/base-drafts/commit/b9cb2b3f0a1db27aa89d6d=
964280413366dd6c4d=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-05-14 (Thu, 14 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3659 from dtikhonov/202005140902-there-is-no-transp=
ort-param-length-field=0D
=0D
Fix name of the Transport Parameter Length field=0D
=0D
=0D
  Commit: 75aeb2ffb9deaa7bb33ad35b7a6960388f39844a=0D
      https://github.com/quicwg/base-drafts/commit/75aeb2ffb9deaa7bb33ad3=
5b7a6960388f39844a=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-16 (Sat, 16 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update based on comments=0D
=0D
=0D
  Commit: 66cc63c5c69f9ced7db910d93d5f633d333c8e27=0D
      https://github.com/quicwg/base-drafts/commit/66cc63c5c69f9ced7db910=
d93d5f633d333c8e27=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3426 from nharper/active-cid-limit-clarity=0D
=0D
Clarify zero-length CIDs and active_connection_id_limit TP=0D
=0D
=0D
  Commit: a3b6242bdda05692e537049b2262cd63bfec6549=0D
      https://github.com/quicwg/base-drafts/commit/a3b6242bdda05692e53704=
9b2262cd63bfec6549=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3589 from erickinnear/ek/preferred_address=0D
=0D
Clarify text around preferred address=0D
=0D
=0D
  Commit: 13a75fbf507643a6a415680f8fe00dfc154b3af9=0D
      https://github.com/quicwg/base-drafts/commit/13a75fbf507643a6a41568=
0f8fe00dfc154b3af9=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3547 from martinduke/bounded-rcid=0D
=0D
Limit RCID state=0D
=0D
=0D
  Commit: 9b80e966caf6178e75b880716348384656326cbe=0D
      https://github.com/quicwg/base-drafts/commit/9b80e966caf6178e75b880=
716348384656326cbe=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3643 from quicwg/active-cid-limit-rpt=0D
=0D
Exception for Retire Prior To=0D
=0D
=0D
  Commit: 42a1dd87ae1eb65da2a57d31a5e2212cc5b0c2fe=0D
      https://github.com/quicwg/base-drafts/commit/42a1dd87ae1eb65da2a57d=
31a5e2212cc5b0c2fe=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Some improvements from Ian=0D
=0D
Co-authored-by: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: 54a7e018d34939d9bb42a9ea657f75415c10d907=0D
      https://github.com/quicwg/base-drafts/commit/54a7e018d34939d9bb42a9=
ea657f75415c10d907=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-17 (Sun, 17 May 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
Co-authored-by: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 3bdc0ed6e05a308ee501baf6bcbad206e9231f03=0D
      https://github.com/quicwg/base-drafts/commit/3bdc0ed6e05a308ee501ba=
f6bcbad206e9231f03=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-17 (Sun, 17 May 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
Co-authored-by: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 9be18130577abf419d42efe0d3dae6f04184c00e=0D
      https://github.com/quicwg/base-drafts/commit/9be18130577abf419d42ef=
e0d3dae6f04184c00e=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-17 (Sun, 17 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Remove ref to a section which does not exist.=0D
=0D
=0D
  Commit: 62103ceb9ff5b87b2717bea1af6ff64cff1a989e=0D
      https://github.com/quicwg/base-drafts/commit/62103ceb9ff5b87b2717be=
a1af6ff64cff1a989e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Only valid packets change this state=0D
=0D
Co-authored-by: ekr <ekr@rtfm.com>=0D
=0D
=0D
  Commit: e8531a05f0aa5fb25d3686695600c291cb2d737f=0D
      https://github.com/quicwg/base-drafts/commit/e8531a05f0aa5fb25d3686=
695600c291cb2d737f=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3499 from quicwg/authenticate-hs-cid=0D
=0D
Authenticate connection IDs=0D
=0D
=0D
  Commit: c1d0618c49042fca119c84f5d767b086efc459ab=0D
      https://github.com/quicwg/base-drafts/commit/c1d0618c49042fca119c84=
f5d767b086efc459ab=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  You might not get an ACK anyway=0D
=0D
Closes #3480.=0D
=0D
=0D
  Commit: b0a1b1c0db25b4971df0078f14fe68bb50b5da9b=0D
      https://github.com/quicwg/base-drafts/commit/b0a1b1c0db25b4971df007=
8f14fe68bb50b5da9b=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  ack-clocking=0D
=0D
Co-authored-by: ianswett <ianswett@users.noreply.github.com>=0D
=0D
=0D
  Commit: a320b5463d042d2cfdf6b20a2278025687670fe6=0D
      https://github.com/quicwg/base-drafts/commit/a320b5463d042d2cfdf6b2=
0a2278025687670fe6=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Reword ack-clocking again=0D
=0D
=0D
  Commit: e044112b34f1f19d334faed02c1594208c4eb56e=0D
      https://github.com/quicwg/base-drafts/commit/e044112b34f1f19d334fae=
d02c1594208c4eb56e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 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 -28=0D
=0D
=0D
  Commit: e7479497b8d6aa0de4f310c8ff0e2184a38c570e=0D
      https://github.com/quicwg/base-drafts/commit/e7479497b8d6aa0de4f310=
c8ff0e2184a38c570e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Transport and TLS changelog for -28=0D
=0D
=0D
  Commit: fa0d5d929edfc57eafee91a3405c58ff15cce919=0D
      https://github.com/quicwg/base-drafts/commit/fa0d5d929edfc57eafee91=
a3405c58ff15cce919=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Recovery changelog for -28=0D
=0D
=0D
  Commit: bc4f3679897a52397118f7dbf009a752f848a3d1=0D
      https://github.com/quicwg/base-drafts/commit/bc4f3679897a52397118f7=
dbf009a752f848a3d1=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  HTTP and QPACK changelog for -28=0D
=0D
=0D
  Commit: 5969c42dfd647aa74fe9ed96f8c2bcf3de9380de=0D
      https://github.com/quicwg/base-drafts/commit/5969c42dfd647aa74fe9ed=
96f8c2bcf3de9380de=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M protection-samples.js=0D
=0D
  Log Message:=0D
  -----------=0D
  Some more cleanup=0D
=0D
=0D
  Commit: d433f6e3bc26b864377fdbf1172be959de70691d=0D
      https://github.com/quicwg/base-drafts/commit/d433f6e3bc26b864377fdb=
f1172be959de70691d=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3630 from quicwg/pacing-dfn=0D
=0D
A pacing algorithm=0D
=0D
=0D
  Commit: 54fcd27ee757e006405acbaeb3f446dfde759a6d=0D
      https://github.com/quicwg/base-drafts/commit/54fcd27ee757e006405acb=
aeb3f446dfde759a6d=0D
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>=0D
  Date:   2020-05-18 (Mon, 18 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix verb number and a typo in the QPACK draft=0D
=0D
=0D
  Commit: ee306ab8f36e504f8571cb269198eeaf0abf78f9=0D
      https://github.com/quicwg/base-drafts/commit/ee306ab8f36e504f8571cb=
269198eeaf0abf78f9=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-19 (Tue, 19 May 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
Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 04e787fb731e380aaa79dc236064cfb294449dcc=0D
      https://github.com/quicwg/base-drafts/commit/04e787fb731e380aaa79dc=
236064cfb294449dcc=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-19 (Tue, 19 May 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: c05a11457615edb32945369f5b7e4c9ef6031f4c=0D
      https://github.com/quicwg/base-drafts/commit/c05a11457615edb3294536=
9f5b7e4c9ef6031f4c=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-05-19 (Tue, 19 May 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: 49ddf7fba915e7aabc815239718a83a720363e28=0D
      https://github.com/quicwg/base-drafts/commit/49ddf7fba915e7aabc8152=
39718a83a720363e28=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-19 (Tue, 19 May 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: ff55a162469dfc8e78c2bfb3471091e93a15ece9=0D
      https://github.com/quicwg/base-drafts/commit/ff55a162469dfc8e78c2bf=
b3471091e93a15ece9=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-05-19 (Tue, 19 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3653 from quicwg/ianswett-onpacketreceived=0D
=0D
Add OnPacketReceived to pseudocode=0D
=0D
=0D
  Commit: eba43bdf0f8e5240d6d7198cdef6cad6b4a6284b=0D
      https://github.com/quicwg/base-drafts/commit/eba43bdf0f8e5240d6d719=
8cdef6cad6b4a6284b=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-20 (Wed, 20 May 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
  Merge pull request #3668 from quicwg/changelog-28=0D
=0D
Changelog for -28=0D
=0D
=0D
  Commit: 2699ce60892a2daea3c6fb19cc5140c1c6f77488=0D
      https://github.com/quicwg/base-drafts/commit/2699ce60892a2daea3c6fb=
19cc5140c1c6f77488=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-20 (Wed, 20 May 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
  Merge branch 'master' into example-28=0D
=0D
=0D
  Commit: 80e9e5933ea8be6860d043102d064cecacc232c4=0D
      https://github.com/quicwg/base-drafts/commit/80e9e5933ea8be6860d043=
102d064cecacc232c4=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-05-20 (Wed, 20 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
    M protection-samples.js=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3663 from quicwg/example-28=0D
=0D
Update examples for -28=0D
=0D
=0D
  Commit: 402cd868abf559467f2ad64dd90c497084a979ab=0D
      https://github.com/quicwg/base-drafts/commit/402cd868abf559467f2ad6=
4dd90c497084a979ab=0D
  Author: afrind <afrind@users.noreply.github.com>=0D
  Date:   2020-05-19 (Tue, 19 May 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  [qpack] Overhaul the pseudocode (#3577)=0D
=0D
* [qpack] Overhaul the pseudocode=0D
=0D
* Use the current terminology (insert count, base, encoder stream)=0D
* Update to current design (modulo encoding of RIC)=0D
* Normalize naming: index vs. idx=0D
* Comments=0D
=0D
Fixes #3544=0D
=0D
* Fix lint=0D
=0D
* Martin's feedback=0D
=0D
=0D
  Commit: ec2cf11792bdfa19d6b85d09f5e4cccd0c69924c=0D
      https://github.com/quicwg/base-drafts/commit/ec2cf11792bdfa19d6b85d=
09f5e4cccd0c69924c=0D
  Author: afrind <afrind@users.noreply.github.com>=0D
  Date:   2020-05-19 (Tue, 19 May 2020)=0D
=0D
  Changed paths:=0D
    M .lint.py=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-invariants.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
    R workflow.xml=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge branch 'master' into qpack/core_terminology=0D
=0D
=0D
Compare: https://github.com/quicwg/base-drafts/compare/ef94156b8550...ec2=
cf11792bd=0D


From nobody Tue May 19 16:21: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 97FC73A00C4 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:21:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 8r-G4LsonM_J for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:21:50 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 65B583A00C1 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:21:50 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id B6F058C0349 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:21:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930509; bh=MkmcFI8ne1LVXuEsAdS28Lf9rrPHVcFXxDmOkYpKvJQ=; h=Date:From:To:Subject:From; b=0Y3WtELt6C+LKIMQfFEZOUmEU0emIbXJHP40w+CV1we/R22eEftz1NwQOe5Kz8XVw cfMDzggflAbB+lRIYT0dqVJWrwt7hV3TTBZ2VJ+XkFIlz3S7evVFbTLl1+ekVN5EWo xsTXPt8+JcoIvPQXOS67xQBrd0z0+m9X9w4soXuI=
Date: Tue, 19 May 2020 16:21:49 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recompute-pto/e4919c-21607a@github.com>
Subject: [quicwg/base-drafts] 21607a: reflow
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MtXqxT0j_sWCgRRWhoJO4CM53fo>
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: Tue, 19 May 2020 23:21:52 -0000

  Branch: refs/heads/ianswett-recompute-pto
  Home:   https://github.com/quicwg/base-drafts
  Commit: 21607aed5dde572c10bbe77024eebb168bd7d1ff
      https://github.com/quicwg/base-drafts/commit/21607aed5dde572c10bbe77024eebb168bd7d1ff
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  reflow



From nobody Tue May 19 16:22:01 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 E97C53A00C4 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:21:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 a9wNyFDwT6pP for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:21:58 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A49113A00C1 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:21:58 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id D53981C048B for <quic-issues@ietf.org>; Tue, 19 May 2020 16:21:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930517; bh=gsh0TajxYiHGQhY4gGjS3QfeVBsKzg83pgvJ9gut7mA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=k4Hp7LuWeqW9XiORJpoYZ/xkTQ7FqxZl33hMsNbormXevqF26mvWeS6Ryy5oEli5m JYxKpP7510wZbQrr/0rfaRRrsxnIbvLJj5zMMWF6d+LhpKq05lXV4yh3xJpK+1sX8O ssMB6lfIISCoE0WA+iGjMtqAjx07BIga61FBcb2I=
Date: Tue, 19 May 2020 16:21:57 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/push/5099144578@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46a15c5a08_57703fd9748cd95c9619c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AkFBsYi8OZE7gioOPDOUy4Yk4_o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:22:00 -0000

----==_mimepart_5ec46a15c5a08_57703fd9748cd95c9619c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

21607aed5dde572c10bbe77024eebb168bd7d1ff  reflow


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665/files/e4919c2b17fa369a7aaa15247437e5eeaddc7712..21607aed5dde572c10bbe77024eebb168bd7d1ff

----==_mimepart_5ec46a15c5a08_57703fd9748cd95c9619c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/21607aed5dde572c10bbe77024eebb168bd7d1ff">21607ae</a>  reflow</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3665/files/e4919c2b17fa369a7aaa15247437e5eeaddc7712..21607aed5dde572c10bbe77024eebb168bd7d1ff">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5W7QGHE3TS5QQILELRSMIBLANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK74CA3Q2A4UUF73QATRSMIBLA5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTSNBQHA2TKMSQOVZWQIZVGA4TSMJUGQ2TOOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665/files/e4919c2b17fa369a7aaa15247437e5eeaddc7712..21607aed5dde572c10bbe77024eebb168bd7d1ff",
"url": "https://github.com/quicwg/base-drafts/pull/3665/files/e4919c2b17fa369a7aaa15247437e5eeaddc7712..21607aed5dde572c10bbe77024eebb168bd7d1ff",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec46a15c5a08_57703fd9748cd95c9619c--


From nobody Tue May 19 16:22:10 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 8AD7C3A00C4 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 v0vgzU8tx6nV for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:07 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E8FEE3A00C1 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:06 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 49144C607FD for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930526; bh=1FjldGd5etue/CeaZoBrjg4DQGO4e11V+JTTa/DqR+Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=c1GCmKtpQ8N7/pIi4rj5gxozTJh0EoWlw+VfjByl0/0yEJz9/NruzH9z9l9s6sqVu Z6qErc7FN1lsR70JLK+w1e3vWpZlmTQ4y+eDxl+JvrQNVIAEh6vCLuv2ajZCXB/tZj 7sybdA6kja+nggYMBiRkh6st9HWVtNXw1Aihnf38=
Date: Tue, 19 May 2020 16:22:06 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3520/push/5099144966@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3520@github.com>
References: <quicwg/base-drafts/pull/3520@github.com>
Subject: Re: [quicwg/base-drafts] Core terminology in QPACK (#3520)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46a1e3a506_3aeb3f7e384cd95c96115"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LfMRqtVXXLXs0tM6F2ftPURZe04>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:22:09 -0000

----==_mimepart_5ec46a1e3a506_3aeb3f7e384cd95c96115
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@afrind pushed 1 commit.

ec2cf11792bdfa19d6b85d09f5e4cccd0c69924c  Merge branch 'master' into qpack/core_terminology


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3520/files/ef94156b855018d1e085832602872c0cb4445aee..ec2cf11792bdfa19d6b85d09f5e4cccd0c69924c

----==_mimepart_5ec46a1e3a506_3aeb3f7e384cd95c96115
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/afrind" class="user-mention">@afrind</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/ec2cf11792bdfa19d6b85d09f5e4cccd0c69924c">ec2cf11</a>  Merge branch &#39;master&#39; into qpack/core_terminology</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3520/files/ef94156b855018d1e085832602872c0cb4445aee..ec2cf11792bdfa19d6b85d09f5e4cccd0c69924c">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK62PPHIWKB26V75UXLRSMIB5ANCNFSM4LHEIOXA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6R6LYTDSSNBT7XVCDRSMIB5A5CNFSM4LHEIOXKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4DOOBSGM2TKMCQOVZWQIZVGA4TSMJUGQ4TMNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3520/files/ef94156b855018d1e085832602872c0cb4445aee..ec2cf11792bdfa19d6b85d09f5e4cccd0c69924c",
"url": "https://github.com/quicwg/base-drafts/pull/3520/files/ef94156b855018d1e085832602872c0cb4445aee..ec2cf11792bdfa19d6b85d09f5e4cccd0c69924c",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec46a1e3a506_3aeb3f7e384cd95c96115--


From nobody Tue May 19 16:22:15 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 E24C43A00D2 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 D_i2iaZXCw8w for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:11 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D73253A00C1 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:11 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 316BC2C0ED4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930531; bh=Fj78vQeUpd2xThpCLnau9erVR2NCFuq9ZFreL3avNas=; h=Date:From:To:Subject:From; b=H0/tfk7Vdcrfvr2Ed3KzhWmhgjFt8mxHau3F7xF23RSzRi7fkg0LMHLJv+JHgAB20 RWUNLKIOX0AwT2QKdRBGMiQzntkTpqgKVIiOvmP4BqiWZrUewQq9I+a6Zb8cPsNCZR 5BXOg9PY5wZuTDBZaDaq0lQXKzFR8aKdPy1A4PyI=
Date: Tue, 19 May 2020 16:22:11 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-recompute-pto/21607a-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UTezRYa_xCJyzEPCu7HIAWk3gOE>
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: Tue, 19 May 2020 23:22:13 -0000

  Branch: refs/heads/ianswett-recompute-pto
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 19 16:22:18 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 AA9103A00C1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 ebmdk_-eutyr for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:11 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8EF573A00C4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:11 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 419961212FF for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930531; bh=0lEoK3skZSD9Kn8nlNLxfrv89jM763ejSpdnWzDz2jE=; h=Date:From:To:Subject:From; b=N2LzozuNq8UWrvtq3tIc8VYCN8S38xLwtJk8biOkEwgXYOQSAfd/7ipKKr37KsQud fZ0rNaMCvwJOluCYV2smFTe6EfPyZbCuUw6i9j34a7Ha2HW75bOmvkiPzd59h/xppE Mo6qO0S0udujOlAFuP7kl1bT34VQzKv1NatCnfX4=
Date: Tue, 19 May 2020 16:22:10 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/402cd8-4f7652@github.com>
Subject: [quicwg/base-drafts] 32ee54: Clarify when the PTO may need to be recomputed and...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/X2AqnnSPHJmptcKziTJuE-pBQuU>
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: Tue, 19 May 2020 23:22:14 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 32ee54571d322a19c4442333f941d0bc233dbca6
      https://github.com/quicwg/base-drafts/commit/32ee54571d322a19c4442333f941d0bc233dbca6
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Clarify when the PTO may need to be recomputed and reset

Clarifies the cases when the PTO needs to be recomputed and possibly reset.  This was not in a single place before.

Fixes #3613


  Commit: 40e8c84ee5d29983a860f5fe1fc88c0387382a4c
      https://github.com/quicwg/base-drafts/commit/40e8c84ee5d29983a860f5fe1fc88c0387382a4c
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: f9bde12b42fe54fa9fc04a07630d2e0b35103ad8
      https://github.com/quicwg/base-drafts/commit/f9bde12b42fe54fa9fc04a07630d2e0b35103ad8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Apply suggestions from code review

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 54659b1e26d41c50df060f617bafc9f4ac3ef201
      https://github.com/quicwg/base-drafts/commit/54659b1e26d41c50df060f617bafc9f4ac3ef201
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 03d29025efd1146a8688b1b5ab23c10c94644ceb
      https://github.com/quicwg/base-drafts/commit/03d29025efd1146a8688b1b5ab23c10c94644ceb
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Martin's suggested reworked


  Commit: a1618e828da8908b4ac8c850b3e9fac9a01e9f2e
      https://github.com/quicwg/base-drafts/commit/a1618e828da8908b4ac8c850b3e9fac9a01e9f2e
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: e4919c2b17fa369a7aaa15247437e5eeaddc7712
      https://github.com/quicwg/base-drafts/commit/e4919c2b17fa369a7aaa15247437e5eeaddc7712
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 21607aed5dde572c10bbe77024eebb168bd7d1ff
      https://github.com/quicwg/base-drafts/commit/21607aed5dde572c10bbe77024eebb168bd7d1ff
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  reflow


  Commit: 4f765286d03232391155f5c34a8cc90cbf3513e9
      https://github.com/quicwg/base-drafts/commit/4f765286d03232391155f5c34a8cc90cbf3513e9
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3665 from quicwg/ianswett-recompute-pto

Clarify when the PTO may need to be recomputed and reset


Compare: https://github.com/quicwg/base-drafts/compare/402cd868abf5...4f765286d032


From nobody Tue May 19 16:22:22 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 7AD253A00C1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 6guzQ1EM3nLz for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:20 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 405D83A00D3 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:20 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 62EED66002D for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930539; bh=ek2OkcJ+0n47Fs1Ttb9nZUZIh4i1mflO2UkV9r+STkQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lzRy6mgKRjGynxadi8YzuUH9y4VC/T2mvVsla5B6ERDmf1jTBvr5f3G85/bwzh3KY dvbFNR44XHTVQDM6WLDY1JSzawxXkb0aZG+SraGO8X3W/jH3M1Sz/g7puRoB87THhx Uowf31tdzIbDXSRyuGQpOiHzmsoUfEtUa21QiRcc=
Date: Tue, 19 May 2020 16:22:19 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYH4JVDPVZDQU55NAN42BFSXEVBNHHCJ5PG2I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/issue_event/3354072252@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46a2b4d2cd_64c33fe43e2cd960687b2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fpNzXUdyWjZVAyLS716fGZMqJ28>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:22:22 -0000

----==_mimepart_5ec46a2b4d2cd_64c33fe43e2cd960687b2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3665 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665#event-3354072252
----==_mimepart_5ec46a2b4d2cd_64c33fe43e2cd960687b2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="620095186" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3665" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3665/hovercard" href="https://github.com/quicwg/base-drafts/pull/3665">#3665</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3665#event-3354072252">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3UAHMMOM437TTF7C3RSMICXANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2RQDFKVJZAE3UVTC3RSMICXA5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY7VRJPA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665#event-3354072252",
"url": "https://github.com/quicwg/base-drafts/pull/3665#event-3354072252",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec46a2b4d2cd_64c33fe43e2cd960687b2--


From nobody Tue May 19 16:22:28 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 CF10D3A00D3 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Uup-Jr4LCt6e for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:20 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0DBAE3A00C4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:20 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 6378B1C025F for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930539; bh=x2MPOrRa79+b5a0YbriPftu188uAGJhYEcyxT/u70ps=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DCYCsEo3cybMH8uVkRFxlFjH/duNw6j2OMeqxpBDUM0qMf8lNjHLFbmh8odnxsPnw 5CDDE7fTHQ0oaAfzBXJ45mToy1Db24KVGyyqrCnJjtYgNQIdWUcob6zNywrKWr8iH7 5vT2Kja6J35UjZLFccMmbFEJCgP6xfQeCsEy2yag=
Date: Tue, 19 May 2020 16:22:19 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYB5LXEOX5H7DVBQIF42BFSXEVBNHHCIVAFGY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3613/issue_event/3354072268@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3613@github.com>
References: <quicwg/base-drafts/issues/3613@github.com>
Subject: Re: [quicwg/base-drafts] Review conditions for PTO arming around end of handshake (#3613)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46a2b53aa7_4dd33fcce52cd96c615bd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QaGqMQ42Rb4N8J9tjh4BFLsFZaY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:22:22 -0000

----==_mimepart_5ec46a2b53aa7_4dd33fcce52cd96c615bd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3613 via #3665.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3613#event-3354072268
----==_mimepart_5ec46a2b53aa7_4dd33fcce52cd96c615bd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="609486134" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3613" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3613/hovercard" href="https://github.com/quicwg/base-drafts/issues/3613">#3613</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="620095186" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3665" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3665/hovercard" href="https://github.com/quicwg/base-drafts/pull/3665">#3665</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3613#event-3354072268">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYUQKZCCMPDEHKNRETRSMICXANCNFSM4MVCFPRA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6SK5ATIHEHKLFGRGDRSMICXA5CNFSM4MVCFPRKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY7VRJTA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3613#event-3354072268",
"url": "https://github.com/quicwg/base-drafts/issues/3613#event-3354072268",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec46a2b53aa7_4dd33fcce52cd96c615bd--


From nobody Tue May 19 16:22:32 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 8C6B33A00D5 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 0bCoQkH4yIXf for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:21 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8D70F3A00D4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:21 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id C6EB26A011D for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930540; bh=KRcwEWcH1ADz6ZV8k5LAc2fzdCv6ndUzGn1E52nUIjQ=; h=Date:From:To:Subject:From; b=thNJBXb1riVyXOsKQuGlXsLz7TyFKEHk3V9jk54Zf6y6XYWcCqmRlnkduWwkVqO4j hyVTOZjKoem/DDnVRA9hwkEIiUqSj5AL6wutrCh2RqfYEYnIKNqBNkST8sy7mI9XqS nFbuor1t6DzFpL4h7xPvg21PY9st2UhUrqGIjeoU=
Date: Tue, 19 May 2020 16:22:20 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c6aabd-aba2c9@github.com>
Subject: [quicwg/base-drafts] aba2c9: Script updating gh-pages from ec2cf117. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/YL9kafWdZgLE6Z7xbdXU18pQw5E>
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: Tue, 19 May 2020 23:22:24 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: aba2c926102982c80c989bab078b713a9b4bffea
      https://github.com/quicwg/base-drafts/commit/aba2c926102982c80c989bab078b713a9b4bffea
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M index.html
    M qpack/core_terminology/draft-ietf-quic-http.html
    M qpack/core_terminology/draft-ietf-quic-http.txt
    M qpack/core_terminology/draft-ietf-quic-invariants.html
    M qpack/core_terminology/draft-ietf-quic-invariants.txt
    M qpack/core_terminology/draft-ietf-quic-qpack.html
    M qpack/core_terminology/draft-ietf-quic-qpack.txt
    M qpack/core_terminology/draft-ietf-quic-recovery.html
    M qpack/core_terminology/draft-ietf-quic-recovery.txt
    M qpack/core_terminology/draft-ietf-quic-tls.html
    M qpack/core_terminology/draft-ietf-quic-tls.txt
    M qpack/core_terminology/draft-ietf-quic-transport.html
    M qpack/core_terminology/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from ec2cf117. [ci skip]



From nobody Tue May 19 16:22:44 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 80CBC3A00D2 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 WVDHdNeGCbyo for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:22:40 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AE0493A00C4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:40 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id EFC636A07E0 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:22:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930559; bh=aozPkZof0uN5n/gKlgymo3ggyiplyor/5W6vZCI6ulQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jyvb36kJuHjI9VVCm8s+kT/RlOLfz8IESqXPpHPc17nYMvgMxq0X9mgIw5pouwasK 7ULBs5Qy7G+vTcMngDXZlGD5uOevcXhVoHbjEWXFUBl891jyYZdyvptyh1sL7mqZ3x 8P4TwWHZc/RHOogcFMoT5KYEsJhSOiF/Ns01vTUc=
Date: Tue, 19 May 2020 16:22:39 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4SNZIE776XCFXN3HV42BFT7EVBNHHCJ5PG2I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3665/c631138439@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3665@github.com>
References: <quicwg/base-drafts/pull/3665@github.com>
Subject: Re: [quicwg/base-drafts] Clarify when the PTO may need to be recomputed and reset (#3665)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46a3fe0007_3a963f7e384cd95c105877"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/B0H6LfIpePPd2Xu-DP_xVg4cquo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:22:43 -0000

----==_mimepart_5ec46a3fe0007_3a963f7e384cd95c105877
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett : merging this so it makes -28. Filing a separate issue for the leftover editorial fix.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3665#issuecomment-631138439
----==_mimepart_5ec46a3fe0007_3a963f7e384cd95c105877
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ianswett/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</a> : merging this so it makes -28. Filing a separate issue for the leftover editorial fix.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3665#issuecomment-631138439">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7ZIGJTGOUIZWUZU5LRSMID7ANCNFSM4ND6MHEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7C7PB3DK7ZP7LNY4TRSMID7A5CNFSM4ND6MHEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWPGRBY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3665#issuecomment-631138439",
"url": "https://github.com/quicwg/base-drafts/pull/3665#issuecomment-631138439",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec46a3fe0007_3a963f7e384cd95c105877--


From nobody Tue May 19 16:23:15 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 EFF633A00D2 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:23:14 -0700 (PDT)
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 uPsKZpMKHmxt for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:23:13 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DAE433A00C4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:23:13 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 1DDF3660C3B for <quic-issues@ietf.org>; Tue, 19 May 2020 16:23:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930593; bh=OEz1xdg4n1nzfIQbPHJ8sQU+rZNIepNdf3IyI+BIy8I=; h=Date:From:To:Subject:From; b=IaV2cyW2vgFhmb0Lk96FYJIEbhFYndZfVTU4fR6eMiNt4JE49NmpYpsh76ECwn8Wz mmrgGQJS//6Hlks8PerCFVoZmUUOJLnc6l4c5z30Wn0IHndDfU+CVUdn1UVC23KE6Y nwbse/pJ84hO/PZ7aZGiTdKujCMTQkCSsbD2UeyA=
Date: Tue, 19 May 2020 16:23:13 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/canceled_push/000000-37b364@github.com>
Subject: [quicwg/base-drafts] 37b364: Arrival-after-cancel is a general principle
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KmQtylC5LXpfBpuh_6OfdEcyy2A>
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: Tue, 19 May 2020 23:23:15 -0000

  Branch: refs/heads/http/canceled_push
  Home:   https://github.com/quicwg/base-drafts
  Commit: 37b3647826c1621c004d824ccebc22603b9b25c0
      https://github.com/quicwg/base-drafts/commit/37b3647826c1621c004d824ccebc22603b9b25c0
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Arrival-after-cancel is a general principle



From nobody Tue May 19 16:23:21 2020
Return-Path: <bounces+848413-a050-quic-issues=ietf.org@sgmail.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 D040F3A00D2 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:23:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, UNPARSEABLE_RELAY=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 Wlxf3tnTlquD for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:23:18 -0700 (PDT)
Received: from o7.sgmail.github.com (o7.sgmail.github.com [167.89.101.198]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 292F73A00C4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:23:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com;  h=from:to:subject:mime-version:content-type:content-transfer-encoding;  s=s20150108; bh=dSrKJXEMnMd7p0LWhaWChAWIsTQwdQwugigBdh69QQ8=; b= acQrX2nxC90IrZDmaALFL/2Oro8MBO4R/LAhjnoOR1NrdMnmcQTsYWdFKlahruAc ShvgLwC02jrx5hUYQYN9XN1EU5V3at15w0Q9xeAlzhIkf+nTqn++3Sbkz/4GlZNz QuvHQqZDkxS113cQEHg7fllWtk5gG3UoaTIY0ZRVT5g=
Received: by filter0311p1iad2.sendgrid.net with SMTP id filter0311p1iad2-32561-5EC46A65-5 2020-05-19 23:23:17.069436072 +0000 UTC m=+344695.323263199
Received: from out-23.smtp.github.com (unknown) by ismtpd0028p1iad2.sendgrid.net (SG) with ESMTP id hF4xaxtTTMKbcX8XPNFu7w for <quic-issues@ietf.org>; Tue, 19 May 2020 23:23:16.998 +0000 (UTC)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id B62CE66101D for <quic-issues@ietf.org>; Tue, 19 May 2020 16:23:16 -0700 (PDT)
Date: Tue, 19 May 2020 23:23:17 +0000 (UTC)
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/aba2c9-bab353@github.com>
Subject: [quicwg/base-drafts] bab353: Script updating gh-pages from 4f765286. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak2n00XSMriLnpmxOp67zea+C/0w2puCiuiTlh iEdwRGv4uGucKrrXSVt2MbpoXDyo73KlApYhQ6ekR/N0jppp8mj3/tKO1O0n0UnvZlk6TRjje3ytcQ SjlBnhsZi7EB9MrXDduhKrB38kuSHBXRBV8LAnHEffw9iR9XKAugj4H/ZA==
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xi51jWz1yar8IXbTa_IiceCGhR4>
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: Tue, 19 May 2020 23:23:20 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: bab35313a69587ad4431ab075bba48a42cde4a8c
      https://github.com/quicwg/base-drafts/commit/bab35313a69587ad4431ab075bba48a42cde4a8c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 4f765286. [ci skip]



From nobody Tue May 19 16:23:29 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 52F683A00D3 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:23:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 HL8urcxXFgyd for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:23:27 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3CCBE3A00C4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:23:27 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 825FC520AA4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:23:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930606; bh=nAJomb/hID64/RpsCL+els5dghpb5snX7MJ7I+r3Yjg=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=E8kfM+NTEctlksEPfiec6GlkH1wnU07y1Cslqca8OAG5dAfLDxcedXlQlQaR7KYXc 2ypjIrhKqliv9Vx+vGuKha81xhb+z2k/BvU0N+quiYHEIk4y0a2HtyOrG69fw0UsgU XXZ7CD6BwxBjukoFR34utL2aVsbL1D4I/DFx1XJ0=
Date: Tue, 19 May 2020 16:23:26 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5WSBAK3YQYELJYE2N42BFW5EVBNHHCKCH7IU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3671@github.com>
Subject: [quicwg/base-drafts] Use "handshake confirmed" in recovery draft (#3671)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46a6e7322f_54013fb2ab8cd9601158f8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AwhaULoheJsMDXnBggyqSKDRnyI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:23:28 -0000

----==_mimepart_5ec46a6e7322f_54013fb2ab8cd9601158f8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The draft should use "handshake confirmed" and point to the TLS draft instead of describing the conditions individually in various places.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3671
----==_mimepart_5ec46a6e7322f_54013fb2ab8cd9601158f8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The draft should use "handshake confirmed" and point to the TLS draft instead of describing the conditions individually in various places.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3671">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZCGMCA6HLOKMNC4G3RSMIG5ANCNFSM4NFNX3HA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2W3J5ZMFYILO33DS3RSMIG5A5CNFSM4NFNX3HKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JII75CQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3671",
"url": "https://github.com/quicwg/base-drafts/issues/3671",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec46a6e7322f_54013fb2ab8cd9601158f8--


From nobody Tue May 19 16:23:58 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 9AB1A3A00D2 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:23:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.481
X-Spam-Level: 
X-Spam-Status: No, score=-1.481 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 DDaxhnVyG-1M for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:23:55 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 322CF3A00C4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:23:55 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 6977F6A121E for <quic-issues@ietf.org>; Tue, 19 May 2020 16:23:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930634; bh=b1pDRc5KNqXjKiHHQg0ZVGi1fK6V7/qIfiRzBFxWx1w=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=tBBwTKavFfupE8nSWB6S6S5CKZQ/wBGdlwk3Eb33RCIk32Ud8jOPcCdOVnS9ARySC mEp0g79GN3r+KiaJm0hS+PdtGLcMZSXy1HhM9dFI9fk2cKCO9JggNQH720kcP+e/iy AhZqa0BMYrYBpG2uUMU9nY6rWMBvqAeEcEdylen8=
Date: Tue, 19 May 2020 16:23:54 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6O3JXS5M6ECPGWJOF42BFYVEVBNHHCKCIAAE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3672@github.com>
Subject: [quicwg/base-drafts] Arrival-after-cancel is a general principle (#3672)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46a8a59ad3_7ec23fe41bacd96c1377a6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AonNqT8NeZG9o_2uU3lGpXbXD_0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:23:57 -0000

----==_mimepart_5ec46a8a59ad3_7ec23fe41bacd96c1377a6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closes #3660.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3672

-- Commit Summary --

  * Arrival-after-cancel is a general principle

-- File Changes --

    M draft-ietf-quic-http.md (21)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3672.patch
https://github.com/quicwg/base-drafts/pull/3672.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3672

----==_mimepart_5ec46a8a59ad3_7ec23fe41bacd96c1377a6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes pull request #3660.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="618541099" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3660" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3660/hovercard" href="https://github.com/quicwg/base-drafts/pull/3660">#3660</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3672'>https://github.com/quicwg/base-drafts/pull/3672</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Arrival-after-cancel is a general principle</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3672/files#diff-3d2f9fd0738589657498f2c06ee02f2f">draft-ietf-quic-http.md</a>
    (21)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3672.patch'>https://github.com/quicwg/base-drafts/pull/3672.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3672.diff'>https://github.com/quicwg/base-drafts/pull/3672.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3672">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5FCWKTMD5N4SY7Z73RSMIIVANCNFSM4NFNYBXQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4P6UTDNCZC3EJ2MC3RSMIIVA5CNFSM4NFNYBX2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JIJAAAQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3672",
"url": "https://github.com/quicwg/base-drafts/pull/3672",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec46a8a59ad3_7ec23fe41bacd96c1377a6--


From nobody Tue May 19 16:24:04 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 1E40F3A00D3 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:24:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 T_O7ZqrFc9lL for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:24:02 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EDA293A00C4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:24:01 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 32BD5C60C12 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:24:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930641; bh=7QnWMVWlA113VV3N8RK0EKeESD+s+41WR3PTbCubGu8=; h=Date:From:To:Subject:From; b=XAkRLJA/8f5wFPTljSK91bd5eekpy2bkuBAWeJEyKAUadyYw+q06wIUDDVN/WKMIn nfz258QjU0QwE7hYuy9aMAckz2CPACo5GNJRCI+J7CR4sMAEB/rMSyCx8t/RRZNbqX sXVtWJIb6iuHZYD/GDORUeSH1G3BMzAHsO/kZEqc=
Date: Tue, 19 May 2020 16:24:01 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/bab353-ef07b6@github.com>
Subject: [quicwg/base-drafts] ef07b6: Script updating gh-pages from 37b36478. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DGzJY3WLBpnotPRPuJuTodq3iS4>
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: Tue, 19 May 2020 23:24:03 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ef07b63e04c91ba1f67fb7f04d64eeaab8270e90
      https://github.com/quicwg/base-drafts/commit/ef07b63e04c91ba1f67fb7f04d64eeaab8270e90
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    A http/canceled_push/draft-ietf-quic-http.html
    A http/canceled_push/draft-ietf-quic-http.txt
    A http/canceled_push/draft-ietf-quic-invariants.html
    A http/canceled_push/draft-ietf-quic-invariants.txt
    A http/canceled_push/draft-ietf-quic-qpack.html
    A http/canceled_push/draft-ietf-quic-qpack.txt
    A http/canceled_push/draft-ietf-quic-recovery.html
    A http/canceled_push/draft-ietf-quic-recovery.txt
    A http/canceled_push/draft-ietf-quic-tls.html
    A http/canceled_push/draft-ietf-quic-tls.txt
    A http/canceled_push/draft-ietf-quic-transport.html
    A http/canceled_push/draft-ietf-quic-transport.txt
    A http/canceled_push/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 37b36478. [ci skip]



From nobody Tue May 19 16:24:46 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 1F8353A00D2 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:24:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 wK8MmSuvdid0 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:24:42 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 566423A00C4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:24:42 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 979F56A0DB3 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:24:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930681; bh=/I0Rl/fa5R5qdQLEyV+nB7mFWnB4VfRI1VFjs+oWLo0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AC0yFp9MWu/0JF6NKLWrycLKTmcaAUvSfAr3SHsH9+VuP5fxRAt8xKf6vgJ/jPom0 92kPViRk9ndA2KpwMpkLEiYZhpV0jWJLXsq/hqtzWP69G/GAZruuTalHi1k5W37Bc9 IyiDek1gG4PtPHfpN3Q4lrqZtSmw+mNLpE5JBZPo=
Date: Tue, 19 May 2020 16:24:41 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2TZMMI7Q7SUXV2DVV42BF3TEVBNHHCKCGAH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3670/review/414887843@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3670@github.com>
References: <quicwg/base-drafts/pull/3670@github.com>
Subject: Re: [quicwg/base-drafts] Scope of disable_active_migration (#3670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46ab988ab8_3b223f7e384cd95c133734"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Hb9Nnhu_GELxlLycUhseeQpvWQM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:24:44 -0000

----==_mimepart_5ec46ab988ab8_3b223f7e384cd95c133734
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.



> @@ -1229,9 +1229,11 @@ when a client's address changes.
   transport parameter to request that clients move connections to that dedicated
   address. Note that clients could choose not to use the preferred address.
 
-A server in a deployment that does not implement a solution to
-maintain connection continuity during connection migration
-SHOULD disallow migration using the disable_active_migration transport
+A server in a deployment that does not implement a solution to maintain
+connection continuity during connection migration SHOULD disallow migration

```suggestion
connection continuity when the client address changes SHOULD indicate migration is not supported
```

> @@ -1229,9 +1229,11 @@ when a client's address changes.
   transport parameter to request that clients move connections to that dedicated
   address. Note that clients could choose not to use the preferred address.
 
-A server in a deployment that does not implement a solution to
-maintain connection continuity during connection migration
-SHOULD disallow migration using the disable_active_migration transport
+A server in a deployment that does not implement a solution to maintain
+connection continuity during connection migration SHOULD disallow migration
+using the disable_active_migration transport parameter.  The
+disable_active_migration transport parameter does not prohibit subsequent

```suggestion
disable_active_migration transport parameter does not prohibit
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-414887843
----==_mimepart_5ec46ab988ab8_3b223f7e384cd95c133734
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ianswett</b> approved this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3670#discussi=
on_r427653086">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1229,9 +1229,11 @@ when a client&#39;s=
 address changes.=0D
   transport parameter to request that clients move connections to that d=
edicated=0D
   address. Note that clients could choose not to use the preferred addre=
ss.=0D
 =0D
-A server in a deployment that does not implement a solution to=0D
-maintain connection continuity during connection migration=0D
-SHOULD disallow migration using the disable_active_migration transport=0D=

+A server in a deployment that does not implement a solution to maintain=0D=

+connection continuity during connection migration SHOULD disallow migrat=
ion=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-connection continuity during connection migra=
tion SHOULD disallow migration=0D
+connection continuity when the client address changes SHOULD indicate mi=
gration is not supported=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3670#discussi=
on_r427654617">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1229,9 +1229,11 @@ when a client&#39;s=
 address changes.=0D
   transport parameter to request that clients move connections to that d=
edicated=0D
   address. Note that clients could choose not to use the preferred addre=
ss.=0D
 =0D
-A server in a deployment that does not implement a solution to=0D
-maintain connection continuity during connection migration=0D
-SHOULD disallow migration using the disable_active_migration transport=0D=

+A server in a deployment that does not implement a solution to maintain=0D=

+connection continuity during connection migration SHOULD disallow migrat=
ion=0D
+using the disable_active_migration transport parameter.  The=0D
+disable_active_migration transport parameter does not prohibit subsequen=
t=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-disable_active_migration transport parameter =
does not prohibit subsequent=0D
+disable_active_migration transport parameter does not prohibit=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3670#pullrequestreview-414887843">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K3RRF5IO2UW2EEN2MDRSMILTANCNFSM4NFNBZ6A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK3NC3BDGAAI7ZLQE7TRSMILTA5CNFSM4=
NFNBZ6KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODC5K7IY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3670#pullrequestrev=
iew-414887843",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview=
-414887843",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec46ab988ab8_3b223f7e384cd95c133734--


From nobody Tue May 19 16:24:57 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 D68AB3A00D2 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:24:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 V44E_MGdqUnT for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:24:53 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3CFB53A00C4 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:24:53 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 812EB660552 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:24:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930692; bh=MSv7T0JKyrJCTdu9L6szxFWWtc4JaHKpl9YYxk+9OCw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KxSc6IELF3O9YbtIMiGuO2GOG8KpLZlvMV3vDG3+9daiTUEKnZaQ/ruzraKfUe0tU Gu5/xN4uJVSNZhnexWQMlfe1daqCsEIJIJuy97baUdACs8HV/tyzV+7ej+F5RLHnEH i3Q/OoWeukkiz+rHJL12ESMTe6zcr35iBwGB0K9E=
Date: Tue, 19 May 2020 16:24:52 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6VQBI4254PDM45HV542BF4JEVBNHHCKCF42A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3669/review/414890437@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3669@github.com>
References: <quicwg/base-drafts/pull/3669@github.com>
Subject: Re: [quicwg/base-drafts] ECN probing needs to imply that you stop (#3669)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46ac47148a_b5f3fb2d70cd96431151"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yjzTiPdlKDDh92F4vfXoN5UfaE0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:24:55 -0000

----==_mimepart_5ec46ac47148a_b5f3fb2d70cd96431151
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> @@ -3733,9 +3733,9 @@ packets on a new path to a peer:
   lost {{QUIC-RECOVERY}}, validation is deemed to have failed.
 
 To reduce the chances of misinterpreting congestive loss as packets dropped by a
-faulty network element, an endpoint could set the ECT(0) codepoint in the first
-ten outgoing packets on a path, or for a period of three RTTs, whichever occurs
-first.
+faulty network element, an endpoint could set the ECT(0) codepoint only for the

```suggestion
faulty network element, an endpoint could set the ECT(0) codepoint for only the
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview-414890437
----==_mimepart_5ec46ac47148a_b5f3fb2d70cd96431151
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3669#discussi=
on_r427655191">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3733,9 +3733,9 @@ packets on a new pat=
h to a peer:=0D
   lost {{QUIC-RECOVERY}}, validation is deemed to have failed.=0D
 =0D
 To reduce the chances of misinterpreting congestive loss as packets drop=
ped by a=0D
-faulty network element, an endpoint could set the ECT(0) codepoint in th=
e first=0D
-ten outgoing packets on a path, or for a period of three RTTs, whichever=
 occurs=0D
-first.=0D
+faulty network element, an endpoint could set the ECT(0) codepoint only =
for the=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-faulty network element, an endpoint could set=
 the ECT(0) codepoint only for the=0D
+faulty network element, an endpoint could set the ECT(0) codepoint for o=
nly the=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3669#pullrequestreview-414890437">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K53XLUS2LNMAOB3CPLRSMIMJANCNFSM4NFNAW4Q">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKZOS4YKLIQ4LANCXV3RSMIMJA5CNFSM4=
NFNAW42YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODC5LTRI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3669#pullrequestrev=
iew-414890437",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview=
-414890437",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec46ac47148a_b5f3fb2d70cd96431151--


From nobody Tue May 19 16:26:06 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 4B8393A00D9 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:26:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 MP4M6jXwQsb4 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:26:03 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2765B3A00D8 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:26:03 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id CB9E81204B8 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:26:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930762; bh=n+HTKDav6tmta3anyUxQon2K6sdx1FFQhSNHaik59c4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Paj4hsClLA516E06KuwX5GdTEdRCVOCHhytQXtt0IMzf3Nz3UzD9PbIFAMqOYdV4j cXroKOTG5Btg6fxgYPBq2qcRT4hwFv7B2kdFT1EaqyKxYS5D4cxBb4o9S9swH6GHj+ fe+ff8cLxJrcJqig66SaknjIfr1Mmem1SNajGnt8=
Date: Tue, 19 May 2020 16:26:02 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2EAEXHCSMQWCYVXRF42BGAVEVBNHHCKCIAAE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3672/review/414890921@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3672@github.com>
References: <quicwg/base-drafts/pull/3672@github.com>
Subject: Re: [quicwg/base-drafts] Arrival-after-cancel is a general principle (#3672)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46b0aa620d_4edd3fcce52cd96c7219d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Lr6786GNDs4TnVgcFnT6byMjDDg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:26:05 -0000

----==_mimepart_5ec46b0aa620d_4edd3fcce52cd96c7219d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3672#pullrequestreview-414890921
----==_mimepart_5ec46b0aa620d_4edd3fcce52cd96c7219d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3672#pullrequestreview-414890921">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4ZASUR4EO3GVX4TUDRSMIQVANCNFSM4NFNYBXQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2GQRMLI3SHJCXYYQTRSMIQVA5CNFSM4NFNYBX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC5LXKI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3672#pullrequestreview-414890921",
"url": "https://github.com/quicwg/base-drafts/pull/3672#pullrequestreview-414890921",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec46b0aa620d_4edd3fcce52cd96c7219d--


From nobody Tue May 19 16:26:15 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 032683A00D9 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:26:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 EK3W0MZtVlkY for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:26:12 -0700 (PDT)
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 053A43A00D8 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:26:12 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 4F302282B6E for <quic-issues@ietf.org>; Tue, 19 May 2020 16:26:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930771; bh=TbA+sV5vR9Sz9N5pvgNTF4W10krVomcbgHm8eRHLMpM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HSM8iBmNj7H1btZlYCWWMAqnh03AmRxF0Vd62Id88DX/ipr/ACrMiShGdqJ5X9cB8 ggdiS61MPqBSGbFFfZyVtgCNNO/EclTbyTaNYSIb2wwJtTGQqGM75Fu2NTAbdYXUK9 02oNq5toARXyuVIY05dJJIBD4f6ZNjfREOnlBWKA=
Date: Tue, 19 May 2020 16:26:11 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7RV46DV4OUWCABG7N42BGBHEVBNHHCKCIAAE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3672/review/414890984@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3672@github.com>
References: <quicwg/base-drafts/pull/3672@github.com>
Subject: Re: [quicwg/base-drafts] Arrival-after-cancel is a general principle (#3672)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46b133fd40_226a3fd6580cd9601297fd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JPygABFylB9gj7MfTB3cneVhcUs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:26:13 -0000

----==_mimepart_5ec46b133fd40_226a3fd6580cd9601297fd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue approved this pull request.

LGTM



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3672#pullrequestreview-414890984
----==_mimepart_5ec46b133fd40_226a3fd6580cd9601297fd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@LPardue</b> approved this pull request.</p>

<p>LGTM</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3672#pullrequestreview-414890984">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK32XHXKCHC7ZLVFITTRSMIRHANCNFSM4NFNYBXQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3BAPWBNXZWQDVFOXTRSMIRHA5CNFSM4NFNYBX2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC5LX2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3672#pullrequestreview-414890984",
"url": "https://github.com/quicwg/base-drafts/pull/3672#pullrequestreview-414890984",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec46b133fd40_226a3fd6580cd9601297fd--


From nobody Tue May 19 16:27:08 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 F0DF83A00D9 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:27:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 kQE17uyytSe4 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:27:05 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8FB323A00D8 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:27:05 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id E4C44C6075B for <quic-issues@ietf.org>; Tue, 19 May 2020 16:27:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589930824; bh=3DBhQVG9e55AeYpcJSJ0+gvQisb6DaPGpjme2axpc/o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oijHVIpoOCL22I/P1n7EAjuGzGUpQbzLHDpWhW3jevxH6FQIgdkdaoW/YQSZzYkUf pXP+vxqMGKkLgyzndlGmCSeO6dS3oV4Ein+tUUa0Toc6c0pE6nBgf9rhYQ46niEw46 fRpQ5etLptTNr4BURZMfGpHHwSMiKBQMsuXlWAn8=
Date: Tue, 19 May 2020 16:27:04 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK55KHWZBYSQXMYHY5542BGEREVBNHHCJXRQFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3660/c631139919@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3660@github.com>
References: <quicwg/base-drafts/pull/3660@github.com>
Subject: Re: [quicwg/base-drafts] Remove repeated sentence (#3660)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46b48d529c_2fef3ffb836cd964439bc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/spbkwErJgsr09dERFwUTxHB9Lbs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:27:07 -0000

----==_mimepart_5ec46b48d529c_2fef3ffb836cd964439bc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

#3672 applies @martinthomson's observation that this is a more general behavior if a push arrives after being canceled.  (Though we have one specific scenario where we recommend a different error code.)  It moves that piece to the CANCEL_PUSH description, and rearranges the text here to flow better.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3660#issuecomment-631139919
----==_mimepart_5ec46b48d529c_2fef3ffb836cd964439bc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621346817" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3672" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3672/hovercard" href="https://github.com/quicwg/base-drafts/pull/3672">#3672</a> applies <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a>'s observation that this is a more general behavior if a push arrives after being canceled.  (Though we have one specific scenario where we recommend a different error code.)  It moves that piece to the CANCEL_PUSH description, and rearranges the text here to flow better.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3660#issuecomment-631139919">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK63DX7DOZLSCOZ2SKDRSMIURANCNFSM4NBBHDHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK23SWPQIE2NYHHX3NDRSMIURA5CNFSM4NBBHDHKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWPG4TY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3660#issuecomment-631139919",
"url": "https://github.com/quicwg/base-drafts/pull/3660#issuecomment-631139919",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec46b48d529c_2fef3ffb836cd964439bc--


From nobody Tue May 19 16:30:48 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 6617E3A017E for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:30:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 eGBkGtvG9T_j for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:30:44 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BBB5C3A011F for <quic-issues@ietf.org>; Tue, 19 May 2020 16:30:44 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 190922C1533 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:30:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589931044; bh=N5YAx+DmVWT4EGGpk1CDD/TQ8SQYRrG4GCgzVKaakBY=; h=Date:From:To:Subject:From; b=VEt9gOFTiG1/cqT/W7tquiBT6w5F/Wm/gFjQirRYeKp7Plp3pNN0O7WozM1hcckbZ 6vvOP6WTY0TtUOfUHJvJ2bUE8oHnboLqOVUMf3FJqV0KOuyVv4WGzFsN3cloXR5t9Q 5s7a/XWy7IcIhh4CjCWnRUUqtRUocPDcQqXi8Ta4=
Date: Tue, 19 May 2020 16:30:44 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/canceled_push/37b364-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3uFzyLPB0L6rUpO7jSGzcobW1ZI>
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: Tue, 19 May 2020 23:30:46 -0000

  Branch: refs/heads/http/canceled_push
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 19 16:30:57 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 DE6C03A011F for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:30:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 pW5naWGdRJqq for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:30:44 -0700 (PDT)
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 9D1EB3A0112 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:30:44 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id F1EF9282D48 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:30:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589931043; bh=GEys9HdvopyG8QOfC4S6Mq62DWgIf8q/v8VH7kysnyg=; h=Date:From:To:Subject:From; b=NNqW3BHdqWLrp2b9xTr1C7OYiIkJpii8tqGnnpEBMzu8ZHuyTmQ1VDrpaxWwkgas3 H0Ko4oTDD6AMRNWG83YGcOwLEjYZUV9/o3qfxfU4cINxwIOS0pzmjNcawkaBc2Jl8s hNbAj7T2TCY55fL9/INbJNet+l1GPLMUzpaHSC4o=
Date: Tue, 19 May 2020 16:30:43 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/4f7652-d29432@github.com>
Subject: [quicwg/base-drafts] d29432: Arrival-after-cancel is a general principle (#3672)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QXLg4mVBFQiF99jLMbvm70HKxY0>
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: Tue, 19 May 2020 23:30:48 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: d29432c63d85dea126839b68957c5762d21c430a
      https://github.com/quicwg/base-drafts/commit/d29432c63d85dea126839b68957c5762d21c430a
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Arrival-after-cancel is a general principle (#3672)



From nobody Tue May 19 16:31:01 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 BD2AF3A0147 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:30:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 UM9NhqoDNJKK for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:30:53 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0C2173A0112 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:30:53 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 610EA8C00EE for <quic-issues@ietf.org>; Tue, 19 May 2020 16:30:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589931052; bh=B+OOV7vxKImKU+O/T8jIYqS0K0tqJR7uQX0Ayf6Gvo8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ewwy4CjJ7ns0LrEuuqcdhfhaSzbrE8L/wy17aYdU6/pOZ2NUJ8uqirUu7Lf42DXlI yEH9+C9BoGHotvXLJGgxsq0OKRPCx1z4G6Nv8EpF7waUZALH/QoSA2QQMdf6cU+Y2w WWRr7O+ll9qeTHAOCnQm3//3dHuLkqLlSjrz1xq4=
Date: Tue, 19 May 2020 16:30:52 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ODB4YFMINF7IAA6V42BGSZEVBNHHCKCIAAE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3672/issue_event/3354091166@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3672@github.com>
References: <quicwg/base-drafts/pull/3672@github.com>
Subject: Re: [quicwg/base-drafts] Arrival-after-cancel is a general principle (#3672)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46c2c518e7_2ac93f9f3b0cd964476010"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aYq0WrprdBcSDk27qWFHxi8vdAQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:30:55 -0000

----==_mimepart_5ec46c2c518e7_2ac93f9f3b0cd964476010
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3672 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3672#event-3354091166
----==_mimepart_5ec46c2c518e7_2ac93f9f3b0cd964476010
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621346817" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3672" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3672/hovercard" href="https://github.com/quicwg/base-drafts/pull/3672">#3672</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3672#event-3354091166">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3AKNPL5PK75354JZ3RSMJCZANCNFSM4NFNYBXQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7BCOCRQH3GRJ43JFTRSMJCZA5CNFSM4NFNYBX2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY7VV5HQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3672#event-3354091166",
"url": "https://github.com/quicwg/base-drafts/pull/3672#event-3354091166",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec46c2c518e7_2ac93f9f3b0cd964476010--


From nobody Tue May 19 16:31:04 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 578963A0112 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:30:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ETamlmZm1pOB for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:30:53 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 20B9A3A011F for <quic-issues@ietf.org>; Tue, 19 May 2020 16:30:53 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id CB34026164B for <quic-issues@ietf.org>; Tue, 19 May 2020 16:30:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589931052; bh=BRkaxrVcq0Lmd/9oWFnCV2f+QSVoiFp2JP7ZvZR0aFU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZEXZ7cCiPizgYMEvURflBEvr9MJAyFie3Tk7ZKqTmWQ1EHngrjlJxyFh7vSyDePOJ mXZ50++6sqhaCEb2vqw1JrbcERYZKOd8N6jNqJj8hRPtdRevgd7RGaK8F6TVlwLiaU YTQMo6ySE9zbxKZKiQkSkYLQoE5GgzIzrqMXVya8=
Date: Tue, 19 May 2020 16:30:52 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5H4YTKSONO2X5TLDV42BGSZEVBNHHCJXRQFM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3660/issue_event/3354091170@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3660@github.com>
References: <quicwg/base-drafts/pull/3660@github.com>
Subject: Re: [quicwg/base-drafts] Remove repeated sentence (#3660)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46c2c85d69_71653fa50dacd964346e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1YLCXyD75BLoqWV7uT7mQ-27Cv4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:30:56 -0000

----==_mimepart_5ec46c2c85d69_71653fa50dacd964346e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3660 via #3672.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3660#event-3354091170
----==_mimepart_5ec46c2c85d69_71653fa50dacd964346e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="618541099" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3660" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3660/hovercard" href="https://github.com/quicwg/base-drafts/pull/3660">#3660</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621346817" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3672" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3672/hovercard" href="https://github.com/quicwg/base-drafts/pull/3672">#3672</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3660#event-3354091170">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4QFN72YYJOSG2YYH3RSMJCZANCNFSM4NBBHDHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK643OC7UA2EMPYMG4LRSMJCZA5CNFSM4NBBHDHKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY7VV5IQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3660#event-3354091170",
"url": "https://github.com/quicwg/base-drafts/pull/3660#event-3354091170",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec46c2c85d69_71653fa50dacd964346e--


From nobody Tue May 19 16:31:56 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 45F6F3A02BD for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:31:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 nBjHzS9JMjds for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:31:54 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 16CAD3A02BC for <quic-issues@ietf.org>; Tue, 19 May 2020 16:31:54 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 53B858C0434 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:31:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589931113; bh=oRn//nk4MObZGZlajrnMKAXNpVDwAcMojbcoAtfYbk4=; h=Date:From:To:Subject:From; b=j6PLlCtsKhbecQPMhrdKWOhL7n63p/N3EKs/I6dELWTxE1D50Eddu5Hg0tolqKRMW fNd/A73PfgGfNpfYMQT8Z+qOZBatZrASh9bXb4VINlTC7I2EXf96/VZsOygQz5Os6C XbQT4BPErjcbG6MKGe8lE1E6BZkivMSH3ARCXoBE=
Date: Tue, 19 May 2020 16:31:53 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ef07b6-73f84c@github.com>
Subject: [quicwg/base-drafts] 73f84c: Script updating gh-pages from d29432c6. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Dn2luPvNmTB31K70kUl3QkCLU_s>
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: Tue, 19 May 2020 23:31:55 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 73f84c765168eff1182e58caa63d539b4d426774
      https://github.com/quicwg/base-drafts/commit/73f84c765168eff1182e58caa63d539b4d426774
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d29432c6. [ci skip]



From nobody Tue May 19 16:35:11 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 7F8C23A02C1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:35:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 XK7guc-cTCM4 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:35:09 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5502A3A02BE for <quic-issues@ietf.org>; Tue, 19 May 2020 16:35:09 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 84584281789 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:35:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589931308; bh=22SWuZjNa0PYodphaeZkioD/2SUkW/J9+xJddrQm/9s=; h=Date:From:To:Subject:From; b=nXiyfk7MlDuyJ4k4Fq8Ob1uxKRMxbHkfMMgDrNbdXHJj33zEtUMWz9zOdMfXlAuTe 1AdX6KCu66Nm515VKYSZ2HOqzROK10dj8jQFuKe3Ye/buDmWHWbDEi9ZFKOYwolkDZ ALhxvNl0oyMpbHvV42+hPqmGDl5LpoNVyb7YVQWM=
Date: Tue, 19 May 2020 16:35:08 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/only-ecn/d95b49-c93cdd@github.com>
Subject: [quicwg/base-drafts] c93cdd: >>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/npjviraJZDUAZ-vtgXEQGnoa4pQ>
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: Tue, 19 May 2020 23:35:11 -0000

  Branch: refs/heads/only-ecn
  Home:   https://github.com/quicwg/base-drafts
  Commit: c93cddb90d413bdaddb6ea72f910bef3e3959223
      https://github.com/quicwg/base-drafts/commit/c93cddb90d413bdaddb6ea72f910bef3e3959223
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  >>

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue May 19 16:35:42 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 DA5263A0366 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:35:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 5GeWzRDPCk34 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:35:18 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 588CD3A02C1 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:35:18 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id BCEE7A0071 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:35:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589931316; bh=6LCarRR8gcXLJtJMY+9xZl+LCUVet4j/7FC7ZJR3g2Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=H7a3V1hb0MgxQ21BOtDbTHGqUE0vqGU79keuvXcVComtlaKzxtlUmK+ymg0oR7BUz x11Q57T+3w++7QcMXS9C4ZEmFmER6DW89PUxZUvCGu359FeJcpNfmcT0/KSQ0NxvTx A5yuz+I7ljjH6sdMJzFm2KCblGBH3AAYCjSXPUOY=
Date: Tue, 19 May 2020 16:35:16 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3669/push/5099186887@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3669@github.com>
References: <quicwg/base-drafts/pull/3669@github.com>
Subject: Re: [quicwg/base-drafts] ECN probing needs to imply that you stop (#3669)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46d34ae6d5_19933fdbcd0cd96815448f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QqPz3R3LhmFj4wBzFBa2kyPpOk8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:35:22 -0000

----==_mimepart_5ec46d34ae6d5_19933fdbcd0cd96815448f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

c93cddb90d413bdaddb6ea72f910bef3e3959223  >>


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3669/files/d95b49f433108dd49e7f8ad492c6d3d8a4a3d744..c93cddb90d413bdaddb6ea72f910bef3e3959223

----==_mimepart_5ec46d34ae6d5_19933fdbcd0cd96815448f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/c93cddb90d413bdaddb6ea72f910bef3e3959223">c93cddb</a>  &gt;&gt;</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3669/files/d95b49f433108dd49e7f8ad492c6d3d8a4a3d744..c93cddb90d413bdaddb6ea72f910bef3e3959223">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2BIFD72CCLZFBGYK3RSMJTJANCNFSM4NFNAW4Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2UK4RN7FUQ2QGRUETRSMJTJA5CNFSM4NFNAW42YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDANBQGIZTGOKQOVZWQIZVGA4TSMJYGY4DQNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3669/files/d95b49f433108dd49e7f8ad492c6d3d8a4a3d744..c93cddb90d413bdaddb6ea72f910bef3e3959223",
"url": "https://github.com/quicwg/base-drafts/pull/3669/files/d95b49f433108dd49e7f8ad492c6d3d8a4a3d744..c93cddb90d413bdaddb6ea72f910bef3e3959223",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec46d34ae6d5_19933fdbcd0cd96815448f--


From nobody Tue May 19 16:36:16 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 43CFC3A03FF for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:36:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 6KeM4kU5Wv6P for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:36:14 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 804103A03F6 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:36:06 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 90D298C0C91 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:36:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589931365; bh=p0eJAOT6M08u58Da0N+VzVHXIVZIyI5RAhX8jEqDfEQ=; h=Date:From:To:Subject:From; b=S9Ve/eSHsCTZJiW/K+KWF8ImIO70OkV6kZJ9K6G7+H7e7hRB6t0Br9rKgBv+YKYoi Ou3FB/at0sT3sUvaAvcOymh/jJWoyGdFistags0HadczoDhXvd95DB+Qnfhf8y+6ld qjApuNt2IhL/QBZv03TuxBnqQqdyb15v6sF6z9aM=
Date: Tue, 19 May 2020 16:36:05 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/73f84c-2b03ad@github.com>
Subject: [quicwg/base-drafts] 2b03ad: Script updating gh-pages from c93cddb9. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rLeoUIBDwfWveMcteKtTwcdo0vQ>
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: Tue, 19 May 2020 23:36:15 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2b03ad149860130ece5502ef9c972973c8141aa7
      https://github.com/quicwg/base-drafts/commit/2b03ad149860130ece5502ef9c972973c8141aa7
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M index.html
    M only-ecn/draft-ietf-quic-transport.html
    M only-ecn/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from c93cddb9. [ci skip]



From nobody Tue May 19 16:39:25 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 708853A040B for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:39:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 npZJ9ZVXi9nf for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:39:22 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 01E283A0407 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:39:21 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 3DD546E06C8 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:39:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589931561; bh=ojZV6KhpJ0D+Qf9WSOw/nUzk0g9NVG1bpjmziJBG17E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KoTueKi70pcPaUSqjGkt967gYNyf9DAkjshfFLmxQ7OIpNPuxmsb9eAhI/q2StRxa r13jYRg5bUqh6Z35rkgS8Kko3LejQ2auo6bCHQye9p/h9k63AzlG80FsRTnl7qDp2s ztbuxrXY4P3e4dkLy5LjSdEG8sEd/qJ2au9vZlb0=
Date: Tue, 19 May 2020 16:39:21 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK47NPNE2O77AUCMCFN42BHSTEVBNHHCKCGAH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3670/review/414895639@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3670@github.com>
References: <quicwg/base-drafts/pull/3670@github.com>
Subject: Re: [quicwg/base-drafts] Scope of disable_active_migration (#3670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46e292e133_5c843fb5ad4cd9641324b3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/k3doPUePQjMewU4o-Ghyb9psJOs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:39:24 -0000

----==_mimepart_5ec46e292e133_5c843fb5ad4cd9641324b3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho commented on this pull request.

LGTM modulo the point below.

> @@ -4872,11 +4874,11 @@ max_ack_delay (0x0b):
 disable_active_migration (0x0c):
 
 : The disable active migration transport parameter is included if the endpoint
-  does not support active connection migration ({{migration}}). Peers of an
-  endpoint that sets this transport parameter MUST NOT send any packets,
-  including probing packets ({{probing}}), from a local address or port other
-  than that used to perform the handshake.  This parameter is a zero-length
-  value.
+  does not support active connection migration ({{migration}}) on the address
+  being used during the handshake.  Peers of an endpoint that sets this
+  transport parameter MUST NOT send any packets, including probing packets
+  ({{probing}}), from a local address or port other than that used to perform
+  the handshake. This parameter is a zero-length value.

To me it seems that we need to also change this sentence (starting from "Peers ..."). We need to tighten the restriction to only when the client sends the packets to the original address of the server.

Maybe something like: _Peers of an endpoint that sets this transport parameter MUST NOT send any packets, including probing packets ({{probing}}) __to the address that was used to perform the handshake__, from a local address or port other than that used to perform the handshake._

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-414895639
----==_mimepart_5ec46e292e133_5c843fb5ad4cd9641324b3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@kazuho</b> commented on this pull request.</p>

<p>LGTM modulo the point below.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3670#discussion_r427659723">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4872,11 +4874,11 @@ max_ack_delay (0x0b):
 disable_active_migration (0x0c):
 
 : The disable active migration transport parameter is included if the endpoint
-  does not support active connection migration ({{migration}}). Peers of an
-  endpoint that sets this transport parameter MUST NOT send any packets,
-  including probing packets ({{probing}}), from a local address or port other
-  than that used to perform the handshake.  This parameter is a zero-length
-  value.
+  does not support active connection migration ({{migration}}) on the address
+  being used during the handshake.  Peers of an endpoint that sets this
+  transport parameter MUST NOT send any packets, including probing packets
+  ({{probing}}), from a local address or port other than that used to perform
+  the handshake. This parameter is a zero-length value.
</pre>
<p>To me it seems that we need to also change this sentence (starting from "Peers ..."). We need to tighten the restriction to only when the client sends the packets to the original address of the server.</p>
<p>Maybe something like: <em>Peers of an endpoint that sets this transport parameter MUST NOT send any packets, including probing packets ({{probing}}) <strong>to the address that was used to perform the handshake</strong>, from a local address or port other than that used to perform the handshake.</em></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-414895639">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY2LLAOVAYNXLGXYLDRSMKCTANCNFSM4NFNBZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2DFF44GQN4EEMMQQLRSMKCTA5CNFSM4NFNBZ6KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC5M4FY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-414895639",
"url": "https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-414895639",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec46e292e133_5c843fb5ad4cd9641324b3--


From nobody Tue May 19 16:40:23 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 714673A0412 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:40:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 5PVJQ-MDRr4J for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:40:21 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1A6E93A0407 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:40:21 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 476AC2C1364 for <quic-issues@ietf.org>; Tue, 19 May 2020 16:40:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589931619; bh=w7JL5KzzoP2hRyyDFLrmPChMWlGBUgWm9yb9r/txYW8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DRv2V8honZbsuj/drOWKYi/lrYSg6HPLe0rNos/+qBiRjCBUZuGkLJhNpoo/QHI46 E6yySCcZcBIc8YP1D4+7I3QxSBFaa56UmdzJ+2Ej1dKSIcflKWzJKh03cD9MI81UEW 0uOqvRf1LPbKrMXcvfZyXEtny8GU2gygCOTMcwac=
Date: Tue, 19 May 2020 16:40:19 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYS72QOM23BH4MXADV42BHWHEVBNHHCKCGAH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3670/review/414896274@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3670@github.com>
References: <quicwg/base-drafts/pull/3670@github.com>
Subject: Re: [quicwg/base-drafts] Scope of disable_active_migration (#3670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec46e6338df8_5c713fb5ad4cd964134123"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EynNpiN8hieevCRoHiKJw3vZkNg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:40:22 -0000

----==_mimepart_5ec46e6338df8_5c713fb5ad4cd964134123
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -4872,11 +4874,11 @@ max_ack_delay (0x0b):
 disable_active_migration (0x0c):
 
 : The disable active migration transport parameter is included if the endpoint
-  does not support active connection migration ({{migration}}). Peers of an
-  endpoint that sets this transport parameter MUST NOT send any packets,
-  including probing packets ({{probing}}), from a local address or port other
-  than that used to perform the handshake.  This parameter is a zero-length
-  value.
+  does not support active connection migration ({{migration}}) on the address
+  being used during the handshake.  Peers of an endpoint that sets this
+  transport parameter MUST NOT send any packets, including probing packets
+  ({{probing}}), from a local address or port other than that used to perform
+  the handshake. This parameter is a zero-length value.

Good point (I made this same point verbally, but failed to notice the absence of a fix).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3670#discussion_r427660242
----==_mimepart_5ec46e6338df8_5c713fb5ad4cd964134123
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3670#discussion_r427660242">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4872,11 +4874,11 @@ max_ack_delay (0x0b):
 disable_active_migration (0x0c):
 
 : The disable active migration transport parameter is included if the endpoint
-  does not support active connection migration ({{migration}}). Peers of an
-  endpoint that sets this transport parameter MUST NOT send any packets,
-  including probing packets ({{probing}}), from a local address or port other
-  than that used to perform the handshake.  This parameter is a zero-length
-  value.
+  does not support active connection migration ({{migration}}) on the address
+  being used during the handshake.  Peers of an endpoint that sets this
+  transport parameter MUST NOT send any packets, including probing packets
+  ({{probing}}), from a local address or port other than that used to perform
+  the handshake. This parameter is a zero-length value.
</pre>
<p>Good point (I made this same point verbally, but failed to notice the absence of a fix).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3670#discussion_r427660242">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7XKRWWV5Q7YN2Q3JTRSMKGHANCNFSM4NFNBZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYXVDHSIPCXWQPIAJDRSMKGHA5CNFSM4NFNBZ6KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC5NBEQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3670#discussion_r427660242",
"url": "https://github.com/quicwg/base-drafts/pull/3670#discussion_r427660242",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec46e6338df8_5c713fb5ad4cd964134123--


From nobody Tue May 19 16:55:57 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 F3E063A0542 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:55:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 TKUIq93TDoHg for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 16:55:53 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 700583A053F for <quic-issues@ietf.org>; Tue, 19 May 2020 16:55:53 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id AA55052101D for <quic-issues@ietf.org>; Tue, 19 May 2020 16:55:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589932552; bh=zA46fM7GxuhImY7YnRDVhDqzkWuK5pxXoayS1Cmevwg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pUD9AALXsoLs+0TFR/X26Ccfnrz0VMB/2oN6fLEnzxt6kDNolBY5qYWh5Zn7gDGjW fnFO4k1FVWuUD4l29dqRT3OpR3BQsidcN8u+BmmRECI7pwkELpypHZ/cxxry3HoycV aGASPI/f8lcM27bVifHiqF3lMmNqY7ztABEmmKVo=
Date: Tue, 19 May 2020 16:55:52 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4P4QOLZLB5RTROOVV42BJQREVBNHHCFHBAYE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3520/review/414891747@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3520@github.com>
References: <quicwg/base-drafts/pull/3520@github.com>
Subject: Re: [quicwg/base-drafts] Core terminology in QPACK (#3520)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec472089a391_65d43ff2952cd96423382e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XaSauhFfmQ2q5STg4JRgJOc71Lc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 19 May 2020 23:55:55 -0000

----==_mimepart_5ec472089a391_65d43ff2952cd96423382e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@afrind commented on this pull request.

I think there are few places where we should be using 'encoded field section' rather than just field section.  I made a pass and will update shortly.  It's not perfect, since there are places where it just felt too redundant and field section alone was unambiguous.  I'm open to feedback though.

Also, I changed "Entry Acknowledgement" to "Section Acknowledgement", since that instruction acknowledges processing of an encoded field section, not an individual entry or representation.

> @@ -217,7 +235,7 @@ contains entries which cannot be evicted.
 A dynamic table entry cannot be evicted immediately after insertion, even if it
 has never been referenced. Once the insertion of a dynamic table entry has been
 acknowledged and there are no outstanding references to the entry in
-unacknowledged header blocks, the entry becomes evictable.  Note that
+unacknowledged representations, the entry becomes evictable.  Note that

representations are not acknowledged.   We lost the definition of "header block", and now use 'encoded field section' ?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3520#pullrequestreview-414891747
----==_mimepart_5ec472089a391_65d43ff2952cd96423382e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@afrind</b> commented on this pull request.</p>

<p>I think there are few places where we should be using 'encoded field section' rather than just field section.  I made a pass and will update shortly.  It's not perfect, since there are places where it just felt too redundant and field section alone was unambiguous.  I'm open to feedback though.</p>
<p>Also, I changed "Entry Acknowledgement" to "Section Acknowledgement", since that instruction acknowledges processing of an encoded field section, not an individual entry or representation.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3520#discussion_r427656382">draft-ietf-quic-qpack.md</a>:</p>
<pre style='color:#555'>&gt; @@ -217,7 +235,7 @@ contains entries which cannot be evicted.
 A dynamic table entry cannot be evicted immediately after insertion, even if it
 has never been referenced. Once the insertion of a dynamic table entry has been
 acknowledged and there are no outstanding references to the entry in
-unacknowledged header blocks, the entry becomes evictable.  Note that
+unacknowledged representations, the entry becomes evictable.  Note that
</pre>
<p>representations are not acknowledged.   We lost the definition of "header block", and now use 'encoded field section' ?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3520#pullrequestreview-414891747">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2F43NZWZYX2DRKNBDRSMMARANCNFSM4LHEIOXA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY2OATKDCO7KLCMRJDRSMMARA5CNFSM4LHEIOXKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODC5L5YY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3520#pullrequestreview-414891747",
"url": "https://github.com/quicwg/base-drafts/pull/3520#pullrequestreview-414891747",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec472089a391_65d43ff2952cd96423382e--


From nobody Tue May 19 17:13:28 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 515983A07BC for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:13:23 -0700 (PDT)
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 Iva_1BC1YlYA for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:13:22 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E30C23A07ED for <quic-issues@ietf.org>; Tue, 19 May 2020 17:13:21 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 5F4F9E0FA3 for <quic-issues@ietf.org>; Tue, 19 May 2020 17:13:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589933600; bh=aTQw3h075IZmNhnMd++6zXhmFVLTkMEEYi9Sq3YLbn8=; h=Date:From:To:Subject:From; b=CTkMovz3/IBSc1DHd4ofzYsf4bjERIl2Rtg244hir9Sllm+Hm46OrqbtkTWl5N+qN ZJDZORFIa2kuJd3a0bPzBLi28ddMu8RBtT8yNfTvvPl7DQGJn02oCIQ/xzdRk2F3Cr rDtIm7jTRwJJLibtFgx+sOBZJyviBsDL7ssNp3VQ=
Date: Tue, 19 May 2020 17:13:20 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack/core_terminology/ec2cf1-340df2@github.com>
Subject: [quicwg/base-drafts] 4dfe27: Rename Entry Acknowledgement to Section Acknowledg...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/N3ictBOEJcYBBPhWL8DudRnFhXM>
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: Wed, 20 May 2020 00:13:27 -0000

  Branch: refs/heads/qpack/core_terminology
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4dfe27c1c5fa99b25ab99a2b9b8ae0f6c38518b1
      https://github.com/quicwg/base-drafts/commit/4dfe27c1c5fa99b25ab99a2b9b8ae0f6c38518b1
  Author: Alan Frindell <afrind@fb.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  Rename Entry Acknowledgement to Section Acknowledgement

Use 'encoded' field section in a few more places


  Commit: 340df2025a5a3a9f768bbeeff283e95b352aa2af
      https://github.com/quicwg/base-drafts/commit/340df2025a5a3a9f768bbeeff283e95b352aa2af
  Author: Alan Frindell <afrind@fb.com>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M .lint.py
    M draft-ietf-quic-http.md
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-qpack.md
    M draft-ietf-quic-recovery.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md
    M protection-samples.js
    R workflow.xml

  Log Message:
  -----------
  Merge branch 'qpack/core_terminology' of https://github.com/quicwg/base-drafts into qpack/core_terminology


Compare: https://github.com/quicwg/base-drafts/compare/ec2cf11792bd...340df2025a5a


From nobody Tue May 19 17:13:37 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 B91033A0798 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:13:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 X55G0XahdyXr for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:13:30 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A33873A07A6 for <quic-issues@ietf.org>; Tue, 19 May 2020 17:13:30 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 6A9DFA11B2 for <quic-issues@ietf.org>; Tue, 19 May 2020 17:13:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589933609; bh=nyBn61gfdgNmiSp+qWA1hPzdQR+kOT+XlCfRUpZ2x3g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oBX2rhXWuKPo5Mbe+E+uVhmPoHYypQqFTxV9jHVKviFqf+qiUdCcpSygu3/mnVf8J JS7xP8RX885c8U3CRM/g0+rdeKQzLXSPBikl16KvQGRk5OqnX5+5Q/vQM3NeKhRbFp KkiK4+nYvfsQsp+Fe24n81PV0Z3NnrUOPXZuVX3Y=
Date: Tue, 19 May 2020 17:13:29 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3520/push/5099303892@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3520@github.com>
References: <quicwg/base-drafts/pull/3520@github.com>
Subject: Re: [quicwg/base-drafts] Core terminology in QPACK (#3520)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec476295a1cd_64f43f94f50cd96419259"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/txChSKzZ65eQCSdRqS-eh2L_8zM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 00:13:33 -0000

----==_mimepart_5ec476295a1cd_64f43f94f50cd96419259
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@afrind pushed 2 commits.

4dfe27c1c5fa99b25ab99a2b9b8ae0f6c38518b1  Rename Entry Acknowledgement to Section Acknowledgement
340df2025a5a3a9f768bbeeff283e95b352aa2af  Merge branch 'qpack/core_terminology' of https://github.com/quicwg/base-drafts into qpack/core_terminology


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3520/files/ec2cf11792bdfa19d6b85d09f5e4cccd0c69924c..340df2025a5a3a9f768bbeeff283e95b352aa2af

----==_mimepart_5ec476295a1cd_64f43f94f50cd96419259
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/afrind" class="user-mention">@afrind</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/4dfe27c1c5fa99b25ab99a2b9b8ae0f6c38518b1">4dfe27c</a>  Rename Entry Acknowledgement to Section Acknowledgement</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/340df2025a5a3a9f768bbeeff283e95b352aa2af">340df20</a>  Merge branch &#39;qpack/core_terminology&#39; of https://github.com/quicwg/base-drafts into qpack/core_terminology</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3520/files/ec2cf11792bdfa19d6b85d09f5e4cccd0c69924c..340df2025a5a3a9f768bbeeff283e95b352aa2af">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3ZEU46CBNJW72LXQ3RSMOCTANCNFSM4LHEIOXA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5APUQSCFE4KPRYIY3RSMOCTA5CNFSM4LHEIOXKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGM4DOOBSGM2TKMCQOVZWQIZVGA4TSMZQGM4DSMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3520/files/ec2cf11792bdfa19d6b85d09f5e4cccd0c69924c..340df2025a5a3a9f768bbeeff283e95b352aa2af",
"url": "https://github.com/quicwg/base-drafts/pull/3520/files/ec2cf11792bdfa19d6b85d09f5e4cccd0c69924c..340df2025a5a3a9f768bbeeff283e95b352aa2af",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec476295a1cd_64f43f94f50cd96419259--


From nobody Tue May 19 17:14:19 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 86E6A3A079D for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:14:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 iMYzkjjuviEf for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:14:17 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 172D53A079B for <quic-issues@ietf.org>; Tue, 19 May 2020 17:14:17 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 624DDA0BAB for <quic-issues@ietf.org>; Tue, 19 May 2020 17:14:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589933656; bh=lez+P5SOxpjA0R3SHj6Y83uIAAHjiWdRL1OoHwK3Pic=; h=Date:From:To:Subject:From; b=XzIrtdkhOUDmriq8hLAb+TIT3yJaVO9rBOas7GMPGI09A7wcEzGHW1J4juqi4/bho f+MFKKL9ctyBFbBjTbcXcSgRHFtO67bosKXwpTjLp0T2Pm4PMI/2lvNOLY0FPUcqvc prt3tdbyFrn3gV79L5MJrAJy6KlEobkVHNoU1CnA=
Date: Tue, 19 May 2020 17:14:16 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/2b03ad-f54de6@github.com>
Subject: [quicwg/base-drafts] f54de6: Script updating gh-pages from 340df202. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/J4tYLP3xOMc7B-ETQAOixUJV0PM>
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: Wed, 20 May 2020 00:14:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f54de6788ebf8b3cffa3ac66d492992091e49ac9
      https://github.com/quicwg/base-drafts/commit/f54de6788ebf8b3cffa3ac66d492992091e49ac9
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M qpack/core_terminology/draft-ietf-quic-http.html
    M qpack/core_terminology/draft-ietf-quic-http.txt
    M qpack/core_terminology/draft-ietf-quic-invariants.html
    M qpack/core_terminology/draft-ietf-quic-invariants.txt
    M qpack/core_terminology/draft-ietf-quic-qpack.html
    M qpack/core_terminology/draft-ietf-quic-qpack.txt
    M qpack/core_terminology/draft-ietf-quic-recovery.html
    M qpack/core_terminology/draft-ietf-quic-recovery.txt
    M qpack/core_terminology/draft-ietf-quic-tls.html
    M qpack/core_terminology/draft-ietf-quic-tls.txt
    M qpack/core_terminology/draft-ietf-quic-transport.html
    M qpack/core_terminology/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 340df202. [ci skip]



From nobody Tue May 19 17:16:01 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 62F633A0783 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:15:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 OXMM-_jTw_BP for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:15:57 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 943BD3A076C for <quic-issues@ietf.org>; Tue, 19 May 2020 17:15:57 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id DDF5EA11B2 for <quic-issues@ietf.org>; Tue, 19 May 2020 17:15:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589933756; bh=fJcjFe/fGgFq7KY9kBbGvAaLxe8xLGgs/C2rta6xu1k=; h=Date:From:To:Subject:From; b=vVQGU7ALIIA32Pnb2l7irVboGnh1aNADs9DEH4Kcvn6rCJJvQQppmdIPReAMskXm5 G8naafmLP9eRE15Fxqwt/2jKU4hi1llvYfNmOHmoFyRgaBxsMTEU6ayy3Q9xTYk4ew 3e1Tm8jy4dUkS+eU5Q80/pCqLSaMLNdIw0WqI0N4=
Date: Tue, 19 May 2020 17:15:56 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/d29432-a16ccf@github.com>
Subject: [quicwg/base-drafts] a16ccf: Core terminology in QPACK (#3520)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/o0EVcoKSSELRTTr9hb-Knx31bIQ>
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: Wed, 20 May 2020 00:15:59 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: a16ccf150f9a6bf006d5d5206c76d9e30468e743
      https://github.com/quicwg/base-drafts/commit/a16ccf150f9a6bf006d5d5206c76d9e30468e743
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-19 (Tue, 19 May 2020)

  Changed paths:
    M draft-ietf-quic-qpack.md

  Log Message:
  -----------
  Core terminology in QPACK (#3520)

* QFIELDS!!!

* Find and replace makes grammar errors?  What?

Co-Authored-By: Lucas Pardue <lucaspardue.24.7@gmail.com>

* Remove list

* No field blocks

* for headers, but modern

* Bence's feedback

* Bridge from headers

* Rename Entry Acknowledgement to Section Acknowledgement

Use 'encoded' field section in a few more places

Co-authored-by: Lucas Pardue <lucaspardue.24.7@gmail.com>
Co-authored-by: afrind <afrind@users.noreply.github.com>
Co-authored-by: Alan Frindell <afrind@fb.com>



From nobody Tue May 19 17:16:05 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 E80413A076C for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:15:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 S3jzUuopLIYZ for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:15:58 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A92153A0771 for <quic-issues@ietf.org>; Tue, 19 May 2020 17:15:58 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id DF3961C06B3 for <quic-issues@ietf.org>; Tue, 19 May 2020 17:15:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589933757; bh=n7h1Q6Mom3cpI2rlP6VjrGcHVP90a596zdHato7OX88=; h=Date:From:To:Subject:From; b=uZxblM9Vn2w90d+BMj6LDxCH089B7fHuAL8upWy45yTTJKG4V1iMGHuNuEOJRWkpp vDc1RUPDDiFCZzkJKjWRGu0Xc8zZUptrJzeKw36pgnKYyFYlI9GafBcwvHb2FXT0nN Ol0FvY6TQEKj19SRVE51sz1GwjOwJXIOmhvnfDNU=
Date: Tue, 19 May 2020 17:15:57 -0700
From: afrind <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/qpack/core_terminology/340df2-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EFU-h-HpY4-UPp1qg8YFf_UiS0k>
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: Wed, 20 May 2020 00:16:00 -0000

  Branch: refs/heads/qpack/core_terminology
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 19 17:16:09 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 1C4173A0783 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:16:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 H2GPynmzymZc for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:16:06 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C75073A0771 for <quic-issues@ietf.org>; Tue, 19 May 2020 17:16:06 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id 057918C0553 for <quic-issues@ietf.org>; Tue, 19 May 2020 17:16:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589933766; bh=U4petTQmZtsDdPd/O0wO2VUBpe7cli5l6bYzZ6cLJ08=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fTySXMgbBBLiRFHLa99fM38ArZnvkeSuh0FGLR+opXvdPu9JbpKlXae9O8IfW24Lm CWH6F/sJAMJT8AvlwhgMjmhjt41DnGEjTYZaCQyuElV574e8pi5bw4xfBK+rNyqzM+ byEZT5NhTMxsde1YwZMvhCcWZKtwfvacnjB891GI=
Date: Tue, 19 May 2020 17:16:05 -0700
From: afrind <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5R7QVYO5C7YH24B5V42BL4LEVBNHHCFHBAYE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3520/issue_event/3354184634@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3520@github.com>
References: <quicwg/base-drafts/pull/3520@github.com>
Subject: Re: [quicwg/base-drafts] Core terminology in QPACK (#3520)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec476c5e8eeb_4e753f967a6cd96479483"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: afrind
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MyND6c7GmYiKu5LrjFrX7995qms>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 00:16:08 -0000

----==_mimepart_5ec476c5e8eeb_4e753f967a6cd96479483
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3520 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3520#event-3354184634
----==_mimepart_5ec476c5e8eeb_4e753f967a6cd96479483
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="580657345" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3520" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3520/hovercard" href="https://github.com/quicwg/base-drafts/pull/3520">#3520</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3520#event-3354184634">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4VVDD2DZEJKKPNW63RSMOMLANCNFSM4LHEIOXA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7WTUQMQ5XWKKA5PTLRSMOMLA5CNFSM4LHEIOXKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOY7WMXOQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3520#event-3354184634",
"url": "https://github.com/quicwg/base-drafts/pull/3520#event-3354184634",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec476c5e8eeb_4e753f967a6cd96479483--


From nobody Tue May 19 17:16:57 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 4C7BA3A0783 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:16:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 w-e1KeNruzZD for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:16:54 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2BF7A3A076C for <quic-issues@ietf.org>; Tue, 19 May 2020 17:16:54 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 5F97552018A for <quic-issues@ietf.org>; Tue, 19 May 2020 17:16:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589933813; bh=GWgPXOkDQH1H1RyS1kXglt0FvKfpd5dAPz7z2+TXHUY=; h=Date:From:To:Subject:From; b=o1cwWfbudhkZj3p2f/di5g3jVYE/3rYXvI/IWPPNEcfr4zcpHeblBmtUrvGToA3Tg qf31GgbAmWfvfIc5VJ1/zgPybb4tW5aHvIKDeJqxA2H2Lmo3gVdjYyxhcMJiZIaVdS teCrzl7Mqm8khnyroKBLWHgJcRCbN35bFPpkO2Jc=
Date: Tue, 19 May 2020 17:16:53 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f54de6-061258@github.com>
Subject: [quicwg/base-drafts] 061258: Script updating gh-pages from a16ccf15. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mMRw7jUNEY_FG181LIhSJt1r6-Q>
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: Wed, 20 May 2020 00:16:55 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 061258bb8da9d2caa48d45b9059a15fcd67ec41a
      https://github.com/quicwg/base-drafts/commit/061258bb8da9d2caa48d45b9059a15fcd67ec41a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from a16ccf15. [ci skip]



From nobody Tue May 19 17:29:41 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 EB3303A07A1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:29:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 MSGs3Wcd2hP1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:29:39 -0700 (PDT)
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 883543A0781 for <quic-issues@ietf.org>; Tue, 19 May 2020 17:29:38 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 944DB282B9C for <quic-issues@ietf.org>; Tue, 19 May 2020 17:29:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589934577; bh=l35XkMGYlEEZOTfbFDB8PgbZ2wcnszW9Mw/qAARxKxc=; h=Date:From:To:Subject:From; b=Q1eTLN/9B6Doxvb4U2K6gC809AdpMeczVkXTho6qaQd/k5G4KoPvPGZRzIj1iqQuR +MG4chXTlRZvDPcIeO5+ieoH45eQVLRuxc/v1jqlNEJefoPmmN1EM+u69jklO1BZzD N/dWy7+Xg5yrY2l4Fc6VA2/3dOMvhCLjLaW2WSjg=
Date: Tue, 19 May 2020 17:29:37 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-http-28/000000-cff76c@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TKCOM9tJ9Z38Ygs8xOb8YOXWHR4>
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: Wed, 20 May 2020 00:29:40 -0000

  Branch: refs/tags/draft-ietf-quic-http-28
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 19 17:29:46 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 0661D3A064A for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:29:45 -0700 (PDT)
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, TVD_SPACE_RATIO=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 Hq6cUtawZ4eb for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:29:43 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A826B3A07A1 for <quic-issues@ietf.org>; Tue, 19 May 2020 17:29:43 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id D011A6A0BBB for <quic-issues@ietf.org>; Tue, 19 May 2020 17:29:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589934582; bh=562A4GjxdclbuOd5QJjprZ70k1JZUkFQfiNrDUO2zPU=; h=Date:From:To:Subject:From; b=QjuZrIaoc1SuOqy5mJbI95B0sJfKeCgYuP2xLdiNxWvjUolMrhkn7gFkAZXdTVwtA qZqEfETMDAc3Js/sTSGJ7Zs9eS5U3WSjdqsr2ZY+zPHp8Fv926hAzqggqU8op5MQ2K V+7lg5X1cp15no8kZWTmhaWVXZCg6IJHoFej6vgo=
Date: Tue, 19 May 2020 17:29:42 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-invariants-08/000000-664975@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2oH_Oup_f13NHE38GqCaOe342As>
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: Wed, 20 May 2020 00:29:45 -0000

  Branch: refs/tags/draft-ietf-quic-invariants-08
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 19 17:29:51 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 DBF203A07A1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:29:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 5gFzX7Cr4iJQ for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:29:47 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C917A3A07AF for <quic-issues@ietf.org>; Tue, 19 May 2020 17:29:47 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 08BA91200EE for <quic-issues@ietf.org>; Tue, 19 May 2020 17:29:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589934587; bh=CVzXJubR9aRntvju3wtqie+wVjVMjWu+oP6Y2LEeVm4=; h=Date:From:To:Subject:From; b=RXVIGXwfD3YOh3zD/P6FHeQ1t2LedkhqbYfCNbt0vXcb0ZhnnYGDTZfljzLdeEFlp C1Ed8t3SAfh7cC4cmUKA+Mkzt/STeDnf7R01/LFQhbF/pZzxYSBH1ND0Grslmd0qxf f2MJ9S95tvLOARGm5rSujB84jSoHStrMlTBIgfWs=
Date: Tue, 19 May 2020 17:29:46 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-qpack-15/000000-841ef7@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/oEBU8VPL0LvvwqrHi4D8XihC5ag>
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: Wed, 20 May 2020 00:29:49 -0000

  Branch: refs/tags/draft-ietf-quic-qpack-15
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 19 17:29: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 5820F3A064A for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:29:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 mPO2frkQM49s for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:29:52 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3BF563A07BB for <quic-issues@ietf.org>; Tue, 19 May 2020 17:29:52 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 8D8C29604C6 for <quic-issues@ietf.org>; Tue, 19 May 2020 17:29:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589934591; bh=yv99mSGJ/BwCL27Vf8aELdjqn5J3ANF21ccK767UHU0=; h=Date:From:To:Subject:From; b=zgg3V1Cbvt3/svg7Qca/ioCwF41kF/dy62s0Rxaw6BqS+JQKDHFVqdkiaLzNFQf7e ri0cf2mY1Hzi3D0z4bpLgjSfCDVGv9KkbcCYifQdAHJan11xfcQWhomlYuWbiRzOgn ou3GneUzutbJJFBo8lmE8e51ZFvnHAz73o+YmQ2k=
Date: Tue, 19 May 2020 17:29:51 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-recovery-28/000000-184b6a@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VOawgWbgKUTnj-R7RSdLQ0unSFg>
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: Wed, 20 May 2020 00:29:53 -0000

  Branch: refs/tags/draft-ietf-quic-recovery-28
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 19 17:29:59 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 454B73A07A1 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:29:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 svob8GvTsjab for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:29:57 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5675B3A064A for <quic-issues@ietf.org>; Tue, 19 May 2020 17:29:57 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 9230B260198 for <quic-issues@ietf.org>; Tue, 19 May 2020 17:29:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589934596; bh=uyKM4DMFSwHOwz7q3+XnpiXkRXPigbq/7MKh5u5AhQg=; h=Date:From:To:Subject:From; b=NiTlhPlg82J+IFIPlS20CnS10JNaiN+SH2lvHc5b7GVGzBMvb9JhEAjnT57N9/sEZ Qve6CwzJZaUNhUUpLH+a0wA3CJUG+yARaVlBm2oLZaaX2gm/pz8LERiX1BKkJQnWKw /nkqelCe62lF3K+ePNe7ZgyRcXgGkORQPLypQif4=
Date: Tue, 19 May 2020 17:29:56 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-tls-28/000000-eb6de6@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KUCPm0nEAseBqZSO2qOmAS82zBY>
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: Wed, 20 May 2020 00:29:58 -0000

  Branch: refs/tags/draft-ietf-quic-tls-28
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 19 17:30:06 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 9CD973A07A9 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:30:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 8U9noqR1fLXj for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 17:30:02 -0700 (PDT)
Received: from out-15.smtp.github.com (out-15.smtp.github.com [192.30.254.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 265FB3A07A3 for <quic-issues@ietf.org>; Tue, 19 May 2020 17:30:02 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id AAC0526047E for <quic-issues@ietf.org>; Tue, 19 May 2020 17:30:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589934601; bh=FBQKzEF6aw51Lf/vCfqiBFMWT2BIjSnCo5ZiM1MkPL8=; h=Date:From:To:Subject:From; b=dpM5fAgwma5lyDIbtHiT8RC6jnLbIpe0ul2HXP/YIaBRV8IPvH3YNcLz1T9+s/0V4 zurtcdRaIz8SNa4dFAu4bUFGTJWW9x2p73r5adszypDGmoCEWuzUW6YHijFN2Z08N5 X3nniuJ8iIM++L1B4Owcj55vbWBTFWE+pPKKssww=
Date: Tue, 19 May 2020 17:30:01 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/tags/draft-ietf-quic-transport-28/000000-7c2546@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zuISHkjhTqTbZT51MP4Ik_CgYII>
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: Wed, 20 May 2020 00:30:04 -0000

  Branch: refs/tags/draft-ietf-quic-transport-28
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 19 19:00:11 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 57CD33A08D3 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 19:00:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 pZekYxaPIf0i for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 19:00:07 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8A11D3A08D2 for <quic-issues@ietf.org>; Tue, 19 May 2020 19:00:07 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id B4A1C8C0BF6 for <quic-issues@ietf.org>; Tue, 19 May 2020 19:00:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589940005; bh=0fvU2kaa28RexOMfXPJE/xv4vvxkUSPHLpxZRCHRyjA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=rnZxnmSq4ocn4kSVjAL8ojR9wwUMjxJGa5gFRj1t2xpy2fBodJPEAp0LrCLyKxqmZ as2YbeYHGX9qgeaoRGjR84wzYWnA3VbcHwQ4y6v8HP0RcmSfp8kZAt5I87686IAuQY yaceHnbwtCmRWwqJhtQxbOW6xT03chyLjNGATCpc=
Date: Tue, 19 May 2020 19:00:05 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK44XN56XRWVFWWZS7V42BYCLEVBNHHCKCOUQQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3673@github.com>
Subject: [quicwg/base-drafts] New packet format used before it is defined (#3673)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec48f25a49ef_3c83fe8662cd95c2711ea"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lnDCnnmTSw41M01_3vN5ys7ENeI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 02:00:10 -0000

----==_mimepart_5ec48f25a49ef_3c83fe8662cd95c2711ea
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

#3573 introduced a new bespoke packet format. I don't have issues with the format itself, but as I reviewed [draft-ietf-quic-invariants-08](https://tools.ietf.org/html/draft-ietf-quic-invariants-08) I was surprised to see it used there without any explanation as to how to decipher it. I think it would be nicer if each document that uses this format either:
- References the "Notational Conventions" section from draft-ietf-quic-transport
- Has a "Notational Conventions" section of its own explaining this format

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3673
----==_mimepart_5ec48f25a49ef_3c83fe8662cd95c2711ea
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="596964905" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3573" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3573/hovercard" href="https://github.com/quicwg/base-drafts/pull/3573">#3573</a> introduced a new bespoke packet format. I don't have issues with the format itself, but as I reviewed <a href="https://tools.ietf.org/html/draft-ietf-quic-invariants-08" rel="nofollow">draft-ietf-quic-invariants-08</a> I was surprised to see it used there without any explanation as to how to decipher it. I think it would be nicer if each document that uses this format either:</p>
<ul>
<li>References the "Notational Conventions" section from draft-ietf-quic-transport</li>
<li>Has a "Notational Conventions" section of its own explaining this format</li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3673">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5PGNMNLT2GDVWCZKDRSM2SLANCNFSM4NFQIK4A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY6TSZCWXYX4H6FWXDRSM2SLA5CNFSM4NFQIK4KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JIJ2SCA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3673",
"url": "https://github.com/quicwg/base-drafts/issues/3673",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec48f25a49ef_3c83fe8662cd95c2711ea--


From nobody Tue May 19 19:10:03 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 813843A08E4 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 19:10:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 8I2HvJpmPkXX for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 19:10:00 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 027E83A040F for <quic-issues@ietf.org>; Tue, 19 May 2020 19:09:59 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 6253DA04A1 for <quic-issues@ietf.org>; Tue, 19 May 2020 19:09:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589940598; bh=znN43nVfRxNUQ5uf/+RwsMkCSh6Yl/lSAhbijfZH5wI=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Yx6ktVKS30QOEvVOlNIKM7NuzzTfMLefwsvOHAw70xBCMvhr6eoi0eKUCFCoXrItR vs5YhiH3vUx9iEmpsIoKVojtSiWLaE2iS5Gp2ZvcHZ8AO0QttO5Lm0G9p4AgTHkxTJ Sd+/jQkAdXQnhTIaAJ6wEIljQFKOh7I5EYpVnYY4=
Date: Tue, 19 May 2020 19:09:58 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK57CQBTA32TDKXW4GF42BZHNEVBNHHCKCPB6Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3674@github.com>
Subject: [quicwg/base-drafts] PTO pseudocode should not arm the timer for PN spaces with no bytes in flight (#3674)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec491765306a_98f3f9abaecd968509799"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xSesAJZgN1BXwvn9oXEM3Nw32rg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 02:10:02 -0000

----==_mimepart_5ec491765306a_98f3f9abaecd968509799
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The text is fairly clear that PTO is armed for PN spaces with in-flight packets, but the pseudocode for arming the PTO has no consideration for whether there are bytes in flight in that PN space, and instead only considers the last sent packet in a PN space.

I believe the easiest solution is to add a bytes_in_flight indexed by PN space and then checking it in GetEarliestTimeAndSpace(or whatever replaces it) when deciding whether to arm the PTO.
https://github.com/quicwg/base-drafts/blob/master/draft-ietf-quic-recovery.md#setting-the-loss-detection-timer

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3674
----==_mimepart_5ec491765306a_98f3f9abaecd968509799
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The text is fairly clear that PTO is armed for PN spaces with in-flight packets, but the pseudocode for arming the PTO has no consideration for whether there are bytes in flight in that PN space, and instead only considers the last sent packet in a PN space.</p>
<p>I believe the easiest solution is to add a bytes_in_flight indexed by PN space and then checking it in GetEarliestTimeAndSpace(or whatever replaces it) when deciding whether to arm the PTO.<br>
<a href="https://github.com/quicwg/base-drafts/blob/master/draft-ietf-quic-recovery.md#setting-the-loss-detection-timer">https://github.com/quicwg/base-drafts/blob/master/draft-ietf-quic-recovery.md#setting-the-loss-detection-timer</a></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3674">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZA2HYAGAENJ5NGINDRSM3XNANCNFSM4NFQQAUA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6TTKKAHSCENKYI4ULRSM3XNA5CNFSM4NFQQAUKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JIJ4H3A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3674",
"url": "https://github.com/quicwg/base-drafts/issues/3674",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec491765306a_98f3f9abaecd968509799--


From nobody Tue May 19 23:47:49 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 8D0993A3AFE for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 23:47:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 Cxt3cmYfwnzA for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 23:47:46 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 76F633A3AFB for <quic-issues@ietf.org>; Tue, 19 May 2020 23:47:46 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id DF9F312128A for <quic-issues@ietf.org>; Tue, 19 May 2020 23:47:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589957265; bh=GW0Kz86WQipITxBM0nFrdJzk/3Vc0b3/B09IPzht+n4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Hkf+qoHwhHquKWHTsfybwxYP0SWLQSNc0Avv/WZgfXY2cw7+ofildxoxHUZb1I1oZ 0o0/zEQ1rv0mKxDVGZHSNEQ/8J8d6KY3XmbDg/Zty5twkHaCxWP4RAplOIS8b6WalP StbyXwpKxaYNW46jBBikFLe8cOOYQMeUVyMG5VR4=
Date: Tue, 19 May 2020 23:47:45 -0700
From: Julian Reschke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6BYIXYUVNOOMMG7VV42CZZDEVBNHHCKC3IBM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3675@github.com>
Subject: [quicwg/base-drafts] transport: fix broken link to tls (#3675)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec4d2919a90a_58513fb5b52cd968176425"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: reschke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/coXI1u2KdecE6ilZkU6VsW-RPrg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 06:47:48 -0000

----==_mimepart_5ec4d2919a90a_58513fb5b52cd968176425
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3675

-- Commit Summary --

  * transport: fix broken link to tls

-- File Changes --

    M draft-ietf-quic-transport.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3675.patch
https://github.com/quicwg/base-drafts/pull/3675.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3675

----==_mimepart_5ec4d2919a90a_58513fb5b52cd968176425
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3675'>https://github.com/quicwg/base-drafts/pull/3675</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>transport: fix broken link to tls</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3675/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3675.patch'>https://github.com/quicwg/base-drafts/pull/3675.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3675.diff'>https://github.com/quicwg/base-drafts/pull/3675.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3675">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZKBAMULOA6QNRLD6TRSN4JDANCNFSM4NFUTJ4A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZLXHW3SLB7DIKP7STRSN4JDA5CNFSM4NFUTJ4KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JILNAFQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3675",
"url": "https://github.com/quicwg/base-drafts/pull/3675",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec4d2919a90a_58513fb5b52cd968176425--


From nobody Tue May 19 23:55:27 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 A15C23A3AF2 for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 23:55:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 TE4v0MWiEq1v for <quic-issues@ietfa.amsl.com>; Tue, 19 May 2020 23:55:24 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F0DA63A3AFD for <quic-issues@ietf.org>; Tue, 19 May 2020 23:55:23 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 3088C2C2203 for <quic-issues@ietf.org>; Tue, 19 May 2020 23:55:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589957723; bh=UTkdcE1ciG6ZC0X3KI+xd/SU9H8601hjc+NV4mHSGVM=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=z0gyTUuP9WuKLlOx0wrEWX+WNWw0xM+gn3HFC9WVbu/rvzWrdJaozI6+11wuwFvw8 gwgJUBwrvoBjdRGkdbUGZji9G70zok34W4KKQ08F6FbcOG4cGrZDpB+qc0cJI8QjBE 1O1yd7woVLIOs37MiAFTipCqojzs3Hn0e1/KJaDw=
Date: Tue, 19 May 2020 23:55:23 -0700
From: Julian Reschke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7PZFBVU3LUF332BPV42C2VXEVBNHHCKC3WZY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3676@github.com>
Subject: [quicwg/base-drafts] tls: fix broken reference to -transport (#3676)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec4d45b21de2_34c73fe982ecd96024512a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: reschke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qT4mrBzc3-3HfwpHDz4tr0dFYv4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 06:55:26 -0000

----==_mimepart_5ec4d45b21de2_34c73fe982ecd96024512a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3676

-- Commit Summary --

  * tls: fix broken reference to -transport

-- File Changes --

    M draft-ietf-quic-tls.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3676.patch
https://github.com/quicwg/base-drafts/pull/3676.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3676

----==_mimepart_5ec4d45b21de2_34c73fe982ecd96024512a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3676'>https://github.com/quicwg/base-drafts/pull/3676</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>tls: fix broken reference to -transport</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3676/files#diff-afdf56cd6ee6d10d94d669541f99bc07">draft-ietf-quic-tls.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3676.patch'>https://github.com/quicwg/base-drafts/pull/3676.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3676.diff'>https://github.com/quicwg/base-drafts/pull/3676.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3676">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK662JHWCTCQVYK3NLTRSN5FXANCNFSM4NFUXNVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY3CHKBQFA6ODD5X2LRSN5FXA5CNFSM4NFUXNV2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JILO3HA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3676",
"url": "https://github.com/quicwg/base-drafts/pull/3676",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec4d45b21de2_34c73fe982ecd96024512a--


From nobody Wed May 20 00:32:22 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 013F93A3B2A for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 00:32:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 Ohun3nUteKAI for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 00:32:20 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EDA563A3B27 for <quic-issues@ietf.org>; Wed, 20 May 2020 00:32:19 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id E94892C0CCA for <quic-issues@ietf.org>; Wed, 20 May 2020 00:32:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589959938; bh=81F5W8HEMeV0AAUTL0YJk9pkoDTxZi1JJggOjoi9MqI=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=wayfLV35gl7iEG6IPyESGbYsuUov9RZh/8W9hvxwNaC3U9qfEwepGwzhyM3hFcLKy 8/TzdvhmuPfdT4gATDJ1eTpPg6hWpH5piguEbiiUeWdwRDjSLfmObaXkViRYSW9MG+ p6bds4irxFji/Be2U7PqO2dTFKXbh/7sUwz7hwdY=
Date: Wed, 20 May 2020 00:32:18 -0700
From: Julian Reschke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3YDA4SADE3OTFUY4F42C7AFEVBNHHCKC6HHM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3677@github.com>
Subject: [quicwg/base-drafts] http: dangling reference to Section 5.3 of HTTP11 (#3677)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec4dd02d9f2a_3caa3fcd740cd95c4337b8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: reschke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/51xBXltWPaK19swS_pX3gdxl84c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 07:32:21 -0000

----==_mimepart_5ec4dd02d9f2a_3caa3fcd740cd95c4337b8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3677
----==_mimepart_5ec4dd02d9f2a_3caa3fcd740cd95c4337b8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3677">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZDGL3R3MDE3UZVPILRSOBQFANCNFSM4NFVQ6EA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3QKBLFONIJW7HEGP3RSOBQFA5CNFSM4NFVQ6EKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JILY45Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3677",
"url": "https://github.com/quicwg/base-drafts/issues/3677",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec4dd02d9f2a_3caa3fcd740cd95c4337b8--


From nobody Wed May 20 04:57:27 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 A4F743A08C9 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 04:57:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 s36xDV8qTBww for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 04:57:25 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4AC883A0823 for <quic-issues@ietf.org>; Wed, 20 May 2020 04:57:25 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 972AB2C1C5D for <quic-issues@ietf.org>; Wed, 20 May 2020 04:57:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589975844; bh=SnIDMl0PlK3FCkuNidiMw6MKjQnoIga53hmzNHSBLng=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=DBy543PA1hMOkw77CrvdSQefCv/1UcXPCW4oL9/bN1PZvg5kDFroMv4b5ni9pkFo+ zv6dp5xtsZRnowMpQHYUHEWJgjJGnG8ZvDr0Mqjqb4GX44kbP59l22eu+87tpo8TYF EJbrcKnuKz61S2HY66y4+6wYgOuAl9+7lHMzH8R8=
Date: Wed, 20 May 2020 04:57:24 -0700
From: Alessandro Ghedini <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYS6ZZLXXSTO33RA7542D6CJEVBNHHCKDTLV4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3678@github.com>
Subject: [quicwg/base-drafts] Remove superfluous word (#3678)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec51b2487cee_7e653faa28acd96c114505f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ghedo
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/55-t9BmTin3JkTgjEPij5ZOqQig>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 11:57:27 -0000

----==_mimepart_5ec51b2487cee_7e653faa28acd96c114505f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3678

-- Commit Summary --

  * Remove superfluous word

-- File Changes --

    M draft-ietf-quic-tls.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3678.patch
https://github.com/quicwg/base-drafts/pull/3678.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3678

----==_mimepart_5ec51b2487cee_7e653faa28acd96c114505f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3678'>https://github.com/quicwg/base-drafts/pull/3678</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Remove superfluous word</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3678/files#diff-afdf56cd6ee6d10d94d669541f99bc07">draft-ietf-quic-tls.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3678.patch'>https://github.com/quicwg/base-drafts/pull/3678.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3678.diff'>https://github.com/quicwg/base-drafts/pull/3678.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3678">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7PXEU7BA2TPWMV7KTRSPASJANCNFSM4NF3VSPQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4TTBT45SQYUKAHZYDRSPASJA5CNFSM4NF3VSP2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JIONOXQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3678",
"url": "https://github.com/quicwg/base-drafts/pull/3678",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec51b2487cee_7e653faa28acd96c114505f--


From nobody Wed May 20 05:34:50 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 7C7843A0944 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 05:34:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 wPsQ9_Tr57Jh for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 05:34:45 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 60A423A093D for <quic-issues@ietf.org>; Wed, 20 May 2020 05:34:45 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 8E75B2C0A6C for <quic-issues@ietf.org>; Wed, 20 May 2020 05:34:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589978084; bh=T1kCglodldiKunNMGNRIlIWXsVcqZ+m7w0U3MoY/EkM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AHUeizGua1nFeNX+SOOZuPJMeryHV6PESRpRuY2lODzChPOmA6Qf0S8tssCrwQp2O Gb+lCH26PkF16SPt+F5R9XV/SafkDIPVzudOgaLRq73rwkOTCe35Y+mZNU+GK2DFmU IKbzRvT+Dd+TlBvm3HxK6TZcWzv5M6vylbd1bBps=
Date: Wed, 20 May 2020 05:34:44 -0700
From: mirjak <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZAN3QG7M7IKXWVBIN42ECOJEVBNHHCHVTIIM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3585/631445224@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3585@github.com>
References: <quicwg/base-drafts/issues/3585@github.com>
Subject: Re: [quicwg/base-drafts] Text on ECN probing (#3585)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec523e47ebf1_68ce3f9ab48cd9603875f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: mirjak
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gepl53-qcFlBNSh64-8OpEp9pg4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 12:34:49 -0000

----==_mimepart_5ec523e47ebf1_68ce3f9ab48cd9603875f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gloinul the validation mechanism itself is there to stop marking packets as ETC when you don't get feedback for any reason. So that's already covered in the text. For this part of the text the question is if you should set all packet as ETC until validation fails or if there are additional risk which justifies a more complicated scheme where only some of the packets in the validation phase are marked as ECT.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3585#issuecomment-631445224
----==_mimepart_5ec523e47ebf1_68ce3f9ab48cd9603875f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/gloinul/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gloinul">@gloinul</a> the validation mechanism itself is there to stop marking packets as ETC when you don't get feedback for any reason. So that's already covered in the text. For this part of the text the question is if you should set all packet as ETC until validation fails or if there are additional risk which justifies a more complicated scheme where only some of the packets in the validation phase are marked as ECT.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3585#issuecomment-631445224">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3P5PDLG7UFGEQGMO3RSPE6JANCNFSM4MJ5KMKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZCRHGH74EU2OWF7NLRSPE6JA5CNFSM4MJ5KMK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWRRN2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-631445224",
"url": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-631445224",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec523e47ebf1_68ce3f9ab48cd9603875f--


From nobody Wed May 20 05:51:37 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 B30423A0968 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 05:51:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 HQhlWebI53D0 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 05:51:30 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F28AA3A096D for <quic-issues@ietf.org>; Wed, 20 May 2020 05:51:29 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 37416121098 for <quic-issues@ietf.org>; Wed, 20 May 2020 05:51:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589979088; bh=esXZfG4rGlGD7EQFSZ/OJvI0oOcrCxMx2KA0RWzD4OY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SoLmrYkExEnDtOA6k/PtdJVpFldtD8G88LRHUx8MueNjF/a6Tq8DHkQsXnaWVlmWi Y/c+omUfQbnUlMha8/eiluhIcZUOGaO9UVwYAh0RCrr+s9vQfLrmuFHY7r2s+gvoNM 8y3tR8022mBWimYLqVGKaV2RfOyp4xDc+RJvw6Is=
Date: Wed, 20 May 2020 05:51:27 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5VZW73SAHQMHCQ44542EEM7EVBNHHCKDTLV4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3678/review/415298130@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3678@github.com>
References: <quicwg/base-drafts/pull/3678@github.com>
Subject: Re: [quicwg/base-drafts] Remove superfluous word (#3678)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec527cfe67b1_5da33fb2fe0cd9609407e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zONZlD6vPiE4BmMJpjapLkK8HLo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 12:51:34 -0000

----==_mimepart_5ec527cfe67b1_5da33fb2fe0cd9609407e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3678#pullrequestreview-415298130
----==_mimepart_5ec527cfe67b1_5da33fb2fe0cd9609407e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3678#pullrequestreview-415298130">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZAHENTTJPLAZLB73LRSPG47ANCNFSM4NF3VSPQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ34GLAC3R3HOV6RS3RSPG47A5CNFSM4NF3VSP2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDAPEUQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3678#pullrequestreview-415298130",
"url": "https://github.com/quicwg/base-drafts/pull/3678#pullrequestreview-415298130",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec527cfe67b1_5da33fb2fe0cd9609407e--


From nobody Wed May 20 06:55:41 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 9C8863A09F8 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 06:55:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 x40ltkQi5tat for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 06:55:38 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CDC9C3A09FB for <quic-issues@ietf.org>; Wed, 20 May 2020 06:55:37 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 9C1B26E1F93 for <quic-issues@ietf.org>; Wed, 20 May 2020 06:55:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589982936; bh=82uSbzXX29lvk+AAKwlMVnEttxXvsvLLTChLlb6qfiw=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=lxjLL5q26ajTaziDUBlGBv3jBqUlVbsDpAWuL/TLp/2tlmq1Uulrz07UcPJB0fbqX DiahYH6qCBXFPiYU4FpzIdem4ajVl7JVNBehpSuU3HOOkIRxRkJTjYodHRrjqWhBNp UAohXcLYyCItRxR5+Ie6/ufv+jqKWmbSkvdaCSIw=
Date: Wed, 20 May 2020 06:55:36 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3LYR7KY4OX2UERYH542EL5REVBNHHCKD5H4Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3679@github.com>
Subject: [quicwg/base-drafts] Fix noun/verb number agreement in the transport draft (#3679)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec536d88d268_19c73f8818acd96c1288ce"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FBb3CFh8CPHlgZIQ2o1FgEC8PX4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 13:55:40 -0000

----==_mimepart_5ec536d88d268_19c73f8818acd96c1288ce
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3679

-- Commit Summary --

  * Fix noun/verb number agreement in the transport draft

-- File Changes --

    M draft-ietf-quic-transport.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3679.patch
https://github.com/quicwg/base-drafts/pull/3679.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3679

----==_mimepart_5ec536d88d268_19c73f8818acd96c1288ce
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3679'>https://github.com/quicwg/base-drafts/pull/3679</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Fix noun/verb number agreement in the transport draft</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3679/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3679.patch'>https://github.com/quicwg/base-drafts/pull/3679.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3679.diff'>https://github.com/quicwg/base-drafts/pull/3679.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3679">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYQNB3YIJRC4QXB6Q3RSPONRANCNFSM4NF6U3UA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6IVCVT635XDJMTJ3DRSPONRA5CNFSM4NF6U3UKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JIPU7TA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3679",
"url": "https://github.com/quicwg/base-drafts/pull/3679",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec536d88d268_19c73f8818acd96c1288ce--


From nobody Wed May 20 07:38:29 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 8863B3A0A52 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 07:38:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 QnzcX2JW2dxm for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 07:38:25 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AD7B63A0A2B for <quic-issues@ietf.org>; Wed, 20 May 2020 07:38:24 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id C42768C0C4D for <quic-issues@ietf.org>; Wed, 20 May 2020 07:38:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589985503; bh=Pro/YFj0Q8+p3FE7NJq6HDmt75lD2SOWcxz4uJXZeBk=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=YGnxxcDW5azCHsKyJUNxNmfhz/Yja9FzXPEUnTVxb/rGkArQM7+rd1ufnHPbLE15U +151+WYEXzlblGFnvYMzVNML2qERNkz+LAIa6HTlPhVTVZh+/hfLaqxAcIaTNn2A4x 6mxI5slqSwNc3CcmhZ9tE9L6xxPcaGvIOApPmpHA=
Date: Wed, 20 May 2020 07:38:23 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2P4XT26DWILDYGGQV42EQ57EVBNHHCKEBHAA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3680@github.com>
Subject: [quicwg/base-drafts] Fix typo in transport draft: s/the the/the/ (#3680)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec540dfb501d_64c13f9831ecd96c18409b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/U7CLYcjC0eZiQZrfzwoyeqWnbbE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 14:38:27 -0000

----==_mimepart_5ec540dfb501d_64c13f9831ecd96c18409b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3680

-- Commit Summary --

  * Fix typo in transport draft: s/the the/the/

-- File Changes --

    M draft-ietf-quic-transport.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3680.patch
https://github.com/quicwg/base-drafts/pull/3680.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3680

----==_mimepart_5ec540dfb501d_64c13f9831ecd96c18409b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3680'>https://github.com/quicwg/base-drafts/pull/3680</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Fix typo in transport draft: s/the the/the/</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3680/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3680.patch'>https://github.com/quicwg/base-drafts/pull/3680.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3680.diff'>https://github.com/quicwg/base-drafts/pull/3680.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3680">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4ABNBRCMFWCU72OHDRSPTN7ANCNFSM4NF73UNA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZZ2LET3O6A2HO4ABLRSPTN7A5CNFSM4NF73UNKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JIQE4AA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3680",
"url": "https://github.com/quicwg/base-drafts/pull/3680",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec540dfb501d_64c13f9831ecd96c18409b--


From nobody Wed May 20 09:00:35 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 6098D3A0B62 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:00:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 mM3VyFlp0H34 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:00:25 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C62713A0B80 for <quic-issues@ietf.org>; Wed, 20 May 2020 09:00:24 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id DBF372C0C57 for <quic-issues@ietf.org>; Wed, 20 May 2020 09:00:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589990423; bh=3lirhbxsT/8jQkmVSuPisworqAQMlKJa2o2S9khLOr4=; h=Date:From:To:Subject:From; b=ra7Ped19rexkxknPOg/dXJuoLjv/xSxEUgBC2/C7SkVQUGKhb1jngHAVzZnz2siwW D4M6iKgCpXOmtoYrTxuHjCiiRdnMguG2Ka8ng/8DRODc4K5du5ngJZkoulKpOa86c6 clmdXqxnx7R8azmeVZqyFdw2LdugTuvAqCFisRsw=
Date: Wed, 20 May 2020 09:00:23 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-split-pto-pseudocode/000000-290a51@github.com>
Subject: [quicwg/base-drafts] 290a51: Split PTO calculation into a dedicated method
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/G0ZJ4hsvxrULS4ML1HmdbFj98wU>
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: Wed, 20 May 2020 16:00:33 -0000

  Branch: refs/heads/ianswett-split-pto-pseudocode
  Home:   https://github.com/quicwg/base-drafts
  Commit: 290a5113d74c36b112d3ada80edc2f3ede23325b
      https://github.com/quicwg/base-drafts/commit/290a5113d74c36b112d3ada80edc2f3ede23325b
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Split PTO calculation into a dedicated method

As @martinthomson pointed out in #3666, it was far too complex and error-prone as-is.

Als fixes #3564 and #3674 by calculating the PTO timeout for each PN space and picking the earliest, as well as checking that there are inflight packets before calculating PTO for a PN space.



From nobody Wed May 20 09:00:54 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 B8FDB3A0B56 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:00:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 WYRhfPWeaw4B for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:00:50 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 30FA13A0B52 for <quic-issues@ietf.org>; Wed, 20 May 2020 09:00:50 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 410D48C05A9 for <quic-issues@ietf.org>; Wed, 20 May 2020 09:00:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589990449; bh=eoLhSB/dKwBWniC2M/EfwR/qo5Mf/qAcccE5ueaoLl0=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=FgGFulIjyP8SQjWOED0LF0q/BqbV4bb4GpKzaWX3wxGlucVMVbXBQ3BUY2Zqjn9/O o1bd3q0Qd0ozpqUm0ZpJwFFVXRUs/NLSp/R5astxPC+E92oUqfpfA/qG26UPgWlGim T4BI25vDSFil/f0x8fW5jsaV/+j8aZiju3KProeY=
Date: Wed, 20 May 2020 09:00:49 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7RR4LK4NBTGQUFWAN42E2TDEVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681@github.com>
Subject: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec554312f99e_6c2f3ff8728cd96c2219ce"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/B2Yc2NoRjfWY19sWvKhiLb8sQYY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 16:00:53 -0000

----==_mimepart_5ec554312f99e_6c2f3ff8728cd96c2219ce
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As @martinthomson pointed out in #3666, it was far too complex and error-prone as-is.

Fixes #3564 and #3674 by calculating the PTO timeout for each PN space and picking the earliest, as well as checking that there are inflight packets before calculating PTO for a PN space.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3681

-- Commit Summary --

  * Split PTO calculation into a dedicated method

-- File Changes --

    M draft-ietf-quic-recovery.md (57)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3681.patch
https://github.com/quicwg/base-drafts/pull/3681.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681

----==_mimepart_5ec554312f99e_6c2f3ff8728cd96c2219ce
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p>As <a class=3D"user-mention" data-hovercard-type=3D"user" data-hoverca=
rd-url=3D"/users/martinthomson/hovercard" data-octo-click=3D"hovercard-li=
nk-click" data-octo-dimensions=3D"link_type:self" href=3D"https://github.=
com/martinthomson">@martinthomson</a> pointed out in <a class=3D"issue-li=
nk js-issue-link" data-error-text=3D"Failed to load title" data-id=3D"620=
118199" data-permission-text=3D"Title is private" data-url=3D"https://git=
hub.com/quicwg/base-drafts/issues/3666" data-hovercard-type=3D"pull_reque=
st" data-hovercard-url=3D"/quicwg/base-drafts/pull/3666/hovercard" href=3D=
"https://github.com/quicwg/base-drafts/pull/3666">#3666</a>, it was far t=
oo complex and error-prone as-is.</p>
<p><span class=3D"issue-keyword tooltipped tooltipped-se" aria-label=3D"T=
his pull request closes issue #3564.">Fixes</span> <a class=3D"issue-link=
 js-issue-link" data-error-text=3D"Failed to load title" data-id=3D"59216=
3912" data-permission-text=3D"Title is private" data-url=3D"https://githu=
b.com/quicwg/base-drafts/issues/3564" data-hovercard-type=3D"issue" data-=
hovercard-url=3D"/quicwg/base-drafts/issues/3564/hovercard" href=3D"https=
://github.com/quicwg/base-drafts/issues/3564">#3564</a> and <a class=3D"i=
ssue-link js-issue-link" data-error-text=3D"Failed to load title" data-id=
=3D"621404662" data-permission-text=3D"Title is private" data-url=3D"http=
s://github.com/quicwg/base-drafts/issues/3674" data-hovercard-type=3D"iss=
ue" data-hovercard-url=3D"/quicwg/base-drafts/issues/3674/hovercard" href=
=3D"https://github.com/quicwg/base-drafts/issues/3674">#3674</a> by calcu=
lating the PTO timeout for each PN space and picking the earliest, as wel=
l as checking that there are inflight packets before calculating PTO for =
a PN space.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href=3D'https://github.com/quicwg/base-drafts/pull/3681=
'>https://github.com/quicwg/base-drafts/pull/3681</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Split PTO calculation into a dedicated method</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href=3D"https://github.com/quicwg/base-drafts/pull/3681/files#diff=
-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (57)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href=3D'https://github.com/quicwg/base-drafts/pull/3681.patch'>h=
ttps://github.com/quicwg/base-drafts/pull/3681.patch</a></li>
  <li><a href=3D'https://github.com/quicwg/base-drafts/pull/3681.diff'>ht=
tps://github.com/quicwg/base-drafts/pull/3681.diff</a></li>
</ul>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3681">view it on GitHub</a>, or <a href=3D"https://gi=
thub.com/notifications/unsubscribe-auth/AFTOJK3CNTELVZ4WLFUSKG3RSP5DDANCN=
FSM4NGCCLSA">unsubscribe</a>.<img src=3D"https://github.com/notifications=
/beacon/AFTOJK2RJPU2UR62NSAU5JLRSP5DDA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFU=
VEXG43VMWVGG33NNVSW45C7NFSM4JIRD67A.gif" height=3D"1" width=3D"1" alt=3D"=
" /></p>
<script type=3D"application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681",
"url": "https://github.com/quicwg/base-drafts/pull/3681",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec554312f99e_6c2f3ff8728cd96c2219ce--


From nobody Wed May 20 09:03:25 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 7B3D43A0B57 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:03:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, TVD_SPACE_RATIO=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 CaLANpZFYA2x for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:03:21 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 70A013A0B56 for <quic-issues@ietf.org>; Wed, 20 May 2020 09:03:21 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 802FC66112B for <quic-issues@ietf.org>; Wed, 20 May 2020 09:03:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589990600; bh=fATmblONAt79mDWXfKgFRP7KozPBwdudNuLxPjhhpfE=; h=Date:From:To:Subject:From; b=iJGmJo/BXbEP0G2OyxWPKuaqKm9RpRs2mfKnDxqbiZuX0OykhnZNOxh5uNf7g4eHk eGPFe7UQNEk5QKcO7sGM1Fo4Ghi2ZVWD4fCUzku5gAcqqvwxT0IbUis+lRZPTazr3R BDwZslXFYvZBlNRNTM3dgaEUdNkaVQUvekLWkz5Q=
Date: Wed, 20 May 2020 09:03:20 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-split-pto-pseudocode/290a51-d0050a@github.com>
Subject: [quicwg/base-drafts] d0050a: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wTXPCetbGMb1hdQLa8nyrhvl9Bw>
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: Wed, 20 May 2020 16:03:23 -0000

  Branch: refs/heads/ianswett-split-pto-pseudocode
  Home:   https://github.com/quicwg/base-drafts
  Commit: d0050a08a17463fbf9f3bf25b61b50a982b4a07f
      https://github.com/quicwg/base-drafts/commit/d0050a08a17463fbf9f3bf25b61b50a982b4a07f
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Wed May 20 09:03:43 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 7A6523A0B57 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:03:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 C_UcUue-a5hi for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:03:30 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1564E3A0B56 for <quic-issues@ietf.org>; Wed, 20 May 2020 09:03:30 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 5E5CD1C0CF3 for <quic-issues@ietf.org>; Wed, 20 May 2020 09:03:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589990609; bh=KI3ZZbrrMcwTJYLB6ep6mG7Fzjup3gBxGRN/AcBRUW4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TITGvfsIoo9UzcCaPwGeop2J1Gcu2nK/pYkGHxrkATUpZcN576hHDlSWmsQP4OqGl ktc0CCu0TIrdJ9M6T/L+Gh1P7MThQOYGkxM0mKICP281NVYY24cG8cHJQYx4CnwJMW KAUxfF+XFI+33MS24doNGHZLktKC+pXE4ClmIfuI=
Date: Wed, 20 May 2020 09:03:29 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/push/5103384535@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec554d14ece4_11d53ff8b98cd95c268280"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LPG14VKmjMSnxpw6gGsu-Dyez0w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 16:03:32 -0000

----==_mimepart_5ec554d14ece4_11d53ff8b98cd95c268280
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

d0050a08a17463fbf9f3bf25b61b50a982b4a07f  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681/files/290a5113d74c36b112d3ada80edc2f3ede23325b..d0050a08a17463fbf9f3bf25b61b50a982b4a07f

----==_mimepart_5ec554d14ece4_11d53ff8b98cd95c268280
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/d0050a08a17463fbf9f3bf25b61b50a982b4a07f">d0050a0</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3681/files/290a5113d74c36b112d3ada80edc2f3ede23325b..d0050a08a17463fbf9f3bf25b61b50a982b4a07f">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7JORGAE3WUESBK7UTRSP5NDANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6YEXDABACHQHZKGYDRSP5NDA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDAOBUGU4TEOKQOVZWQIZVGEYDGMZYGQ2TGNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681/files/290a5113d74c36b112d3ada80edc2f3ede23325b..d0050a08a17463fbf9f3bf25b61b50a982b4a07f",
"url": "https://github.com/quicwg/base-drafts/pull/3681/files/290a5113d74c36b112d3ada80edc2f3ede23325b..d0050a08a17463fbf9f3bf25b61b50a982b4a07f",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec554d14ece4_11d53ff8b98cd95c268280--


From nobody Wed May 20 09:08:28 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 9821A3A0AB1 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:08:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.099
X-Spam-Level: 
X-Spam-Status: No, score=-2.099 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, TVD_SPACE_RATIO=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 3Cxk6qmEwcw7 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:08:24 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D42053A0AA2 for <quic-issues@ietf.org>; Wed, 20 May 2020 09:07:42 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id D66326A0B59 for <quic-issues@ietf.org>; Wed, 20 May 2020 09:07:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589990861; bh=pfwtUVINDdjvVvgOMiWA5nDnR+uAilx7QCdoJNaHmuI=; h=Date:From:To:Subject:From; b=OIKZhFhqEenT/K52vD5CJRLvT+bE8Wvk/gp7pmdVHul3mxKSHKiKZJWeBU8ZwLrnF 0EH1MuZogie+Ok20B4p2/qVmEX3VKn5IV6a1PDum4fV/V8R7ofweZ+V4XZtK7RoT/8 fC4hLKi992JbouIng8YqzADNK3KlknN3Ygs6HO/I=
Date: Wed, 20 May 2020 09:07:41 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-split-pto-pseudocode/d0050a-65b036@github.com>
Subject: [quicwg/base-drafts] 65b036: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/T76c1gBXYrJwLuFMAK4xnIvLTSI>
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: Wed, 20 May 2020 16:08:26 -0000

  Branch: refs/heads/ianswett-split-pto-pseudocode
  Home:   https://github.com/quicwg/base-drafts
  Commit: 65b036d2c0437e81e0533a76e863bebfaa3207a3
      https://github.com/quicwg/base-drafts/commit/65b036d2c0437e81e0533a76e863bebfaa3207a3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Wed May 20 09:08:31 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 9B9B13A0AB1 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:08:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.553
X-Spam-Level: 
X-Spam-Status: No, score=-1.553 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 XnrcuOu0-qAD for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:08:24 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 535E43A0ACE for <quic-issues@ietf.org>; Wed, 20 May 2020 09:07:51 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 8C2566A1A4C for <quic-issues@ietf.org>; Wed, 20 May 2020 09:07:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589990870; bh=l1QXXyayTzmgQV2XIZH3REVYDAZW/24lZk7qrimQHQk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=goiRdzii2NQ4hzbchcvMxWQl4uq8FhgpOz01g8hXcvOH45IWfSYpzytjtMKSIETyT 6iztVsufziNJtHkbjdkLgL1E8odfx+PFfvfHx9a0J3x2s9NRsqC6Cf8Qmh94ogydFY EmHmy2SWjyDF4/ZdicwSIjoFSAtRBQV1l4MNoKR8=
Date: Wed, 20 May 2020 09:07:50 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/push/5103409149@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec555d67cdb6_40503fa0f68cd968250339"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/G30yFqFbz7l0qCLVbmEQVAd_Ek4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 16:08:27 -0000

----==_mimepart_5ec555d67cdb6_40503fa0f68cd968250339
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

65b036d2c0437e81e0533a76e863bebfaa3207a3  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681/files/d0050a08a17463fbf9f3bf25b61b50a982b4a07f..65b036d2c0437e81e0533a76e863bebfaa3207a3

----==_mimepart_5ec555d67cdb6_40503fa0f68cd968250339
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/65b036d2c0437e81e0533a76e863bebfaa3207a3">65b036d</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3681/files/d0050a08a17463fbf9f3bf25b61b50a982b4a07f..65b036d2c0437e81e0533a76e863bebfaa3207a3">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2UQYLOEAO2LSREORDRSP55NANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7FT6IXMYKWSRR2TLTRSP55NA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDAOBUGU4TEOKQOVZWQIZVGEYDGNBQHEYTIOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681/files/d0050a08a17463fbf9f3bf25b61b50a982b4a07f..65b036d2c0437e81e0533a76e863bebfaa3207a3",
"url": "https://github.com/quicwg/base-drafts/pull/3681/files/d0050a08a17463fbf9f3bf25b61b50a982b4a07f..65b036d2c0437e81e0533a76e863bebfaa3207a3",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec555d67cdb6_40503fa0f68cd968250339--


From nobody Wed May 20 09:12:00 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 56E1F3A0B69 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:11:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 NeBOdcExIJRo for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:11:56 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C1DB33A0B68 for <quic-issues@ietf.org>; Wed, 20 May 2020 09:11:56 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 0E90A8C0BCA for <quic-issues@ietf.org>; Wed, 20 May 2020 09:11:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589991116; bh=+fetTQgtyl5EApmn9mspLBjC1ps+IfsE3y++neyqmes=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FWWGJpAkYKOLyoQTW6MYyxFgb3H8/CsJj6p/uylCSDpDzVsvg8NPTr/miQscYJk6Y 5hd9M59HjvroV0TK8KJyRSF/iAw46KZWtCQ0+EQrfiR2oVY3hPpi3yTU3qdLmZpz4C yQsFz3XZLhwhY/tHnG+pwsnL52XQ8Rfu578WWh2s=
Date: Wed, 20 May 2020 09:11:55 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK24675AI2NIMYPZC5542E34XEVBNHHCJ5SAW4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3666/c631574438@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3666@github.com>
References: <quicwg/base-drafts/pull/3666@github.com>
Subject: Re: [quicwg/base-drafts] Include ack_delay when deciding with PN space to arm PTO for (#3666)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec556cbf2f07_11b83ff8b98cd95c304329"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/524D9CLu2l8OTHI4t-6lRtMW2Wo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 16:11:58 -0000

----==_mimepart_5ec556cbf2f07_11b83ff8b98cd95c304329
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks for your comments, I created #3681 to fix #3564 and another one(#3674) I noticed while looking more closely at the PTO code.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3666#issuecomment-631574438
----==_mimepart_5ec556cbf2f07_11b83ff8b98cd95c304329
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>
<p>Thanks for your comments, I created <a class=3D"issue-link js-issue-li=
nk" data-error-text=3D"Failed to load title" data-id=3D"621879230" data-p=
ermission-text=3D"Title is private" data-url=3D"https://github.com/quicwg=
/base-drafts/issues/3681" data-hovercard-type=3D"pull_request" data-hover=
card-url=3D"/quicwg/base-drafts/pull/3681/hovercard" href=3D"https://gith=
ub.com/quicwg/base-drafts/pull/3681">#3681</a> to fix <a class=3D"issue-l=
ink js-issue-link" data-error-text=3D"Failed to load title" data-id=3D"59=
2163912" data-permission-text=3D"Title is private" data-url=3D"https://gi=
thub.com/quicwg/base-drafts/issues/3564" data-hovercard-type=3D"issue" da=
ta-hovercard-url=3D"/quicwg/base-drafts/issues/3564/hovercard" href=3D"ht=
tps://github.com/quicwg/base-drafts/issues/3564">#3564</a> and another on=
e(<a class=3D"issue-link js-issue-link" data-error-text=3D"Failed to load=
 title" data-id=3D"621404662" data-permission-text=3D"Title is private" d=
ata-url=3D"https://github.com/quicwg/base-drafts/issues/3674" data-hoverc=
ard-type=3D"issue" data-hovercard-url=3D"/quicwg/base-drafts/issues/3674/=
hovercard" href=3D"https://github.com/quicwg/base-drafts/issues/3674">#36=
74</a>) I noticed while looking more closely at the PTO code.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3666#issuecomment-631574438">view it on GitHub</a>, o=
r <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJKZQQQ=
FCZH2TVKTFVH3RSP6MXANCNFSM4ND7HVNQ">unsubscribe</a>.<img src=3D"https://g=
ithub.com/notifications/beacon/AFTOJK2DEPB4TNAPBHGVCFLRSP6MXA5CNFSM4ND7HV=
N2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWSQ7JQ.gif=
" height=3D"1" width=3D"1" alt=3D"" /></p>
<script type=3D"application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3666#issuecomment-6=
31574438",
"url": "https://github.com/quicwg/base-drafts/pull/3666#issuecomment-6315=
74438",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>=

----==_mimepart_5ec556cbf2f07_11b83ff8b98cd95c304329--


From nobody Wed May 20 09:12:06 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 133E33A0B6C for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:12:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 aj8Dt7ocTv0i for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:12:02 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F210F3A0B69 for <quic-issues@ietf.org>; Wed, 20 May 2020 09:12:01 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 3F220C616FC for <quic-issues@ietf.org>; Wed, 20 May 2020 09:12:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589991121; bh=6dV1tw6jKw5lIg48C683r9fJx9yeX5quPnR/wk+INNA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=AYYO71OH3uMUtJ8bg5fOCKQm4ITPzy2gtj408A7jR2YmWAe5/GJ/bq5qzyZvM5RPr ofAlM9xZ2fFVQHiVcOQOUMmWcV2u7JyJYdeAhbdqgnxfrC9QwhkSgGNpObTzXZfZi0 7Yw57WiAIKuWoSUccOkEg3Dlh02iUzDEtSkXAkPM=
Date: Wed, 20 May 2020 09:12:01 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2E5YR32PJJWF7RXYN42E35DEVBNHHCJ5SAW4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3666/issue_event/3357219334@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3666@github.com>
References: <quicwg/base-drafts/pull/3666@github.com>
Subject: Re: [quicwg/base-drafts] Include ack_delay when deciding with PN space to arm PTO for (#3666)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec556d12f08a_4fde3ff8e14cd96027312d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/69dDefFXbq8k3AHz84ncsAfSUWs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 16:12:03 -0000

----==_mimepart_5ec556d12f08a_4fde3ff8e14cd96027312d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3666.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3666#event-3357219334
----==_mimepart_5ec556d12f08a_4fde3ff8e14cd96027312d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="620118199" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3666" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3666/hovercard" href="https://github.com/quicwg/base-drafts/pull/3666">#3666</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3666#event-3357219334">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYTODRQHJ4P7GL5DWDRSP6NDANCNFSM4ND7HVNQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7QJSFFDWSJ4MCYWD3RSP6NDA5CNFSM4ND7HVN2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZANRUBQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3666#event-3357219334",
"url": "https://github.com/quicwg/base-drafts/pull/3666#event-3357219334",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec556d12f08a_4fde3ff8e14cd96027312d--


From nobody Wed May 20 09:17:53 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 59EF63A0C27 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:17:52 -0700 (PDT)
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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 2jdYje2ktaTR for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:17:51 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 564683A0C1C for <quic-issues@ietf.org>; Wed, 20 May 2020 09:17:51 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 6338FA1D9F for <quic-issues@ietf.org>; Wed, 20 May 2020 09:17:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589991470; bh=SJjahCe1/5+iMSVXbGt89/wtc0mePTRnhp+2DjVFrqY=; h=Date:From:To:Subject:From; b=wSQwY+sNo3hWqHRP17MyupBcgQPpWPAk3cn/S7u+xa3Lg5hQ1SgIMLAd7zvY1AsZi KcR5/llshsQr6TUIiVdlnn7fnSF8eVpMKPp+I1gpHPf/OnoUWe4Jh6bS+hhKefZEj/ 2gAxHCmnBgVRb/wEpi562ou1TQNYXePVjY+0HBt4=
Date: Wed, 20 May 2020 09:17:50 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-split-pto-pseudocode/65b036-2630bf@github.com>
Subject: [quicwg/base-drafts] 2630bf: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NzQuUzKAfWw0_C6X-Dzd-oBvryo>
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: Wed, 20 May 2020 16:17:53 -0000

  Branch: refs/heads/ianswett-split-pto-pseudocode
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2630bfdfe743909fb7bd3a92a41bd5f794cc503d
      https://github.com/quicwg/base-drafts/commit/2630bfdfe743909fb7bd3a92a41bd5f794cc503d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Wed May 20 09:17:58 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 2C4FF3A0C31 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:17:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 FpaWWllPBX3w for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:17:55 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D76943A0C27 for <quic-issues@ietf.org>; Wed, 20 May 2020 09:17:54 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 23B352C0B97 for <quic-issues@ietf.org>; Wed, 20 May 2020 09:17:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589991474; bh=S0lsTW9xoOzZnksomHKz+FhGQAM+1nqRvpMVeICJT8s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SESx2qZtC7T2cMj4QWXz1ynP+ViSiP71B9EgjsK85LoBVnzgw/qfbHAbbG2L76mrr j9jg2EAGkzcQblej2urISu6GE/eYn7rOnN6tniMO+y2CE0jUU1KN1N82J5qDbgEGPM +Wz/nFlCr3BZ8JXOSWAKLFHW0eExTPktDvH52Lfo=
Date: Wed, 20 May 2020 09:17:54 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4BFCOSMTHKICZ5FH542E4TFEVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/review/415501201@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5583213515_110d3f984dacd968251994"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/p-sNxK4Mwn_opDflgPK6v53iUCg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 16:17:56 -0000

----==_mimepart_5ec5583213515_110d3f984dacd968251994
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



>    space = Initial
   for pn_space in [ Handshake, ApplicationData ]:
-    if (times[pn_space] != 0 &&
-        (time == 0 || times[pn_space] < time) &&
-        # Skip ApplicationData until handshake completion.
-        (pn_space != ApplicationData ||
-          IsHandshakeComplete()):
-      time = times[pn_space];
+    if (time == 0 || loss_time[pn_space] < time):
+      time = loss_times[pn_space];

```suggestion
      time = loss_time[pn_space];
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-415501201
----==_mimepart_5ec5583213515_110d3f984dacd968251994
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ianswett</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3681#discussi=
on_r428139672">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;    space =3D Initial=0D
   for pn_space in [ Handshake, ApplicationData ]:=0D
-    if (times[pn_space] !=3D 0 &amp;&amp;=0D
-        (time =3D=3D 0 || times[pn_space] &lt; time) &amp;&amp;=0D
-        # Skip ApplicationData until handshake completion.=0D
-        (pn_space !=3D ApplicationData ||=0D
-          IsHandshakeComplete()):=0D
-      time =3D times[pn_space];=0D
+    if (time =3D=3D 0 || loss_time[pn_space] &lt; time):=0D
+      time =3D loss_times[pn_space];=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-      time =3D loss_times[pn_space];=0D
+      time =3D loss_time[pn_space];=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3681#pullrequestreview-415501201">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KYEBIY7C2XOKRJ2EQLRSP7DFANCNFSM4NGCCLSA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKZVOUY673VMUQIB2RLRSP7DFA5CNFSM4=
NGCCLSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODDCAXEI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestrev=
iew-415501201",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview=
-415501201",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec5583213515_110d3f984dacd968251994--


From nobody Wed May 20 09:18:05 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 7AB9F3A0C41 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:18:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 YPm1DbnpNNLR for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 09:18:00 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 23E3E3A0C1F for <quic-issues@ietf.org>; Wed, 20 May 2020 09:18:00 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 7F29A9621DC for <quic-issues@ietf.org>; Wed, 20 May 2020 09:17:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589991479; bh=hSLmihT4yQpXyknEik6UcdYByIfPry+cA4ZocljI5Wc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NVMFineVRSSTunXBTotkwyoC+axI3CWAh4bN7n3x4R3/u3wUrDC3wXTlB1AAlNuYC dXBm6zlIKsarzK503aH12ZynFEQuk7h4rLEcoEGl3bthpC/CHWDBVtCqz/e66ZN3ir kKPvjXWGREphfuIuENPOUM2TqQuThidT1aW2b/gU=
Date: Wed, 20 May 2020 09:17:59 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/push/5103468345@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5583770eb4_1bad3fe24c0cd96034798c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/q92yn4zAfZvX8Va_r2-vepW2dyM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 16:18:04 -0000

----==_mimepart_5ec5583770eb4_1bad3fe24c0cd96034798c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

2630bfdfe743909fb7bd3a92a41bd5f794cc503d  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681/files/65b036d2c0437e81e0533a76e863bebfaa3207a3..2630bfdfe743909fb7bd3a92a41bd5f794cc503d

----==_mimepart_5ec5583770eb4_1bad3fe24c0cd96034798c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/2630bfdfe743909fb7bd3a92a41bd5f794cc503d">2630bfd</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3681/files/65b036d2c0437e81e0533a76e863bebfaa3207a3..2630bfdfe743909fb7bd3a92a41bd5f794cc503d">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2A4LKNZKVGJUW565TRSP7DPANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7ZX2T6LCIDDPRLQNTRSP7DPA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDAOBUGU4TEOKQOVZWQIZVGEYDGNBWHAZTINI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681/files/65b036d2c0437e81e0533a76e863bebfaa3207a3..2630bfdfe743909fb7bd3a92a41bd5f794cc503d",
"url": "https://github.com/quicwg/base-drafts/pull/3681/files/65b036d2c0437e81e0533a76e863bebfaa3207a3..2630bfdfe743909fb7bd3a92a41bd5f794cc503d",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec5583770eb4_1bad3fe24c0cd96034798c--


From nobody Wed May 20 10:20:24 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 CB6513A09C7 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 10:20:21 -0700 (PDT)
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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 3cKq0Pr-yXUH for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 10:20:20 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 24EE93A0933 for <quic-issues@ietf.org>; Wed, 20 May 2020 10:20:19 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 35331C60C10 for <quic-issues@ietf.org>; Wed, 20 May 2020 10:20:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589995219; bh=bekC2MxmUBYUnEl+T7e9b6BMP4gwIefXe2mnPZTkrAU=; h=Date:From:To:Subject:From; b=AkjCjW06AONClCBTkiCmQT25N+mrHSMNE/+o7MsRHEZDngPoXkylHNfmzRKZZ4zWE b6YR7wgo64kgHa5f2C6s0D0GrLbvaZ2+aHOiTfOvJUNdMelq/o3hXX1d2HMUrx9Uks +lHNQnoMrVPfUk5QEmCsTF9fPfuUYbWbbHjP9hz4=
Date: Wed, 20 May 2020 10:20:19 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-split-pto-pseudocode/2630bf-83727c@github.com>
Subject: [quicwg/base-drafts] 83727c: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8OjS_mMgOA1oXbex4I1sG98ImUw>
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: Wed, 20 May 2020 17:20:22 -0000

  Branch: refs/heads/ianswett-split-pto-pseudocode
  Home:   https://github.com/quicwg/base-drafts
  Commit: 83727ca4f10a4d3866ea026efff3cb833111d1f8
      https://github.com/quicwg/base-drafts/commit/83727ca4f10a4d3866ea026efff3cb833111d1f8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Wed May 20 10:20:33 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 82B4D3A09C7 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 10:20:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 piMKxqW4o98q for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 10:20:30 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4F0393A0933 for <quic-issues@ietf.org>; Wed, 20 May 2020 10:20:30 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 7DB1E8C119D for <quic-issues@ietf.org>; Wed, 20 May 2020 10:20:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589995228; bh=Vp4Ag/hqW/EF3HeIQPDgYRC9veaFw4IRRNght+slOac=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=h5QarF1ZO6/95h5x0nhGC9SOlwm3hBmwGyJQFT4h5SjaxUwFfj4XAaxJ1wExgzDed PkDJCNViLhHrQHDMufEkeLWDNg8wSaPy8tq/qo5o9sdDjD3wfPB42GbUzrBT1dcDRF gSWNOYkOSNHDgtCDDFzBMJlZ8xvSr4HSX6+Pnb44=
Date: Wed, 20 May 2020 10:20:28 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/push/5103797171@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec566dc6e72b_3533fdacf4cd96834540"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rBNdJQDuTMSSqeUzwu-ncQufHgE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 17:20:32 -0000

----==_mimepart_5ec566dc6e72b_3533fdacf4cd96834540
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

83727ca4f10a4d3866ea026efff3cb833111d1f8  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681/files/2630bfdfe743909fb7bd3a92a41bd5f794cc503d..83727ca4f10a4d3866ea026efff3cb833111d1f8

----==_mimepart_5ec566dc6e72b_3533fdacf4cd96834540
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/83727ca4f10a4d3866ea026efff3cb833111d1f8">83727ca</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3681/files/2630bfdfe743909fb7bd3a92a41bd5f794cc503d..83727ca4f10a4d3866ea026efff3cb833111d1f8">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK56AQBPQZSO2R3SFM3RSQGNZANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYYHCBR7K37XBWKG7TRSQGNZA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDAOBUGU4TEOKQOVZWQIZVGEYDGNZZG4YTOMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681/files/2630bfdfe743909fb7bd3a92a41bd5f794cc503d..83727ca4f10a4d3866ea026efff3cb833111d1f8",
"url": "https://github.com/quicwg/base-drafts/pull/3681/files/2630bfdfe743909fb7bd3a92a41bd5f794cc503d..83727ca4f10a4d3866ea026efff3cb833111d1f8",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec566dc6e72b_3533fdacf4cd96834540--


From nobody Wed May 20 10:31:15 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 62A293A0AF4 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 10:31:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 4P1OYUfLkmRX for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 10:31:11 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B15853A0AFA for <quic-issues@ietf.org>; Wed, 20 May 2020 10:31:10 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id C8F04960683 for <quic-issues@ietf.org>; Wed, 20 May 2020 10:31:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1589995869; bh=zZhbsNOyVR14H0kXnZIEAFQ3mCxVyGK7/4L29HAcTec=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QV/saEPMCXgzlYARd6Au0WK88BPwA4DXN9PohDo6nZAqogY/wo/8ZAYH5jeaifNNK /5ORH+yfhVcutIw9fmGhYCVP3L2DhKJdSzrUHsJHcS4TvcTiygrLKR4gspxCVJsmTl WG6oMZPaTcop9+6VBq8gwn3sdgewvUj/slEtUzBc=
Date: Wed, 20 May 2020 10:31:09 -0700
From: mjoras <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4ZPLSCCV6ZTFAOAYF42FFF3EVBNHHCFNKKLA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3526/631617976@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3526@github.com>
References: <quicwg/base-drafts/issues/3526@github.com>
Subject: Re: [quicwg/base-drafts] QUIC PTO is too conservative, causing a measurable regression in tail latency (#3526)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5695db96e6_5f463fb56f4cd95c97251"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: mjoras
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Wu0tHcizl4OPPbYGFlYZXqhXJg8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 17:31:12 -0000

----==_mimepart_5ec5695db96e6_5f463fb56f4cd95c97251
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I will have data on this in a few days.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3526#issuecomment-631617976
----==_mimepart_5ec5695db96e6_5f463fb56f4cd95c97251
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I will have data on this in a few days.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3526#issuecomment-631617976">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2QNJEWH63ADOHGHYDRSQHV3ANCNFSM4LMHRHIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3URZZT5TCNMBFCZVDRSQHV3A5CNFSM4LMHRHIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWS3TOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment-631617976",
"url": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment-631617976",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec5695db96e6_5f463fb56f4cd95c97251--


From nobody Wed May 20 12:21:47 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 7DFA93A0D29 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 12:21:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 eiUGe5QAOQE1 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 12:21:43 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6DDC73A0D22 for <quic-issues@ietf.org>; Wed, 20 May 2020 12:21:43 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 852F0E0062 for <quic-issues@ietf.org>; Wed, 20 May 2020 12:21:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590002501; bh=jUzO+lRPq5gUbNWDRxVouEnKdwq4vxsuVPxnSEk2d04=; h=Date:From:To:Subject:From; b=hbp+7ArBlsWRDj8nK0IFwAKN297YAMMyh8op2NQsRZQiGBMupD8ocUjBqrfsMmY4+ 8ovLxZHSnjh5rewkqgAEkeovh1oCUDjlv96srumoXVQLcliD9NNwbHaJvgDRduuPf0 eoBRVKCXy0O0yvFCD85htQLwvIDLksUhOIftp9iQ=
Date: Wed, 20 May 2020 12:21:41 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-split-pto-pseudocode/83727c-f10875@github.com>
Subject: [quicwg/base-drafts] f10875: Fix errors
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FIAhA4vqQ9MBSJ1JVa2ugkrCC4o>
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: Wed, 20 May 2020 19:21:45 -0000

  Branch: refs/heads/ianswett-split-pto-pseudocode
  Home:   https://github.com/quicwg/base-drafts
  Commit: f10875ed05f2edd3fe121631bf89c4a877204fb5
      https://github.com/quicwg/base-drafts/commit/f10875ed05f2edd3fe121631bf89c4a877204fb5
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Fix errors



From nobody Wed May 20 12:21:54 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 94D4E3A0D30 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 12:21:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 LBuRo3M_kLEJ for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 12:21:50 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 462853A0D27 for <quic-issues@ietf.org>; Wed, 20 May 2020 12:21:50 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 8CC5BC610D2 for <quic-issues@ietf.org>; Wed, 20 May 2020 12:21:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590002509; bh=xUX62ZUHSmUaRCU7VbZZ0nvwSa7R/TkwYt7N9cIlXBI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=M7jUFbHSC6R2hFYzVtctnxAj0tzMNOqKBs+CbCVtLEwTp1N62xwyh9wKBDkmh4I7n ULsqTPcJ3lFwgRxIoUu5AeAXW5iQts7+IDwnCcyPvLtlZreq9WBtf1TuQyAeEj7dtJ k7VBx/b6d+iNEBOAED2xtu0NBVxYA9xXb2diOAJU=
Date: Wed, 20 May 2020 12:21:49 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/push/5104383155@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5834d7d66f_63bb3fb5c70cd96c108672"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/odM74-dYXNN9v2m9zs-Wq5PgnWc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 19:21:52 -0000

----==_mimepart_5ec5834d7d66f_63bb3fb5c70cd96c108672
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

f10875ed05f2edd3fe121631bf89c4a877204fb5  Fix errors


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681/files/83727ca4f10a4d3866ea026efff3cb833111d1f8..f10875ed05f2edd3fe121631bf89c4a877204fb5

----==_mimepart_5ec5834d7d66f_63bb3fb5c70cd96c108672
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/f10875ed05f2edd3fe121631bf89c4a877204fb5">f10875e</a>  Fix errors</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3681/files/83727ca4f10a4d3866ea026efff3cb833111d1f8..f10875ed05f2edd3fe121631bf89c4a877204fb5">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZQGWHTCASINH32RFDRSQUU3ANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4NTHGMDHDWCDWIHZDRSQUU3A5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDAOBUGU4TEOKQOVZWQIZVGEYDIMZYGMYTKNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681/files/83727ca4f10a4d3866ea026efff3cb833111d1f8..f10875ed05f2edd3fe121631bf89c4a877204fb5",
"url": "https://github.com/quicwg/base-drafts/pull/3681/files/83727ca4f10a4d3866ea026efff3cb833111d1f8..f10875ed05f2edd3fe121631bf89c4a877204fb5",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec5834d7d66f_63bb3fb5c70cd96c108672--


From nobody Wed May 20 12:22:39 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 76ED13A0D5C for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 12:22:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Dfg_PQZpI0jF for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 12:22:35 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1E3193A0D6C for <quic-issues@ietf.org>; Wed, 20 May 2020 12:22:35 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 5085D6E00AB for <quic-issues@ietf.org>; Wed, 20 May 2020 12:22:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590002554; bh=mLZ/g+VrFLv/3PZZnHXZ4bsU7w7mNPcoQDeoBeKhxTc=; h=Date:From:To:Subject:From; b=aRlp7wh1GIjcKNUjBUUQtD9hvquE1QV81XYQ/I+QmFsHKxZ+MQGcsuOo/sKWgsPMm LNEjeh2uIZktiKQgh1QSJk+FeC0FHzeUySkOI1uWd1Lsv2Y/bhD0/TTaFkcMCqNoOB vxwiptqqXr2Ky5h1x+lTh5T7tuFuNCFpmZKuL30U=
Date: Wed, 20 May 2020 12:22:34 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/061258-50e7af@github.com>
Subject: [quicwg/base-drafts] 50e7af: Script updating gh-pages from f10875ed. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vHYDKWWnFrkDYMZ75zcGkndaoC8>
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: Wed, 20 May 2020 19:22:38 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 50e7aff918ea7cfaf3b6a9d65dd4bda11e1f02df
      https://github.com/quicwg/base-drafts/commit/50e7aff918ea7cfaf3b6a9d65dd4bda11e1f02df
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    R alternative-format/draft-ietf-quic-http.html
    R alternative-format/draft-ietf-quic-http.txt
    R alternative-format/draft-ietf-quic-invariants.html
    R alternative-format/draft-ietf-quic-invariants.txt
    R alternative-format/draft-ietf-quic-qpack.html
    R alternative-format/draft-ietf-quic-qpack.txt
    R alternative-format/draft-ietf-quic-recovery.html
    R alternative-format/draft-ietf-quic-recovery.txt
    R alternative-format/draft-ietf-quic-tls.html
    R alternative-format/draft-ietf-quic-tls.txt
    R alternative-format/draft-ietf-quic-transport.html
    R alternative-format/draft-ietf-quic-transport.txt
    R alternative-format/index.html
    A ianswett-split-pto-pseudocode/draft-ietf-quic-http.html
    A ianswett-split-pto-pseudocode/draft-ietf-quic-http.txt
    A ianswett-split-pto-pseudocode/draft-ietf-quic-invariants.html
    A ianswett-split-pto-pseudocode/draft-ietf-quic-invariants.txt
    A ianswett-split-pto-pseudocode/draft-ietf-quic-qpack.html
    A ianswett-split-pto-pseudocode/draft-ietf-quic-qpack.txt
    A ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.html
    A ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.txt
    A ianswett-split-pto-pseudocode/draft-ietf-quic-tls.html
    A ianswett-split-pto-pseudocode/draft-ietf-quic-tls.txt
    A ianswett-split-pto-pseudocode/draft-ietf-quic-transport.html
    A ianswett-split-pto-pseudocode/draft-ietf-quic-transport.txt
    A ianswett-split-pto-pseudocode/index.html
    M index.html
    R spa-clarifications/draft-ietf-quic-http.html
    R spa-clarifications/draft-ietf-quic-http.txt
    R spa-clarifications/draft-ietf-quic-invariants.html
    R spa-clarifications/draft-ietf-quic-invariants.txt
    R spa-clarifications/draft-ietf-quic-qpack.html
    R spa-clarifications/draft-ietf-quic-qpack.txt
    R spa-clarifications/draft-ietf-quic-recovery.html
    R spa-clarifications/draft-ietf-quic-recovery.txt
    R spa-clarifications/draft-ietf-quic-tls.html
    R spa-clarifications/draft-ietf-quic-tls.txt
    R spa-clarifications/draft-ietf-quic-transport.html
    R spa-clarifications/draft-ietf-quic-transport.txt
    R spa-clarifications/index.html

  Log Message:
  -----------
  Script updating gh-pages from f10875ed. [ci skip]



From nobody Wed May 20 12:22:48 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 5BBFE3A0D76 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 12:22:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 Z5focci-xChH for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 12:22:46 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 276773A0D68 for <quic-issues@ietf.org>; Wed, 20 May 2020 12:22:46 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 5455A282C67 for <quic-issues@ietf.org>; Wed, 20 May 2020 12:22:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590002565; bh=vOxE5oA1IZd/tDlXmPv4bGTXGg/7T9v1Fz8/H+p2/8g=; h=Date:From:To:Subject:From; b=M8euKmqfoBxratVU6NrBqQUSQEWmnOC/Tsqs6/EgN9b7BfVeBFJ1umgCbTD1dS0ie Cm0mNm8/cxEqL6uhAmpQAMh6UFvYUFjOByjPyB20ixa6X/2RM3dM+gBv2c1PGiX1M4 kIKw5p6K3xta88hW/k23mVS6bI+66jN3PMVQo83E=
Date: Wed, 20 May 2020 12:22:45 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/50e7af-a84f75@github.com>
Subject: [quicwg/base-drafts] a84f75: Script updating archive at 2020-05-20T19:22:25Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PwpmoCka8fFMFDQEuffzEkYD5Xk>
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: Wed, 20 May 2020 19:22:47 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: a84f754b4733a0a81e611963af0de90b0522000c
      https://github.com/quicwg/base-drafts/commit/a84f754b4733a0a81e611963af0de90b0522000c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-20T19:22:25Z. [ci skip]



From nobody Wed May 20 13:18:56 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 59B213A0AD5 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 13:18:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 cQaq27rK4UAR for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 13:18:53 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6ED4C3A0AD4 for <quic-issues@ietf.org>; Wed, 20 May 2020 13:18:53 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 5A994521F12 for <quic-issues@ietf.org>; Wed, 20 May 2020 13:18:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590005931; bh=21g5gjAjS4sY4ECQ8BaHK+flzvtIl6ON/tVLdqL6G3s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kD8rkbLmIPDLJQQdH1wYML/3eQhmY85CdHJgTZat84LqNYP2qHdY1zupwD+ODHqov ltB2yP4FB+SovzK4n5ioVi28ZfX8/r/lnuJEqO5p4QzSuVG3SLOZD+rJXSn/1BPbKA W2OJ1Du7VO008+NGj6O//OXePHiM4yDrII+XNpn8=
Date: Wed, 20 May 2020 13:18:51 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5FD4K2LLAO7KVD3QN42FY2XEVBNHHCKCGAH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3670/review/415683236@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3670@github.com>
References: <quicwg/base-drafts/pull/3670@github.com>
Subject: Re: [quicwg/base-drafts] Scope of disable_active_migration (#3670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec590ab4aac5_33a03fb375ecd96c79178"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OxKM6UqV5xvMNOgHA9mqVA1_OKw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 20:18:55 -0000

----==_mimepart_5ec590ab4aac5_33a03fb375ecd96c79178
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop commented on this pull request.



> @@ -4872,11 +4874,11 @@ max_ack_delay (0x0b):
 disable_active_migration (0x0c):
 
 : The disable active migration transport parameter is included if the endpoint
-  does not support active connection migration ({{migration}}). Peers of an
-  endpoint that sets this transport parameter MUST NOT send any packets,
-  including probing packets ({{probing}}), from a local address or port other
-  than that used to perform the handshake.  This parameter is a zero-length
-  value.
+  does not support active connection migration ({{migration}}) on the address
+  being used during the handshake.  Peers of an endpoint that sets this
+  transport parameter MUST NOT send any packets, including probing packets
+  ({{probing}}), from a local address or port other than that used to perform
+  the handshake. This parameter is a zero-length value.

I toyed with that and the existing sentence already has so many sub-phrases that it became too unwieldy.  I'll see if I can split it up any better.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3670#discussion_r428283381
----==_mimepart_5ec590ab4aac5_33a03fb375ecd96c79178
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3670#discussion_r428283381">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4872,11 +4874,11 @@ max_ack_delay (0x0b):
 disable_active_migration (0x0c):
 
 : The disable active migration transport parameter is included if the endpoint
-  does not support active connection migration ({{migration}}). Peers of an
-  endpoint that sets this transport parameter MUST NOT send any packets,
-  including probing packets ({{probing}}), from a local address or port other
-  than that used to perform the handshake.  This parameter is a zero-length
-  value.
+  does not support active connection migration ({{migration}}) on the address
+  being used during the handshake.  Peers of an endpoint that sets this
+  transport parameter MUST NOT send any packets, including probing packets
+  ({{probing}}), from a local address or port other than that used to perform
+  the handshake. This parameter is a zero-length value.
</pre>
<p>I toyed with that and the existing sentence already has so many sub-phrases that it became too unwieldy.  I'll see if I can split it up any better.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3670#discussion_r428283381">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZOHHLIXDMD6I2KELLRSQ3KXANCNFSM4NFNBZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZNYOLE5IZ6BSAFS53RSQ3KXA5CNFSM4NFNBZ6KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDDNFJA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3670#discussion_r428283381",
"url": "https://github.com/quicwg/base-drafts/pull/3670#discussion_r428283381",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec590ab4aac5_33a03fb375ecd96c79178--


From nobody Wed May 20 13:20:03 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 E5C003A0AB0 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 13:20:01 -0700 (PDT)
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 Xc-eFVWDKUOR for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 13:20:00 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3B9623A0AAA for <quic-issues@ietf.org>; Wed, 20 May 2020 13:20:00 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 551D5282C6D for <quic-issues@ietf.org>; Wed, 20 May 2020 13:19:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590005999; bh=sGxWIGpDKQBi92r20P1Phjko9Hmr3ylfAhCnzKkXx1Y=; h=Date:From:To:Subject:From; b=Gr7Z3CqI4Iy5Be9/u8QObU1/zFNr2WdCIm7if0hCunL7K/G/5edU3cDP5UTPzoKpB cDcunnH3XJLRG7f8plhf8VaO7WeyJ0pNvmjK986TYRK/umlwmYn2m9GhBJ8QoIAN+j AQg8AjXPhrXEPmmwNIyLep921JsFwr8tOJtg9FBE=
Date: Wed, 20 May 2020 13:19:59 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/transport/scope_disable/6ab436-0f1886@github.com>
Subject: [quicwg/base-drafts] 0f1886: Apply suggestions from code review
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/udBuT-e9EvQTQcIl6KAABOibZRM>
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: Wed, 20 May 2020 20:20:02 -0000

  Branch: refs/heads/transport/scope_disable
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0f18864a4e20cd70d291deb12e91417fca646a1b
      https://github.com/quicwg/base-drafts/commit/0f18864a4e20cd70d291deb12e91417fca646a1b
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Apply suggestions from code review

Co-authored-by: ianswett <ianswett@users.noreply.github.com>



From nobody Wed May 20 13:20:13 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 C141F3A0AB0 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 13:20:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 w1dL88yu0RbL for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 13:20:09 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 74E0D3A0AAA for <quic-issues@ietf.org>; Wed, 20 May 2020 13:20:08 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 940AD8C00B3 for <quic-issues@ietf.org>; Wed, 20 May 2020 13:20:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590006007; bh=lAYyvBkmIDJsKKxHJVqI4IRMuqhnoQuEGJ5Ws7cLBf8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nKdM8tLX8P+LV33QrKVB/migcgXyMSJxB0yKO20pXR0NfPrY6RToy/ApD1ibh1NMa djCKY4qwx6SjakdyFrJYiVe+YnbEPoQcGiON9n1Rx97XYU3hDwDUqutob7/D3/sc5Z CcBiRRCVMH4RvAbEyyamO//eTabhtnABB/tEHn/Y=
Date: Wed, 20 May 2020 13:20:07 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3670/push/5104648524@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3670@github.com>
References: <quicwg/base-drafts/pull/3670@github.com>
Subject: Re: [quicwg/base-drafts] Scope of disable_active_migration (#3670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec590f7857fe_8ab3f9c384cd95c11914d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0K-B9GOrB91mnYpuOcLJoaCpycU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 20:20:11 -0000

----==_mimepart_5ec590f7857fe_8ab3f9c384cd95c11914d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop pushed 1 commit.

0f18864a4e20cd70d291deb12e91417fca646a1b  Apply suggestions from code review


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3670/files/6ab4369e359889e6431b5ef9287f946d346a9a91..0f18864a4e20cd70d291deb12e91417fca646a1b

----==_mimepart_5ec590f7857fe_8ab3f9c384cd95c11914d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/MikeBishop" class="user-mention">@MikeBishop</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/0f18864a4e20cd70d291deb12e91417fca646a1b">0f18864</a>  Apply suggestions from code review</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3670/files/6ab4369e359889e6431b5ef9287f946d346a9a91..0f18864a4e20cd70d291deb12e91417fca646a1b">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6224J3FLRWREV6CMTRSQ3PPANCNFSM4NFNBZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4BARIGOIV6WIBQQ3DRSQ3PPA5CNFSM4NFNBZ6KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDANBQGMYDOOCQOVZWQIZVGEYDINRUHA2TENA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3670/files/6ab4369e359889e6431b5ef9287f946d346a9a91..0f18864a4e20cd70d291deb12e91417fca646a1b",
"url": "https://github.com/quicwg/base-drafts/pull/3670/files/6ab4369e359889e6431b5ef9287f946d346a9a91..0f18864a4e20cd70d291deb12e91417fca646a1b",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec590f7857fe_8ab3f9c384cd95c11914d--


From nobody Wed May 20 13:27:31 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 302943A0AD4 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 13:27:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 jDPGJTBzeUU0 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 13:27:27 -0700 (PDT)
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 201993A0AB8 for <quic-issues@ietf.org>; Wed, 20 May 2020 13:27:27 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 60B0F281EAF for <quic-issues@ietf.org>; Wed, 20 May 2020 13:27:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590006446; bh=FTOVlJ/y7SkNDH2G9aD2CtsdmoG86eEuM3z70GmDEII=; h=Date:From:To:Subject:From; b=LAAwW/SqgWbGs2Ymk2bG4vqfwwEXj72gFItncag4k+2dRsaAxDrX8zdHwmeajH3vJ Hi7BvjR9vFNzGGONPf3u3l1EGxPlD30wIxwhMoBZVHg6diGbXLjtVb964tlu7m6cTF XswX4gaYFBSPUn1OdJUPGPov+rZzlZlOGUr+xKUE=
Date: Wed, 20 May 2020 13:27:26 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/transport/scope_disable/0f1886-2f83dd@github.com>
Subject: [quicwg/base-drafts] 2f83dd: Move probing aside
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aeoQ99GMoph7BPetdu7nCE-F5Fk>
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: Wed, 20 May 2020 20:27:28 -0000

  Branch: refs/heads/transport/scope_disable
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2f83dde0952fa7778d94d98160fa2f11904e41bb
      https://github.com/quicwg/base-drafts/commit/2f83dde0952fa7778d94d98160fa2f11904e41bb
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Move probing aside



From nobody Wed May 20 13:27:45 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 37A493A0AD4 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 13:27:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 bIzYJXhsDalO for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 13:27:36 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EF2823A0AB8 for <quic-issues@ietf.org>; Wed, 20 May 2020 13:27:35 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id E10C3A00A6 for <quic-issues@ietf.org>; Wed, 20 May 2020 13:27:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590006454; bh=kZSw7P2P9MwJFAILrk+GHXwmKEGhSm+EQ48de8q5r1w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=j7YWbkxPMsK0pNwUud9jxkh+kaXr/AgYTgbW6cW0ayx65SRCLYcPmBjBtffaRt0sg 5HwY/jxzCqm/PANvp4fGe+7AAo+dFRcRu6yEtBJ/ygqkrhqwSeTifVNTEBzwqvctRs 1GZ7jGsjAWi1uXhPMGyFOpuFf5dK/wDs0xv0Lukk=
Date: Wed, 20 May 2020 13:27:34 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3670/push/5104682198@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3670@github.com>
References: <quicwg/base-drafts/pull/3670@github.com>
Subject: Re: [quicwg/base-drafts] Scope of disable_active_migration (#3670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec592b6d0abb_16ac3f877a0cd9604968c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/g0yWswjF0cH5oTm6I0bXS3V8mrs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 20 May 2020 20:27:37 -0000

----==_mimepart_5ec592b6d0abb_16ac3f877a0cd9604968c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop pushed 1 commit.

2f83dde0952fa7778d94d98160fa2f11904e41bb  Move probing aside


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3670/files/0f18864a4e20cd70d291deb12e91417fca646a1b..2f83dde0952fa7778d94d98160fa2f11904e41bb

----==_mimepart_5ec592b6d0abb_16ac3f877a0cd9604968c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/MikeBishop" class="user-mention">@MikeBishop</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/2f83dde0952fa7778d94d98160fa2f11904e41bb">2f83dde</a>  Move probing aside</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3670/files/0f18864a4e20cd70d291deb12e91417fca646a1b..2f83dde0952fa7778d94d98160fa2f11904e41bb">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2LVDWMTFRSQV3D4NTRSQ4LNANCNFSM4NFNBZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3O5C2IZOFUWBSMEHTRSQ4LNA5CNFSM4NFNBZ6KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDANBQGMYDOOCQOVZWQIZVGEYDINRYGIYTSOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3670/files/0f18864a4e20cd70d291deb12e91417fca646a1b..2f83dde0952fa7778d94d98160fa2f11904e41bb",
"url": "https://github.com/quicwg/base-drafts/pull/3670/files/0f18864a4e20cd70d291deb12e91417fca646a1b..2f83dde0952fa7778d94d98160fa2f11904e41bb",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec592b6d0abb_16ac3f877a0cd9604968c--


From nobody Wed May 20 13:28:31 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 3A1093A0AD6 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 13:28:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 mVsT4hCVzHDF for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 13:28:29 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1F3E83A0AD5 for <quic-issues@ietf.org>; Wed, 20 May 2020 13:28:29 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id A4F552C0C56 for <quic-issues@ietf.org>; Wed, 20 May 2020 13:28:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590006507; bh=X7VHP5lYF+H7/zqNZtEM6EtRKYIYeYlm2QxaZFHdW9Q=; h=Date:From:To:Subject:From; b=DtDtw24cOH0PyJw44iEAbpO5heJnRlpS6/vSfkeBjySH7mZIzOnNTYhOQknYWxTe3 WO47p1SSEIb0YJXSJr3IJp/hSXCEn82dR1fmUjow62wuXYAQhvN6zm1RQ2xhFqxsNq SMcGFR+ioT4n1jUqXeBoadCzBpO6vngFkf9Z1wn0=
Date: Wed, 20 May 2020 13:28:27 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a84f75-07c741@github.com>
Subject: [quicwg/base-drafts] 07c741: Script updating gh-pages from 2f83dde0. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UEy6GQ-afj_9HVCi0E0y1QqcWdE>
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: Wed, 20 May 2020 20:28:30 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 07c7419970a98e53a84f5b55dbc90b6bfd676024
      https://github.com/quicwg/base-drafts/commit/07c7419970a98e53a84f5b55dbc90b6bfd676024
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M index.html
    M transport/scope_disable/draft-ietf-quic-http.html
    M transport/scope_disable/draft-ietf-quic-http.txt
    M transport/scope_disable/draft-ietf-quic-invariants.html
    M transport/scope_disable/draft-ietf-quic-invariants.txt
    M transport/scope_disable/draft-ietf-quic-qpack.html
    M transport/scope_disable/draft-ietf-quic-qpack.txt
    M transport/scope_disable/draft-ietf-quic-recovery.html
    M transport/scope_disable/draft-ietf-quic-recovery.txt
    M transport/scope_disable/draft-ietf-quic-tls.html
    M transport/scope_disable/draft-ietf-quic-tls.txt
    M transport/scope_disable/draft-ietf-quic-transport.html
    M transport/scope_disable/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 2f83dde0. [ci skip]



From nobody Wed May 20 15:57:47 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 22C793A08CD for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 15:57:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 fEDSUKWJWz7I for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 15:57:44 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 766F93A08C7 for <quic-issues@ietf.org>; Wed, 20 May 2020 15:57:44 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 83BFEE004F for <quic-issues@ietf.org>; Wed, 20 May 2020 15:57:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590015463; bh=7Sj5TM5vOLNgCQ93bxUA4tWfdWDGcfEYJsPTVBJ5c6g=; h=Date:From:To:Subject:From; b=bLf3Qfy2j2PNqx0MC3tmkzCAXwbAmcfREoCLPFVlPI8ZoDJf//xuCV1jx0F4GulZ7 gtsRdR0+5Z5iP5EQuXCMaLXXk2QFr2amcw/Nh/oO64DHubIfiwZElNjbDVxFmsjMaG m9GOUCai0irwHs5auD/qyg+9mifveXlHcTAFDghk=
Date: Wed, 20 May 2020 15:57:43 -0700
From: martinduke <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/master/09a092-6b5ff6@github.com>
Subject: [quicwg/load-balancers] 6b5ff6: line break
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3TDc2C3ZEu49D-wEo14MV8C4QBc>
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: Wed, 20 May 2020 22:57:46 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/load-balancers
  Commit: 6b5ff625a09407fc4afe7c772c439fe5078ec8ac
      https://github.com/quicwg/load-balancers/commit/6b5ff625a09407fc4afe7c772c439fe5078ec8ac
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  line break



From nobody Wed May 20 15:58:15 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 0B7073A08CD for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 15:58:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 p6Ov9jKpTZYa for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 15:58:12 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CA8ED3A08C7 for <quic-issues@ietf.org>; Wed, 20 May 2020 15:58:12 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 3AC0D26164B for <quic-issues@ietf.org>; Wed, 20 May 2020 15:58:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590015492; bh=Nox7nsX0VCflmNgFzNlec+WxU7+sm20nFtsojiQUxp4=; h=Date:From:To:Subject:From; b=bCiwKwrYuvD1CjuJFVjJid+t5hn0DCZlX8ODqiuMST2jZY3/uYPHULjiBtZzGNZim IEv3UbQbKP5hJYd9nFNjf3oWzCxqBd0j6+pHCm3qzDhKOU4c9uF3gg75lwqQaMB14w 8q0wIrbSp/VRryveTjrl9zFGhKLWlHAXWTCXNGKs=
Date: Wed, 20 May 2020 15:58:11 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/gh-pages/0de260-649696@github.com>
Subject: [quicwg/load-balancers] 649696: Script updating gh-pages from 6b5ff62. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PQigX5hAbs947_9NmFn1Ud5YV78>
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: Wed, 20 May 2020 22:58:14 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/load-balancers
  Commit: 6496966c882bed766ec35d082038d12b6912048b
      https://github.com/quicwg/load-balancers/commit/6496966c882bed766ec35d082038d12b6912048b
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.html
    M draft-ietf-quic-load-balancers.txt

  Log Message:
  -----------
  Script updating gh-pages from 6b5ff62. [ci skip]



From nobody Wed May 20 15:58:20 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 069273A08D1 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 15:58:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 NfO1b8sA6k8N for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 15:58:17 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B3C613A08CD for <quic-issues@ietf.org>; Wed, 20 May 2020 15:58:17 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 479D1120010 for <quic-issues@ietf.org>; Wed, 20 May 2020 15:58:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590015497; bh=Mm0afQWyeM4e0Ji2vdtORrX/rRNR+/yU4AllGVATWpc=; h=Date:From:To:Subject:From; b=NmTTxFuXDvt2RK5YO2H84dnpJIFo210M1e51eCR83sWlQUFHR3/bNpYAe59cvBWZI kABW1SGBEy082IDy9slIK2Nw1uc1OQBfZ5+wlBXIIi+pMJybsAInoTpQf0lhU9fGbc 4hTiogxjsSL4vb0CCM4uIbxy+nhTIdRjkhKwCNDk=
Date: Wed, 20 May 2020 15:58:17 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/gh-pages/649696-e464e9@github.com>
Subject: [quicwg/load-balancers] e464e9: Script updating archive at 2020-05-20T22:58:00Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ErECn_8ZB-qxOPjzO_X9f8CujIM>
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: Wed, 20 May 2020 22:58:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/load-balancers
  Commit: e464e926c77b9b1032658186c35675baee778864
      https://github.com/quicwg/load-balancers/commit/e464e926c77b9b1032658186c35675baee778864
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M archive.json
    M issues.js

  Log Message:
  -----------
  Script updating archive at 2020-05-20T22:58:00Z. [ci skip]



From nobody Wed May 20 17:16:01 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 599C23A0937 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:15:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 QJKFpyRWPv1T for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:15:56 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 755C43A03F2 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:15:56 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 3E654960619 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:15:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590020154; bh=emndXMfJ6eGNSxiBYEGeWeuLFUE+RpUzF7TKYmovDZ4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zLueuw9UhFAJI7SQtYUDCQ2cYIMfjj9zl1cLXeugjyMzxpO8yzU86HyPLjm3nhUeZ Ay4NXlvvLEEJB7prd1eXMdKfd8X2tMoCOhLccdQe3vWEWmKM+t+R9iCBGNItQBodl8 XeNDxujKnXlNkbaNzqadBBzyZ7eg+e4t6TjtxJSI=
Date: Wed, 20 May 2020 17:15:54 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK24GIGOEEMFC36ECD542GUTVEVBNHHCKCGAH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3670/review/415795983@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3670@github.com>
References: <quicwg/base-drafts/pull/3670@github.com>
Subject: Re: [quicwg/base-drafts] Scope of disable_active_migration (#3670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5c83a2f2d1_d963fb068ecd9684094c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/REZPmunlGDO2Z3-QGEpQ2Mu1ExY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 00:15:58 -0000

----==_mimepart_5ec5c83a2f2d1_d963fb068ecd9684094c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.

Seems fine.

> @@ -1229,10 +1229,11 @@ when a client's address changes.
   transport parameter to request that clients move connections to that dedicated
   address. Note that clients could choose not to use the preferred address.
 
-A server in a deployment that does not implement a solution to
-maintain connection continuity during connection migration
-SHOULD disallow migration using the disable_active_migration transport
-parameter.
+A server in a deployment that does not implement a solution to maintain
+connection continuity when the client address changes SHOULD indicate migration
+is not supported using the disable_active_migration transport parameter.  The
+disable_active_migration transport parameter does not prohibit connection
+migration after a client has acted on the preferred_address transport parameter.

```suggestion
migration after a client has acted on a preferred_address transport parameter.
```

> @@ -2150,15 +2151,15 @@ The design of QUIC relies on endpoints retaining a stable address for the
 duration of the handshake.  An endpoint MUST NOT initiate connection migration
 before the handshake is confirmed, as defined in section 4.1.2 of {{QUIC-TLS}}.
 
-An endpoint also MUST NOT send packets from a different local address, actively
-initiating migration, if the peer sent the disable_active_migration transport
-parameter during the handshake. An endpoint which has sent this transport
-parameter, but detects that a peer has nonetheless migrated to a different
-network MUST either drop the incoming packets on that path without generating a
-stateless reset or proceed with path validation and allow the peer to migrate.
-Generating a stateless reset or closing the connection would allow third parties
-in the network to cause connections to close by spoofing or otherwise
-manipulating observed traffic.
+If the peer sent the disable_active_migration transport parameter, an endpoint
+also MUST NOT send packets (including probing packets; see {{probing}}) from a
+different local address to the address the peer used during the handshake. An
+endpoint which has sent this transport parameter, but detects that a peer has

```suggestion
endpoint that has sent this transport parameter, but detects that a peer has
```

> @@ -2150,15 +2151,15 @@ The design of QUIC relies on endpoints retaining a stable address for the
 duration of the handshake.  An endpoint MUST NOT initiate connection migration
 before the handshake is confirmed, as defined in section 4.1.2 of {{QUIC-TLS}}.
 
-An endpoint also MUST NOT send packets from a different local address, actively
-initiating migration, if the peer sent the disable_active_migration transport
-parameter during the handshake. An endpoint which has sent this transport
-parameter, but detects that a peer has nonetheless migrated to a different
-network MUST either drop the incoming packets on that path without generating a
-stateless reset or proceed with path validation and allow the peer to migrate.
-Generating a stateless reset or closing the connection would allow third parties
-in the network to cause connections to close by spoofing or otherwise
-manipulating observed traffic.
+If the peer sent the disable_active_migration transport parameter, an endpoint
+also MUST NOT send packets (including probing packets; see {{probing}}) from a
+different local address to the address the peer used during the handshake. An
+endpoint which has sent this transport parameter, but detects that a peer has
+nonetheless migrated to a different network MUST either drop the incoming

```suggestion
nonetheless migrated to a different remote address MUST either drop the incoming
```

> +  the recipient MUST NOT send any packets to the address the peer used to
+  perform the handshake from a local address or port other than that used to
+  perform the handshake.  This parameter is a zero-length value.

I *might have a suggestion.
```suggestion
  an endpoint MUST NOT use a new local address when sending to the address
  that the peer used during the handshake.  This parameter is a zero-length value.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-415795983
----==_mimepart_5ec5c83a2f2d1_d963fb068ecd9684094c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<p>Seems fine.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3670#discussi=
on_r428375486">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1229,10 +1229,11 @@ when a client&#39;=
s address changes.=0D
   transport parameter to request that clients move connections to that d=
edicated=0D
   address. Note that clients could choose not to use the preferred addre=
ss.=0D
 =0D
-A server in a deployment that does not implement a solution to=0D
-maintain connection continuity during connection migration=0D
-SHOULD disallow migration using the disable_active_migration transport=0D=

-parameter.=0D
+A server in a deployment that does not implement a solution to maintain=0D=

+connection continuity when the client address changes SHOULD indicate mi=
gration=0D
+is not supported using the disable_active_migration transport parameter.=
  The=0D
+disable_active_migration transport parameter does not prohibit connectio=
n=0D
+migration after a client has acted on the preferred_address transport pa=
rameter.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-migration after a client has acted on the pre=
ferred_address transport parameter.=0D
+migration after a client has acted on a preferred_address transport para=
meter.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3670#discussi=
on_r428375882">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2150,15 +2151,15 @@ The design of QUIC=
 relies on endpoints retaining a stable address for the=0D
 duration of the handshake.  An endpoint MUST NOT initiate connection mig=
ration=0D
 before the handshake is confirmed, as defined in section 4.1.2 of {{QUIC=
-TLS}}.=0D
 =0D
-An endpoint also MUST NOT send packets from a different local address, a=
ctively=0D
-initiating migration, if the peer sent the disable_active_migration tran=
sport=0D
-parameter during the handshake. An endpoint which has sent this transpor=
t=0D
-parameter, but detects that a peer has nonetheless migrated to a differe=
nt=0D
-network MUST either drop the incoming packets on that path without gener=
ating a=0D
-stateless reset or proceed with path validation and allow the peer to mi=
grate.=0D
-Generating a stateless reset or closing the connection would allow third=
 parties=0D
-in the network to cause connections to close by spoofing or otherwise=0D=

-manipulating observed traffic.=0D
+If the peer sent the disable_active_migration transport parameter, an en=
dpoint=0D
+also MUST NOT send packets (including probing packets; see {{probing}}) =
from a=0D
+different local address to the address the peer used during the handshak=
e. An=0D
+endpoint which has sent this transport parameter, but detects that a pee=
r has=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-endpoint which has sent this transport parame=
ter, but detects that a peer has=0D
+endpoint that has sent this transport parameter, but detects that a peer=
 has=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3670#discussi=
on_r428375946">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -2150,15 +2151,15 @@ The design of QUIC=
 relies on endpoints retaining a stable address for the=0D
 duration of the handshake.  An endpoint MUST NOT initiate connection mig=
ration=0D
 before the handshake is confirmed, as defined in section 4.1.2 of {{QUIC=
-TLS}}.=0D
 =0D
-An endpoint also MUST NOT send packets from a different local address, a=
ctively=0D
-initiating migration, if the peer sent the disable_active_migration tran=
sport=0D
-parameter during the handshake. An endpoint which has sent this transpor=
t=0D
-parameter, but detects that a peer has nonetheless migrated to a differe=
nt=0D
-network MUST either drop the incoming packets on that path without gener=
ating a=0D
-stateless reset or proceed with path validation and allow the peer to mi=
grate.=0D
-Generating a stateless reset or closing the connection would allow third=
 parties=0D
-in the network to cause connections to close by spoofing or otherwise=0D=

-manipulating observed traffic.=0D
+If the peer sent the disable_active_migration transport parameter, an en=
dpoint=0D
+also MUST NOT send packets (including probing packets; see {{probing}}) =
from a=0D
+different local address to the address the peer used during the handshak=
e. An=0D
+endpoint which has sent this transport parameter, but detects that a pee=
r has=0D
+nonetheless migrated to a different network MUST either drop the incomin=
g=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-nonetheless migrated to a different network M=
UST either drop the incoming=0D
+nonetheless migrated to a different remote address MUST either drop the =
incoming=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3670#discussi=
on_r428377553">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +  the recipient MUST NOT send any packets=
 to the address the peer used to=0D
+  perform the handshake from a local address or port other than that use=
d to=0D
+  perform the handshake.  This parameter is a zero-length value.=0D
</pre>=0D
<p>I *might have a suggestion.</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-  the recipient MUST NOT send any packets to =
the address the peer used to=0D
-  perform the handshake from a local address or port other than that use=
d to=0D
-  perform the handshake.  This parameter is a zero-length value.=0D
+  an endpoint MUST NOT use a new local address when sending to the addre=
ss=0D
+  that the peer used during the handshake.  This parameter is a zero-len=
gth value.=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3670#pullrequestreview-415795983">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K23GWC7N5CCQREK2VDRSRXDVANCNFSM4NFNBZ6A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKZ676SZUNHXEAK5T6DRSRXDVA5CNFSM4=
NFNBZ6KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODDEIWDY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3670#pullrequestrev=
iew-415795983",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview=
-415795983",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec5c83a2f2d1_d963fb068ecd9684094c--


From nobody Wed May 20 17:24:01 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 6F1C73A0415 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:23:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 CkN0U_gllAsv for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:23:57 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CD6983A0414 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:23:57 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 26B8112139C for <quic-issues@ietf.org>; Wed, 20 May 2020 17:23:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590020637; bh=INpEO6Ph6yNBKgKem6SXYjU0Q7TsJKDm2NoA2awB+R8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YzMHTITK8Luh7sWdvEaiaiVtbpZbkivV8HioNvlctpMnUySusJB/AcGtiqtbynyrv IMn7QiMjtafN5hdg7EMiHHIL9xCuRkc1KJ9kYwHbXZtzzadBYo333HvRQOnnkWB3+h 51zAFo3XEIfceddZPm93i9BdjO3aLHhk6kxOAZzI=
Date: Wed, 20 May 2020 17:23:56 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ6QFZPMXRYW7WKFRV42GVRZEVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/review/415799805@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5ca1cd4193_2af83fecc68cd96015054f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/m-qNI5xmju-95ePgYVJBKoCZMkQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 00:24:00 -0000

----==_mimepart_5ec5ca1cd4193_2af83fecc68cd96015054f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.

Yeah, this is much clearer.

>        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = smoothed_rtt +
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):
+    return now() + duration, Initial

```suggestion
    return (now() + duration), Initial
```

> +    if (timeout >
+          time_of_last_ack_eliciting_packet[space] + duration):
+      timeout =
+          time_of_last_ack_eliciting_packet[space] + duration

```suggestion
    t = time_of_last_ack_eliciting_packet[space] + duration
    if (t < timeout):
      timeout = t
```

>        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = smoothed_rtt +
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):
+    return now() + duration, Initial
+  timeout = infinite
+  pn_space = Initial

using space and pn_space is awkward, how about naming this pto_space (and maybe then pto_time for timeout)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-415799805
----==_mimepart_5ec5ca1cd4193_2af83fecc68cd96015054f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<p>Yeah, this is much clearer.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3681#discussi=
on_r428378783">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;        space =3D pn_space=0D
   return time, space=0D
 =0D
+GetPtoTimeAndSpace():=0D
+  duration =3D smoothed_rtt +=0D
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)=0D
+  # Arm PTO from now when there are no inflight packets=0D
+  if (no in-flight packets):=0D
+    return now() + duration, Initial=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-    return now() + duration, Initial=0D
+    return (now() + duration), Initial=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3681#discussi=
on_r428379400">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +    if (timeout &gt;=0D
+          time_of_last_ack_eliciting_packet[space] + duration):=0D
+      timeout =3D=0D
+          time_of_last_ack_eliciting_packet[space] + duration=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-    if (timeout &gt;=0D
-          time_of_last_ack_eliciting_packet[space] + duration):=0D
-      timeout =3D=0D
-          time_of_last_ack_eliciting_packet[space] + duration=0D
+    t =3D time_of_last_ack_eliciting_packet[space] + duration=0D
+    if (t &lt; timeout):=0D
+      timeout =3D t=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3681#discussi=
on_r428379558">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;        space =3D pn_space=0D
   return time, space=0D
 =0D
+GetPtoTimeAndSpace():=0D
+  duration =3D smoothed_rtt +=0D
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)=0D
+  # Arm PTO from now when there are no inflight packets=0D
+  if (no in-flight packets):=0D
+    return now() + duration, Initial=0D
+  timeout =3D infinite=0D
+  pn_space =3D Initial=0D
</pre>=0D
<p>using space and pn_space is awkward, how about naming this pto_space (=
and maybe then pto_time for timeout)</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3681#pullrequestreview-415799805">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K2I6QLMYWPWCK2HMRTRSRYBZANCNFSM4NGCCLSA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK6ADZO4LILPQARCWG3RSRYBZA5CNFSM4=
NGCCLSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODDEJT7I.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestrev=
iew-415799805",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview=
-415799805",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec5ca1cd4193_2af83fecc68cd96015054f--


From nobody Wed May 20 17:25:30 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 30D593A0414 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:25:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 OrJfjXay7mGs for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:25:27 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C73D73A0404 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:25:27 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 8A62EC60683 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:25:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590020726; bh=E88Nyc8850UConOIsyT9sQX3cLDsqhn3JRV354BCCK8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=I7EXSW2jJzuOp09U2OFUyABJUkNuzcXHBDz2Mm7Gz8DmD/+OSy/egpSSO6G/b7GQK 40Jg+kFnsClro7M/aYqQfWx+2LL6mCyP5qkhfUIrERMyvysz1SGabJqt5MiNHzWGIB EIoKmBCbbkXc69H30fUge9A1IQ0FO2LRn6QEqPEM=
Date: Wed, 20 May 2020 17:25:26 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYLAFSGBODOJWJQV5F42GVXNEVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/c631806905@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5ca767c0c0_292a3fcc0e2cd96c1102c9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-KFuJVuk2obUIiGCN6LK0mXqDK8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 00:25:29 -0000

----==_mimepart_5ec5ca767c0c0_292a3fcc0e2cd96c1102c9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

FWIW, the problem with exponentially increasing max_ack_delay thing is pretty obvious here.  I think that I might choose not to implement that bit :)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#issuecomment-631806905
----==_mimepart_5ec5ca767c0c0_292a3fcc0e2cd96c1102c9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>FWIW, the problem with exponentially increasing max_ack_delay thing is pretty obvious here.  I think that I might choose not to implement that bit :)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3681#issuecomment-631806905">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6SE7ZGFT3DPILV5S3RSRYHNANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK26RB4254FJ2A3VDBTRSRYHNA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWUJXOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681#issuecomment-631806905",
"url": "https://github.com/quicwg/base-drafts/pull/3681#issuecomment-631806905",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec5ca767c0c0_292a3fcc0e2cd96c1102c9--


From nobody Wed May 20 17:32:19 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 BA4A53A0940 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:32:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 R82LWQTL0JeB for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:32:15 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B17C03A093F for <quic-issues@ietf.org>; Wed, 20 May 2020 17:32:15 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 59F5A1212CD for <quic-issues@ietf.org>; Wed, 20 May 2020 17:32:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021135; bh=t4z8q4ZM14ttWTbCSnxfaryyTd5U0zJASdBwt7twzKU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NuNSZgArK54X9O8H6WGA1n/QFJj/+UG3tuwGvv/leFfk7qUJwXxuKGTERGs8CUJUB nwVc2YR1k0gw5rUgKbHAkN8LRfr2oSC4DmD1+Rb8gqg8HzJM+VQyri7QYKqVc1znbD uPLob6QjAheVuMG3XljlaWDbVqdGMNPbFYv9o6uU=
Date: Wed, 20 May 2020 17:32:15 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYI4DC33K56RSXZAU542GWQ7EVBNHHCKCOUQQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3673/631808747@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3673@github.com>
References: <quicwg/base-drafts/issues/3673@github.com>
Subject: Re: [quicwg/base-drafts] New packet format used before it is defined (#3673)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5cc0f14b56_79d63fbb87ecd95c879a8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xSceyhL9O164BZCVMIeOf5JGnrs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 00:32:18 -0000

----==_mimepart_5ec5cc0f14b56_79d63fbb87ecd95c879a8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> This document uses terms and notational conventions from [QUIC-TRANSPORT].
-- https://quicwg.org/base-drafts/draft-ietf-quic-invariants.html#section-2-2

There is a lot more that the document leans on than the packet format grammar, so any expansion of this might explode.  I tend to think that this is adequate.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3673#issuecomment-631808747
----==_mimepart_5ec5cc0f14b56_79d63fbb87ecd95c879a8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>This document uses terms and notational conventions from [QUIC-TRANSPORT].<br>
-- <a href="https://quicwg.org/base-drafts/draft-ietf-quic-invariants.html#section-2-2" rel="nofollow">https://quicwg.org/base-drafts/draft-ietf-quic-invariants.html#section-2-2</a></p>
</blockquote>
<p>There is a lot more that the document leans on than the packet format grammar, so any expansion of this might explode.  I tend to think that this is adequate.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3673#issuecomment-631808747">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4S2T3HCOAW3HMHFQ3RSRZA7ANCNFSM4NFQIK4A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZUBKKBFYIQO2JWNQDRSRZA7A5CNFSM4NFQIK4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWUKF2Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3673#issuecomment-631808747",
"url": "https://github.com/quicwg/base-drafts/issues/3673#issuecomment-631808747",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec5cc0f14b56_79d63fbb87ecd95c879a8--


From nobody Wed May 20 17:32:53 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 01A313A0940 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:32:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 RRkpIWD-reKP for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:32:45 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 756C13A0943 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:32:45 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id A8A348C0F2B for <quic-issues@ietf.org>; Wed, 20 May 2020 17:32:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021164; bh=d28dEmRv4gVskMgboTZ0uBL8xSMgC7IsJCTIHHxT/iQ=; h=Date:From:To:Subject:From; b=OYt1HC/IRkRKX+1oPXZH2cQpEqOcAdWICUAPoGaIlr1P3OfB1YkEARwy9YL9beU/b ufsX5CQRc19OXCl7jKSDCKk5Om41McObTQETmyUIlvVltDs41nt5AC4UHcc4kFz/oN WLiiNup9r02401zmOXB/BdR7FY7qy/X/n1I0qbDE=
Date: Wed, 20 May 2020 17:32:44 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/a16ccf-330171@github.com>
Subject: [quicwg/base-drafts] be7c22: transport: fix broken link to tls
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bGSz9YPgAxR8-_310Gs1rfg3ktU>
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: Thu, 21 May 2020 00:32:48 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: be7c22aa47d44bf07f78a782beb000900b22eb73
      https://github.com/quicwg/base-drafts/commit/be7c22aa47d44bf07f78a782beb000900b22eb73
  Author: Julian Reschke <julian.reschke@gmx.de>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  transport: fix broken link to tls


  Commit: 330171e8be14716b1b4d52a23cfb874d94760f01
      https://github.com/quicwg/base-drafts/commit/330171e8be14716b1b4d52a23cfb874d94760f01
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3675 from reschke/patch-29

transport: fix broken link to tls


Compare: https://github.com/quicwg/base-drafts/compare/a16ccf150f9a...330171e8be14


From nobody Wed May 20 17:32:57 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 61B423A0940 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:32:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 IkEhZmACIiWY for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:32:54 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 04B243A093F for <quic-issues@ietf.org>; Wed, 20 May 2020 17:32:54 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 23E6BC60415 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:32:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021173; bh=ssrg7XNHTJAEVZ3pepmb9C2FVsbw7DfoJ35Y2P2SnLM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FItl9+IKPLMUcU2lHRjxJGOntOqBQRztZgGlNr3eVV9NXdc3LJt3f3s9OlCf0ytEY yAKOaOMB7N1Y/5r4tN+pjEbg0Wj6SMfCT3uEC/o6+0ISoTVdjuBipWb27g6FOiy6bX UT4yDhAjvUm00dL/KjtAQr3T9e0/K/FxdhEahZ7Q=
Date: Wed, 20 May 2020 17:32:53 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3X6ZQXUOB3IOLIR3F42GWTLEVBNHHCKC3IBM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3675/issue_event/3358798515@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3675@github.com>
References: <quicwg/base-drafts/pull/3675@github.com>
Subject: Re: [quicwg/base-drafts] transport: fix broken link to tls (#3675)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5cc35152df_62843fafd22cd96018701"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PyVCHBYYmcrqN94kcmdNrWVQlGo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 00:32:55 -0000

----==_mimepart_5ec5cc35152df_62843fafd22cd96018701
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3675 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3675#event-3358798515
----==_mimepart_5ec5cc35152df_62843fafd22cd96018701
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621504523" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3675" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3675/hovercard" href="https://github.com/quicwg/base-drafts/pull/3675">#3675</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3675#event-3358798515">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYBJWB2YJMF2QWZVPLRSRZDLANCNFSM4NFUTJ4A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2ZK7G6QIIZ7MO25NLRSRZDLA5CNFSM4NFUTJ4KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZAZTFMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3675#event-3358798515",
"url": "https://github.com/quicwg/base-drafts/pull/3675#event-3358798515",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec5cc35152df_62843fafd22cd96018701--


From nobody Wed May 20 17:33:09 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 172113A0943 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:33:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 gCIrnXAgqJbD for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:33:05 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1D1AE3A0942 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:33:05 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 48C976A0910 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:33:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021184; bh=TzVQLq2C5k0JsFKvtUWo8FiQTf+JKhpRwR4p7sYdMuY=; h=Date:From:To:Subject:From; b=fzN9C8wNe6grppa7+ZBquepWdogpm1e/WfaQKuCVFDaM9aJvDjArFDqzqIgDHNl0P C1m+UPJKXsr/aZvmMldkIFcuDIK5djjod/jkhD9CsOVrlukBUiVKuvCkW8m4HN1YUM JcxvrAnNmMQp9qol09R2GQtMpl0ZG0gkIPHNUprU=
Date: Wed, 20 May 2020 17:33:04 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/330171-461fed@github.com>
Subject: [quicwg/base-drafts] ee1105: tls: fix broken reference to -transport
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CX6u7JO3E_Jv0ShWjXO9FG-Jrd0>
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: Thu, 21 May 2020 00:33:07 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: ee11054298f5de6f42112a036b631c7b69645602
      https://github.com/quicwg/base-drafts/commit/ee11054298f5de6f42112a036b631c7b69645602
  Author: Julian Reschke <julian.reschke@gmx.de>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  tls: fix broken reference to -transport


  Commit: 461fed6d9b405413ca4086ce99ab7df4a0a8ca28
      https://github.com/quicwg/base-drafts/commit/461fed6d9b405413ca4086ce99ab7df4a0a8ca28
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #3676 from reschke/patch-30

tls: fix broken reference to -transport


Compare: https://github.com/quicwg/base-drafts/compare/330171e8be14...461fed6d9b40


From nobody Wed May 20 17:33:17 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 026263A0940 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:33:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 yRfNfgbj9vj4 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:33:13 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 833253A093F for <quic-issues@ietf.org>; Wed, 20 May 2020 17:33:13 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 2E1B81210F2 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:33:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021193; bh=7CwG/S8jLq62+9/0PRNyjjfg3M6vne2HP4Wgp2fJnb8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xo3fNu5yX+kQATQjdtGDpi6soelnBpmpxReGMVfScsqL69GxNsZbT5MdL56eeOylc WVc1Gij3I9ENJfKgBAjyLQwtIQnnLbv5Y2ILf3UC79BfBAdNTi5mYrfsk4Ok1e+jki azDL7PxUJ8TfrvGVLwjDsx7Cfa2UDDiCOULN+XXc=
Date: Wed, 20 May 2020 17:33:12 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7TSE3DRMOV5CKNNS542GWUREVBNHHCKC3WZY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3676/issue_event/3358799101@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3676@github.com>
References: <quicwg/base-drafts/pull/3676@github.com>
Subject: Re: [quicwg/base-drafts] tls: fix broken reference to -transport (#3676)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5cc48dbae9_7d123fab578cd95c168234"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9gO1vFfJOSiIr3SS639N6bh0TVQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 00:33:15 -0000

----==_mimepart_5ec5cc48dbae9_7d123fab578cd95c168234
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3676 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3676#event-3358799101
----==_mimepart_5ec5cc48dbae9_7d123fab578cd95c168234
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621508302" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3676" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3676/hovercard" href="https://github.com/quicwg/base-drafts/pull/3676">#3676</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3676#event-3358799101">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZLIP2SSZ5GVEVSQKLRSRZERANCNFSM4NFUXNVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5A552O76CLTCGIABLRSRZERA5CNFSM4NFUXNV2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZAZTJ7I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3676#event-3358799101",
"url": "https://github.com/quicwg/base-drafts/pull/3676#event-3358799101",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec5cc48dbae9_7d123fab578cd95c168234--


From nobody Wed May 20 17:33:51 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 E64673A0943 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:33:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 ZV6BsRO8VX9g for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:33:49 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 981BA3A0944 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:33:49 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 48314120FB1 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:33:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021229; bh=tG0PKi24JwMxa15H8KMJo1ns/hSOvm41DObR+zZj2FA=; h=Date:From:To:Subject:From; b=owU9lEke/ZxZTeXvXh7ZwL4/lppil0HHWCSCfHoTAf2iVzwIYoZ5dlccHbLtMfRBr 9W8dpKCoEWepbZ8WjnkYkWBFe9qm83yO8u/1oTBIkADpubmlRg+6C/W+3BLYXivl/i 0x/O5uCpIhpmbPidsn/qzFLDC2yUWe8QTHHO7mHk=
Date: Wed, 20 May 2020 17:33:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/461fed-b87b40@github.com>
Subject: [quicwg/base-drafts] 9074a9: Remove superfluous word
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4Znp1CiaiHuVrIM2NcpJZPzsWjg>
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: Thu, 21 May 2020 00:33:51 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9074a921cbf37028ef6377c00cf3dd36ce4b08bf
      https://github.com/quicwg/base-drafts/commit/9074a921cbf37028ef6377c00cf3dd36ce4b08bf
  Author: Alessandro Ghedini <alessandro@cloudflare.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Remove superfluous word


  Commit: b87b405e7af529e3d185c4eea331e88ded3566d3
      https://github.com/quicwg/base-drafts/commit/b87b405e7af529e3d185c4eea331e88ded3566d3
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #3678 from ghedo/tls-fix-typo

Remove superfluous word


Compare: https://github.com/quicwg/base-drafts/compare/461fed6d9b40...b87b405e7af5


From nobody Wed May 20 17:33:57 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 169A13A0944 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:33:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 W300jNCMf00u for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:33:50 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E0D903A0940 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:33:49 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 0D21F660E3D for <quic-issues@ietf.org>; Wed, 20 May 2020 17:33:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021229; bh=6KEEitpfHPA9XRJ6h341/bwkeUmNXdO0zwihalRiXxk=; h=Date:From:To:Subject:From; b=YDX+Wxsyax3W+G24E5bX9n12OaG1r0ovEEkWIbzb9POfBaLZdn6ROD8lGGzAvXsYc bfh1fBnCU/jUxeEMcOqzX4tHZZ8H9LnQBtnKaWs8DSWyy6qguP5RWLmfcpp+TweI7q B36Pg3MyvYTW2NJpFaRD8wl99jqey6TJVhmZrtMk=
Date: Wed, 20 May 2020 17:33:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/07c741-58263d@github.com>
Subject: [quicwg/base-drafts] 58263d: Script updating gh-pages from 461fed6d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WiYOlJaX7jwHxL5syUMrFC90aMM>
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: Thu, 21 May 2020 00:33:51 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 58263d6f702c6f741ebc040fe314f8c37c7eba9a
      https://github.com/quicwg/base-drafts/commit/58263d6f702c6f741ebc040fe314f8c37c7eba9a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 461fed6d. [ci skip]



From nobody Wed May 20 17:34:03 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 B40863A0944 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 1E4r1utW1_LW for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:00 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0B0A93A0940 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:00 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 8465BE02D2 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:33:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021238; bh=zfNaKfZHCYCEePFBMiXrsWvMTIxN1TklX/BqVTCcNKs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JeqB2jRIiiwoFFqh3XllKI20nPrzmfE//Wl9PYUZSSP3sDCDtWqhQy/hAlhE8haV5 /jhhASDZsjSJX5Dxmz0eHHwJBeM6PP4cOToK5tfOlwKXiKWXpxeTATKi2LLUNqID/7 mPn/IwVECMuycs1Ji3HvHWnUfKFbmjGhRMKMgxss=
Date: Wed, 20 May 2020 17:33:58 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZKUV555ZRZUOWPCNN42GWXNEVBNHHCKDTLV4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3678/issue_event/3358800337@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3678@github.com>
References: <quicwg/base-drafts/pull/3678@github.com>
Subject: Re: [quicwg/base-drafts] Remove superfluous word (#3678)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5cc7674e69_5eaf3fd5fd6cd96015034f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZwZb1E3p4naGrBq18cJvlGjnBNw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 00:34:02 -0000

----==_mimepart_5ec5cc7674e69_5eaf3fd5fd6cd96015034f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3678 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3678#event-3358800337
----==_mimepart_5ec5cc7674e69_5eaf3fd5fd6cd96015034f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621702063" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3678" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3678/hovercard" href="https://github.com/quicwg/base-drafts/pull/3678">#3678</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3678#event-3358800337">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6JSGF6ITTQWMPPHZLRSRZHNANCNFSM4NF3VSPQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2JDDYJWSVASK7X6HTRSRZHNA5CNFSM4NF3VSP2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZAZTTUI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3678#event-3358800337",
"url": "https://github.com/quicwg/base-drafts/pull/3678#event-3358800337",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec5cc7674e69_5eaf3fd5fd6cd96015034f--


From nobody Wed May 20 17:34:07 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 637813A0940 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 VZkibnAwYIAI for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:01 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EA48C3A0943 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:00 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 9B09D121127 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021240; bh=engx4ZgcQgIVXm04i5PVwSCWZW/g+PHrR5UvdIhL8Vk=; h=Date:From:To:Subject:From; b=hQ0T0ULpmQCtUY3E6cRm3wRkRpWShG2meP+vSi91on0lgz5S2szjzDAs6lm+uHRZ0 8M2TGClsPtfkLG8P7FNEDRAyrPtF9EjPmcc1HRZi8NXyAlVd5TmocRC0+iY5spk3n+ PCzsrmBbfHmxaE5bg/azC2Ctpqh3NWvSkNpTC5CE=
Date: Wed, 20 May 2020 17:34:00 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/58263d-18c765@github.com>
Subject: [quicwg/base-drafts] 18c765: Script updating gh-pages from 330171e8. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NNEQ7P9SD61sMXxO7JZn1_mgqnY>
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: Thu, 21 May 2020 00:34:03 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 18c765543a2bb45acfdcd039a94d6bc3a852638c
      https://github.com/quicwg/base-drafts/commit/18c765543a2bb45acfdcd039a94d6bc3a852638c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 330171e8. [ci skip]



From nobody Wed May 20 17:34:16 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 4E5ED3A0943 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 3BXfVr09_xSr for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:12 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 48DEC3A0940 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:12 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 71E55520913 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021251; bh=NHXhJ3wfQLKY/nqHkTvh2v78H0Y6ylBlSAXhdyns6mQ=; h=Date:From:To:Subject:From; b=IMjdDBDgbkFqRqUeBBRIh3PLRPPFUntvehKh/xDnOQmdS2VKd6j1AuZ3mxTwuvFwJ fmIYfb29zuDPYDOoYDvqIoF4KhQTyE19VTbcQgyXCo8qGnuL+6FJqciH5VTmnMS6rv Kuo63KoapXJMswtt+UFLdnN4vKl+Bqhg7lx4Z4js=
Date: Wed, 20 May 2020 17:34:11 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/b87b40-c62de3@github.com>
Subject: [quicwg/base-drafts] 8b7b50: Fix noun/verb number agreement in the transport draft
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ozlebeeCLfHSDBu8H8NjKPE0_Zc>
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: Thu, 21 May 2020 00:34:14 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8b7b504f48ece5eca7b7d234eee9f3f0f0b91eab
      https://github.com/quicwg/base-drafts/commit/8b7b504f48ece5eca7b7d234eee9f3f0f0b91eab
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Fix noun/verb number agreement in the transport draft


  Commit: c62de3f12901882e37d7b86277cb2b4da7f4b2ef
      https://github.com/quicwg/base-drafts/commit/c62de3f12901882e37d7b86277cb2b4da7f4b2ef
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3679 from dtikhonov/202005200954-fix-number-agreement

Fix noun/verb number agreement in the transport draft


Compare: https://github.com/quicwg/base-drafts/compare/b87b405e7af5...c62de3f12901


From nobody Wed May 20 17:34:24 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 386923A0943 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 SL0dAhRM329N for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:21 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BE8C53A0940 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:21 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 228322C1364 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021261; bh=JV/Iiz7h80k68iI2XzSyFtCL3tgZuKMjyBkG7d7zTEw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dn3lmyJX6KPjzKjWSNMNaEp4vqeMKUQzTjo1nlYMeHZtg3kwgx5vgsTmR9A1LBm5F 2ricQGxCObotSMK+NtSqUvnDdbB/KbOwpr0n8M9zMyigWUe81qFhvI9FfDTSXoWqgB q60XsU0YIzcSRVcoCtyMKEJHurLcR+5C9tkyEGV4=
Date: Wed, 20 May 2020 17:34:21 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3JZN3OMPXPZE62XHF42GWY3EVBNHHCKD5H4Y@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3679/issue_event/3358800954@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3679@github.com>
References: <quicwg/base-drafts/pull/3679@github.com>
Subject: Re: [quicwg/base-drafts] Fix noun/verb number agreement in the transport draft (#3679)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5cc8d127c2_6e923f935eccd96411015a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IMo16r2F3P5gVK4QGZDPXVl50uw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 00:34:23 -0000

----==_mimepart_5ec5cc8d127c2_6e923f935eccd96411015a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3679 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3679#event-3358800954
----==_mimepart_5ec5cc8d127c2_6e923f935eccd96411015a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621783014" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3679" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3679/hovercard" href="https://github.com/quicwg/base-drafts/pull/3679">#3679</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3679#event-3358800954">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5RITDTETHYEA6FMX3RSRZI3ANCNFSM4NF6U3UA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK63ESBOLSXP3MHOQ33RSRZI3A5CNFSM4NF6U3UKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZAZTYOQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3679#event-3358800954",
"url": "https://github.com/quicwg/base-drafts/pull/3679#event-3358800954",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec5cc8d127c2_6e923f935eccd96411015a--


From nobody Wed May 20 17:34:34 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 55ACF3A0943 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 aQ7aRCHr0GHE for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:31 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2B5643A0940 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:31 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 742856603AA for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021270; bh=d96VSEhOpujpHWmHEaDOSJMOgVkn7vXKrhEa3d8kqks=; h=Date:From:To:Subject:From; b=sYULw+FeaOFHXP7zJXTc2lhSjpqgIyIQbimsQGmlMM7HEKPgciDK9y0hhCRXpFa0n wHVZRurVA5tftgkoTgxl/0+GeNuI/ZzEaojP5IZbTS0Gn69GYRMVlIrXPDuF9PaHdN mtBe9+ZTRiFl05RN1/o0cdRxLF54IHj+99sv/f84=
Date: Wed, 20 May 2020 17:34:30 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/18c765-4ecca7@github.com>
Subject: [quicwg/base-drafts] 4ecca7: Script updating gh-pages from b87b405e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QfGkJyxZCigLFZHjavkfbzn_o_I>
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: Thu, 21 May 2020 00:34:33 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4ecca7d23cabce90bef131a93894e4c44ed88a5f
      https://github.com/quicwg/base-drafts/commit/4ecca7d23cabce90bef131a93894e4c44ed88a5f
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from b87b405e. [ci skip]



From nobody Wed May 20 17:34:43 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 4D97F3A065A for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 RR2sPWy0Vvrd for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:40 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 40C183A0602 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:40 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 9B2872C0C57 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021279; bh=4uPEs3GJxre40sVm4/8wpKiDbf9NRFAzXQo4vKR4MSM=; h=Date:From:To:Subject:From; b=yYKtJBHNTyQrZ/7YeHrVzFWZP6Ur8+4Bx+al0g+MCFWzSlMW6zhaLNnxUp4+xenfH 792IVF3BOAZqNv0Q5ZiApC7myvi5P/wEWZsQSQ/mqgBMK/B7TibyPqFuao0HsBK6m2 cW0ZNkPibnuilCFENz8i72t3rB5Q7q9SucUAviaI=
Date: Wed, 20 May 2020 17:34:39 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/c62de3-c071e5@github.com>
Subject: [quicwg/base-drafts] 1655b2: Fix typo in transport draft: s/the the/the/
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/G7BmcIApFHX1FFF3GLvPEQ8QEso>
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: Thu, 21 May 2020 00:34:42 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1655b2d224dd35a586c5ca0b444f56a4d7831b1d
      https://github.com/quicwg/base-drafts/commit/1655b2d224dd35a586c5ca0b444f56a4d7831b1d
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Fix typo in transport draft: s/the the/the/


  Commit: c071e5ece172069ba09da8f76619c6652b80b9a6
      https://github.com/quicwg/base-drafts/commit/c071e5ece172069ba09da8f76619c6652b80b9a6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3680 from dtikhonov/202005201037-s-the-the-the

Fix typo in transport draft: s/the the/the/


Compare: https://github.com/quicwg/base-drafts/compare/c62de3f12901...c071e5ece172


From nobody Wed May 20 17:34:52 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 B09C73A065A for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 3aDT1Hn4MD4b for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:49 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9C1013A0602 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:49 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 27C87260197 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021289; bh=GJ3ryvCzRtS4UXqrYXqF2GZo2Kc45BLiLBOJ+1Vi71Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=niiLl7ytnY5VBWVzG1SIiM4c16om0SLaHPHFGa8nV2deRLLCNEOHgtMte/NV1/PV/ cvV6c3W/j792uKTT/3cdJsGG4FMk5c+QoxQuZC5On/ocleqKuFhuMybBxaMCHli0Jc +4bywZ0kZikxbRlstNLP5bzpNwm+0Th8BzsZ4Lxg=
Date: Wed, 20 May 2020 17:34:48 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7Z45ASM3MCC5BCAIF42GW2REVBNHHCKEBHAA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3680/issue_event/3358801742@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3680@github.com>
References: <quicwg/base-drafts/pull/3680@github.com>
Subject: Re: [quicwg/base-drafts] Fix typo in transport draft: s/the the/the/ (#3680)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5cca8d48cd_6ec53fd63a6cd9642215e4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/i_3zd5rkUXy_ABODz_ds8phOn6c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 00:34:51 -0000

----==_mimepart_5ec5cca8d48cd_6ec53fd63a6cd9642215e4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3680 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3680#event-3358801742
----==_mimepart_5ec5cca8d48cd_6ec53fd63a6cd9642215e4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621815552" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3680" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3680/hovercard" href="https://github.com/quicwg/base-drafts/pull/3680">#3680</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3680#event-3358801742">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7P6WACH6KJERI7VKLRSRZKRANCNFSM4NF73UNA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK243UTYCC4RMRU7W2LRSRZKRA5CNFSM4NF73UNKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZAZT6TQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3680#event-3358801742",
"url": "https://github.com/quicwg/base-drafts/pull/3680#event-3358801742",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec5cca8d48cd_6ec53fd63a6cd9642215e4--


From nobody Wed May 20 17:35:02 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 797523A0940 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:35:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 xNeUt7gIKKAe for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:34:58 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 66DD23A0602 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:58 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id BB5672C0FF6 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:34:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021297; bh=9ObNe6Nl8afNAErPb9hGIv97CsiVnUFjcYaJxqtPx8M=; h=Date:From:To:Subject:From; b=ULsV9fP6C/g0+Phw+WqvJOuZL472anuxkNwLdg3oofFUYpg5MjNtV4oFOdAMPtFuJ yPIRS0uX/cqvJh1C0i+HoVX+M82cAEZogj6Ls0IgsCNJMqEo8dwLS+lhOkiw4eXdkZ CgEeZpBjOiy3PiBhsmPBpKfw5CcW1bakpgIv1W4g=
Date: Wed, 20 May 2020 17:34:57 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4ecca7-145d74@github.com>
Subject: [quicwg/base-drafts] 145d74: Script updating gh-pages from c62de3f1. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JCCNfx0RdTSCFMdEpEsFePb91sA>
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: Thu, 21 May 2020 00:35:01 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 145d744813c3625c5c6ab2cb96a6f97ff66ff766
      https://github.com/quicwg/base-drafts/commit/145d744813c3625c5c6ab2cb96a6f97ff66ff766
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c62de3f1. [ci skip]



From nobody Wed May 20 17:35:54 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 20FAA3A0940 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:35:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 eKvLU3o7GkGw for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 17:35:50 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 460D93A07A1 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:35:50 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 85E2C6E0B56 for <quic-issues@ietf.org>; Wed, 20 May 2020 17:35:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590021349; bh=Eroj3Jn5lQV0qEMTjG4VOpZTpzua3rQ7oFf8DnXRWUA=; h=Date:From:To:Subject:From; b=M8I2K6tJozUI+SSaXPEi0HhtPMM6EYO2m6QT3e0LUYqwvc9dJCou93kVwNK1s9vmF x0tggMZnmMkNGtuVh1DKLfSbNVqS2SqfQ3U2Xo9dc56IXc3LwJSuxfyVEx0xZ7hSxt wfjfYhYbYuCUHA6LRX81t+HMfzxEzvWEXQ8R/ujg=
Date: Wed, 20 May 2020 17:35:49 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/145d74-56aa28@github.com>
Subject: [quicwg/base-drafts] 56aa28: Script updating gh-pages from c071e5ec. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zx1FpNjzqVNptK0S4Tpsp1B08K8>
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: Thu, 21 May 2020 00:35:52 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 56aa28f0c03c84da7839ba2cb460b91c72cec19b
      https://github.com/quicwg/base-drafts/commit/56aa28f0c03c84da7839ba2cb460b91c72cec19b
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from c071e5ec. [ci skip]



From nobody Wed May 20 19:20:12 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 81F503A089F for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 19:20:10 -0700 (PDT)
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 7XewaoYPHGJt for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 19:20:09 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7B8483A08E3 for <quic-issues@ietf.org>; Wed, 20 May 2020 19:20:09 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 752062C0AEA for <quic-issues@ietf.org>; Wed, 20 May 2020 19:20:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590027608; bh=dAGHdNy7j2ma2lOhnVHQiBmKuUIHjDBhWa8NOb24UTU=; h=Date:From:To:Subject:From; b=Wmu7wPB7ypJNspKkXDSK9VprsKnjFGBao6XT0XVhpN/guBOggxfCFvGQ3ZdEuZ090 QDj38JDZDVbceN+cQUVeYiwBwOE7Bum30M4Df6l/ptow7RGVu5D6bFjHzYhT0SIsVE fuv/lqdQEbiztf2ZWtYdPGGyaDp2TBxPgeJmT06k=
Date: Wed, 20 May 2020 19:20:08 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/56aa28-b32c3f@github.com>
Subject: [quicwg/base-drafts] b32c3f: Remove -spin-exp label from archive manually
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Nr2fSY2gPRN4uT2Jrxp9mtnameg>
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: Thu, 21 May 2020 02:20:11 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b32c3f281ef50e505133df45abf08fb3526b087f
      https://github.com/quicwg/base-drafts/commit/b32c3f281ef50e505133df45abf08fb3526b087f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Remove -spin-exp label from archive manually
[ci skip]



From nobody Wed May 20 20:41:24 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 F26D03A0A6E for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 20:41:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 2GiV-BbQwTMl for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 20:41:20 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8296B3A0A6C for <quic-issues@ietf.org>; Wed, 20 May 2020 20:41:20 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id AF44CC60B0A for <quic-issues@ietf.org>; Wed, 20 May 2020 20:41:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590032478; bh=WIuvpjsyWz3ZuBujoAZQL2KNKtXtp2aHeLQSK6kqzmQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0MBnNSAmEZIAOdNpoWM85fKxiJ/d2McHK7MLWqDA8I3gDxGARVHor98b2ghJMx9Qb /nghta3PL4t073Bznmt7a2r77aTXVjdAsRaYVbUwqWQHMR9++c82Hvea53pN//1/u5 NAEKEBJbHIVgn6/WTHUMkA8CW8iNAkd3TsGOWpkQ=
Date: Wed, 20 May 2020 20:41:18 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7HDN3OMI6DLHNEFSF42HMV5EVBNHHCKCGAH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3670/review/415858516@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3670@github.com>
References: <quicwg/base-drafts/pull/3670@github.com>
Subject: Re: [quicwg/base-drafts] Scope of disable_active_migration (#3670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5f85ea0239_3b4b3f7f79ccd96c3655a4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PrXXjQ94NcguJBo7g82ncxuCp4Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 03:41:22 -0000

----==_mimepart_5ec5f85ea0239_3b4b3f7f79ccd96c3655a4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho approved this pull request.

Thank you for the changes.

I like @martinthomson's editorial improvements, but even without them, I think we are ready.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-415858516
----==_mimepart_5ec5f85ea0239_3b4b3f7f79ccd96c3655a4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@kazuho</b> approved this pull request.</p>

<p>Thank you for the changes.</p>
<p>I like <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a>'s editorial improvements, but even without them, I think we are ready.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-415858516">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZNBMN42MUI5CCNK5LRSSPF5ANCNFSM4NFNBZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3KPSNJNOBIAIAOZNTRSSPF5A5CNFSM4NFNBZ6KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDEX6VA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-415858516",
"url": "https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-415858516",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec5f85ea0239_3b4b3f7f79ccd96c3655a4--


From nobody Wed May 20 21:04:06 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 06C553A0A9F for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:04:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 JoIaynRiFbU9 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:04:02 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D02B63A0A9C for <quic-issues@ietf.org>; Wed, 20 May 2020 21:04:02 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id F3A31121245 for <quic-issues@ietf.org>; Wed, 20 May 2020 21:04:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590033842; bh=1gv41yhwvGpcSajxlBvBH7ytxvjvDLptRdvqUY9jE4w=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=gAaN2kb6myeL/BZNpZEb3E39fBU7CqN+qkHoUCHKeqQidwVllJqKN05D/tUBRd1m0 b/NYSSNT6KJll43wPXT9e9NHKmHUId6X6x1wtPLbiLwqwjzUuHfsxuTijRzYC5VXSc 3nNZDT4zvJiVH8+ZcWwedOwwI4+BwY/20eT2kL8Q=
Date: Wed, 20 May 2020 21:04:01 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2TRCSJ5KSQSDG6RCF42HPLDEVBNHHCKFT43A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3682@github.com>
Subject: [quicwg/base-drafts] Add CID authentication to draft-28 changelog (#3682)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5fdb1aeaf6_28ce3fca86ecd96c796922"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WkIttSoZ7vOjOWTOdvlpEmh4X0A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 04:04:04 -0000

----==_mimepart_5ec5fdb1aeaf6_28ce3fca86ecd96c796922
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I suspect this was an editorial oversight?
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3682

-- Commit Summary --

  * Add CID authentication to draft-28 changelog

-- File Changes --

    M draft-ietf-quic-transport.md (1)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3682.patch
https://github.com/quicwg/base-drafts/pull/3682.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3682

----==_mimepart_5ec5fdb1aeaf6_28ce3fca86ecd96c796922
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I suspect this was an editorial oversight?</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3682'>https://github.com/quicwg/base-drafts/pull/3682</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Add CID authentication to draft-28 changelog</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3682/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (1)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3682.patch'>https://github.com/quicwg/base-drafts/pull/3682.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3682.diff'>https://github.com/quicwg/base-drafts/pull/3682.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3682">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZQWLASKRE4K5DXRS3RSSR3DANCNFSM4NGQQFCQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4M4P2VK2LX4PS5GPLRSSR3DA5CNFSM4NGQQFC2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JIWPTMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3682",
"url": "https://github.com/quicwg/base-drafts/pull/3682",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec5fdb1aeaf6_28ce3fca86ecd96c796922--


From nobody Wed May 20 21:12:16 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 DB7803A0AAA for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:12:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 5QUVydwIwOlo for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:12:13 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8C21D3A0AA9 for <quic-issues@ietf.org>; Wed, 20 May 2020 21:12:13 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id AFD022C172F for <quic-issues@ietf.org>; Wed, 20 May 2020 21:12:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590034332; bh=SwgGMrkKCYSTyZyWla57UIlUe3z6M7QXg4opwUCGmVY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=d6YqOdeBI4Fe0QDfXzPepykBGS3G3m4SIFV6gb34XbNC+b8E6IvbF5kp7RGf20OOS SZBI3GyFi3agPGsabpCHeIz4BL4rWxOZqmyDTPrdU2vnieFanFKS3gm9F234vo2GEP kQazTYgqyyUNUuzXfhkT9G6TzD5SAbLY/6yyGpoM=
Date: Wed, 20 May 2020 21:12:12 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK27RXOFIZJRRAWXOM542HQJZEVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/631867975@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec5ff9ca091e_398d3fd2536cd9684492cc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JfiqnA-Hv_lxMedrbid_ELw4eKY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 04:12:15 -0000

----==_mimepart_5ec5ff9ca091e_398d3fd2536cd9684492cc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I would rather not make the change in #3670. It assumes that migration is more likely to succeed when attempted to the preferred address as opposed to the handshake address. While this assumption might hold in some server deployments, it is not a fact. I'd rather we didn't bake this assumption into the core spec. I'd prefer to see this feature as an extension.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631867975
----==_mimepart_5ec5ff9ca091e_398d3fd2536cd9684492cc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I would rather not make the change in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621330495" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3670" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3670/hovercard" href="https://github.com/quicwg/base-drafts/pull/3670">#3670</a>. It assumes that migration is more likely to succeed when attempted to the preferred address as opposed to the handshake address. While this assumption might hold in some server deployments, it is not a fact. I'd rather we didn't bake this assumption into the core spec. I'd prefer to see this feature as an extension.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631867975">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ2V7GHV7AWEUKVDSDRSSSZZANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4R4SHN4E6X5D7RIJDRSSSZZA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWUYURY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631867975",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631867975",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec5ff9ca091e_398d3fd2536cd9684492cc--


From nobody Wed May 20 21:20:48 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 E3FDF3A0AB2 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:20:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 hEr2ZnPbnYRK for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:20:44 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 144763A0AAF for <quic-issues@ietf.org>; Wed, 20 May 2020 21:20:43 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 139E56E1189 for <quic-issues@ietf.org>; Wed, 20 May 2020 21:20:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590034843; bh=iUwmL/suzhvTdeSIeTvvZom5Rbde19PKUMF/4xK6/DY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=f2rzrAFQG2OvsQ8yRYqr9x1pyrhAit5W7Ths9fANQtMfS4oM7CVt4KvmZqc60NdCX hpppFbqNcKkfP5tflKMwqKAJBfUSPaITbO4i4ESHmhRLi75yM5U2JiwCg0FCO6J0CJ 49CxpB2v599gB7+eP1T90XPD4W+pFtxgDDzuNi1M=
Date: Wed, 20 May 2020 21:20:43 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK47J7RO5IAU23T3K3F42HRJXEVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/631869936@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec6019b4a4f_5eb23fcb1b8cd96446991a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/oIyOUQ_D0uF_8EZg6e2e_7drskw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 04:20:46 -0000

----==_mimepart_5ec6019b4a4f_5eb23fcb1b8cd96446991a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi 
> It assumes that migration is more likely to succeed when attempted to the preferred address as opposed to the handshake address. While this assumption might hold in some server deployments, it is not a fact.

Would you mind elaborating why a server, accepting connections on a preferred address, might not be able to disambiguate connections using CIDs?

As stated previously, when a client migrates to the preferred address, the client's address port tuple can change due to the existence of NATs. A server using preferred address need to take that into consideration. That means that a server has to disambiguate connections based on the CID, which in turn means that the server would be possible to support migration.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631869936
----==_mimepart_5ec6019b4a4f_5eb23fcb1b8cd96446991a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/DavidSchinazi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DavidSchinazi">@DavidSchinazi</a></p>
<blockquote>
<p>It assumes that migration is more likely to succeed when attempted to the preferred address as opposed to the handshake address. While this assumption might hold in some server deployments, it is not a fact.</p>
</blockquote>
<p>Would you mind elaborating why a server, accepting connections on a preferred address, might not be able to disambiguate connections using CIDs?</p>
<p>As stated previously, when a client migrates to the preferred address, the client's address port tuple can change due to the existence of NATs. A server using preferred address need to take that into consideration. That means that a server has to disambiguate connections based on the CID, which in turn means that the server would be possible to support migration.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631869936">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5WREM6UNJM73DOXZTRSSTZXANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY3CCOD5N6MGXGR2VTRSSTZXA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWUZD4A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631869936",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631869936",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec6019b4a4f_5eb23fcb1b8cd96446991a--


From nobody Wed May 20 21:21:56 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 AE81E3A0AAF for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:21:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 RLPymP847bsk for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:21:54 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B825E3A0AB2 for <quic-issues@ietf.org>; Wed, 20 May 2020 21:21:53 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id EEF2266002B for <quic-issues@ietf.org>; Wed, 20 May 2020 21:21:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590034912; bh=iPV8TXDWCuPSPimrVGlS00s1yPTTcNF/7lJYCKj1jVE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Nm4S8VQNo9EQfXhNiIH1p4sEPO7UFLaAccfvscJ0o0jkuVurmNvxfIMQVAH+SC0xb ju7Z/L1eGqwqbws2o0vkB/jopjfROHs3m+yzkpYxjnPadc3OdHpDHyGibzsyIRyTCT zFXR16IAxHNZpWn2bbBVLUPwzhTnZoQV0BWlKxHw=
Date: Wed, 20 May 2020 21:21:52 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7YXHESQBF4I2JGES542HROBEVBNHHCKFT43A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3682/review/415868769@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3682@github.com>
References: <quicwg/base-drafts/pull/3682@github.com>
Subject: Re: [quicwg/base-drafts] Add CID authentication to draft-28 changelog (#3682)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec601e0dfe4e_25c53fc1ec0cd9682747e4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zK6MR3MYPrW9_1spQh6dfsUIwZc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 04:21:56 -0000

----==_mimepart_5ec601e0dfe4e_25c53fc1ec0cd9682747e4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.

Oops.  Yes.  Given the importance of this change, it's a bit of a problem that I missed it.

> @@ -6902,6 +6902,7 @@ Issue and pull request numbers are listed with a leading octothorp.
 - Clarified that largest acknowledged needs to be saved, but not necessarily
   signaled in all cases (#3541, #3581)
 - Addressed linkability risk with the use of preferred_address (#3559, #3563)
+- Added authentication of handshake connection IDs (#3429, #3499)

```suggestion
- Added authentication of handshake connection IDs (#3439, #3499)
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3682#pullrequestreview-415868769
----==_mimepart_5ec601e0dfe4e_25c53fc1ec0cd9682747e4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<p>Oops.  Yes.  Given the importance of this change, it's a bit of a prob=
lem that I missed it.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3682#discussi=
on_r428436802">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -6902,6 +6902,7 @@ Issue and pull reque=
st numbers are listed with a leading octothorp.=0D
 - Clarified that largest acknowledged needs to be saved, but not necessa=
rily=0D
   signaled in all cases (#3541, #3581)=0D
 - Addressed linkability risk with the use of preferred_address (#3559, #=
3563)=0D
+- Added authentication of handshake connection IDs (#3429, #3499)=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-- Added authentication of handshake connectio=
n IDs (#3429, #3499)=0D
+- Added authentication of handshake connection IDs (#3439, #3499)=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3682#pullrequestreview-415868769">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K7C3MHQABYQZPZ546DRSST6BANCNFSM4NGQQFCQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKYDIXA27H553JPB2CLRSST6BA5CNFSM4=
NGQQFC2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODDE2OYI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3682#pullrequestrev=
iew-415868769",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3682#pullrequestreview=
-415868769",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec601e0dfe4e_25c53fc1ec0cd9682747e4--


From nobody Wed May 20 21:37:24 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 AF4743A0AC7 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:37:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 BcmsEW3xAcbK for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:37:21 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6136F3A0AC5 for <quic-issues@ietf.org>; Wed, 20 May 2020 21:37:21 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 77D40C60AB7 for <quic-issues@ietf.org>; Wed, 20 May 2020 21:37:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590035840; bh=RO4DMqGsI7dzL8J71/c+0r6zvGzGft6trcJKipZ94nY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=k+08aaFUErGt/IZJ70LazjVbYOe4kugtqi96blwLsDP0Nq5GJ8S9g+Zo9EEbnEy0q 74auX3z1B46unXoJbCBe5z5UYaywlwVpnLOD8ShbeGRAWuj8kFZYT90dNIrFWP/x72 NDbK+vJSot7dMbxGwlzfnJAPMBuYYcaH+FJ9O71g=
Date: Wed, 20 May 2020 21:37:20 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3682/push/5106221549@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3682@github.com>
References: <quicwg/base-drafts/pull/3682@github.com>
Subject: Re: [quicwg/base-drafts] Add CID authentication to draft-28 changelog (#3682)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec605806803d_2c173fe8656cd968793229"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SlzlprK1-WvCHY3gaJ-M78CHc_Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 04:37:23 -0000

----==_mimepart_5ec605806803d_2c173fe8656cd968793229
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi pushed 1 commit.

44bef0c230a2723a3aa21976aa283d7a75325d0a  Numbers all look the same :(


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3682/files/e934d003976041b7325c0b5750cf4697a3593d89..44bef0c230a2723a3aa21976aa283d7a75325d0a

----==_mimepart_5ec605806803d_2c173fe8656cd968793229
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/DavidSchinazi" class="user-mention">@DavidSchinazi</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/44bef0c230a2723a3aa21976aa283d7a75325d0a">44bef0c</a>  Numbers all look the same :(</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3682/files/e934d003976041b7325c0b5750cf4697a3593d89..44bef0c230a2723a3aa21976aa283d7a75325d0a">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5GKBDN3QYWJ5OYBVDRSSVYBANCNFSM4NGQQFCQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK554N5RZ5T42QX4WU3RSSVYBA5CNFSM4NGQQFC2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDCMJTGY2DCNKQOVZWQIZVGEYDMMRSGE2TIOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3682/files/e934d003976041b7325c0b5750cf4697a3593d89..44bef0c230a2723a3aa21976aa283d7a75325d0a",
"url": "https://github.com/quicwg/base-drafts/pull/3682/files/e934d003976041b7325c0b5750cf4697a3593d89..44bef0c230a2723a3aa21976aa283d7a75325d0a",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec605806803d_2c173fe8656cd968793229--


From nobody Wed May 20 21:38:31 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 B96433A0AC8 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:38:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 l4kgaKg5EoDK for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:38:28 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8BE373A0AC5 for <quic-issues@ietf.org>; Wed, 20 May 2020 21:38:28 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id DF8F42C0E8A for <quic-issues@ietf.org>; Wed, 20 May 2020 21:38:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590035907; bh=yvslcziMu/5xndhlE4CbMHk2u8D9LI8xj3yJxuu1viE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EmuKclFuNbhMxCBeSn4FWef2llCOivwrl3FSthLfdhBAiFklIkCoG0Cmish8ga2n6 rRZNV3P3plbRBzcDFtr87mXBxDGe8L6F2oy6wlooK6nnQgSFQ+JFp6XvP1CZTe6/FA iXY08joyEbC4zCppagXuV0wAzsxdFWRo6uK1p2lc=
Date: Wed, 20 May 2020 21:38:27 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4KMOBNISFMJXSK6AV42HTMHEVBNHHCKFT43A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3682/c631874635@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3682@github.com>
References: <quicwg/base-drafts/pull/3682@github.com>
Subject: Re: [quicwg/base-drafts] Add CID authentication to draft-28 changelog (#3682)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec605c3cf20f_4f53ff3636cd964475329"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DQcznIJSl6q7MdxFcoOx9CvXFY0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 04:38:30 -0000

----==_mimepart_5ec605c3cf20f_4f53ff3636cd964475329
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Yeah I went through the changelog looking for compatibility-breaking changes and this was the main one I was expecting to see there...

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3682#issuecomment-631874635
----==_mimepart_5ec605c3cf20f_4f53ff3636cd964475329
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Yeah I went through the changelog looking for compatibility-breaking changes and this was the main one I was expecting to see there...</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3682#issuecomment-631874635">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2RQII2QA3NI54ZCXLRSSV4HANCNFSM4NGQQFCQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7RLRE4NV2FVPZV3ZLRSSV4HA5CNFSM4NGQQFC2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWU2ISY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3682#issuecomment-631874635",
"url": "https://github.com/quicwg/base-drafts/pull/3682#issuecomment-631874635",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec605c3cf20f_4f53ff3636cd964475329--


From nobody Wed May 20 21:42:24 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 A5FF23A0ACD for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:42:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 WrlWXu64kVdF for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:42:20 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 65D983A0ACC for <quic-issues@ietf.org>; Wed, 20 May 2020 21:42:20 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 833665200AF for <quic-issues@ietf.org>; Wed, 20 May 2020 21:42:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590036139; bh=ZfoH0jIKsKybONmIZQMHbROlcx3j9YUIwtqt7cf8Nt0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SQ+l8MlPPryIozMEC5FnYDFa6nBkRDTVYZMfppPOdI7Idsy+XFiN2eI66Q9MV5zHF l9tL42e3xJLyCuCw0BjcRko+nYDACjxrTolw8gwIAbrZ9lpsg283Te1xOOATyM1beg lpwgtKKrTU/MSRQpFub+kFhMOseUoyjoNwERDr6Q=
Date: Wed, 20 May 2020 21:42:19 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4VA52XL7F4UXU6SXV42HT2XEVBNHHCITYZTQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3608/631875659@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3608@github.com>
References: <quicwg/base-drafts/issues/3608@github.com>
Subject: Re: [quicwg/base-drafts] 5-tuple routing and SPA (#3608)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec606ab72ea1_40a93f88780cd95c2808d8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/w1hrqBNYmDlqKCWf_98pB5H9kpE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 04:42:22 -0000

----==_mimepart_5ec606ab72ea1_40a93f88780cd95c2808d8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Hmmm thanks for that note @kazuho. Looking at things under that light, I agree that the assumption I described above is already part of the protocol. Please disregard my comment above https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631867975 .

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631875659
----==_mimepart_5ec606ab72ea1_40a93f88780cd95c2808d8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Hmmm thanks for that note <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/kazuho/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a>. Looking at things under that light, I agree that the assumption I described above is already part of the protocol. Please disregard my comment above <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="609163676" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3608" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3608/hovercard?comment_id=631867975&amp;comment_type=issue_comment" href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631867975">#3608 (comment)</a> .</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631875659">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6JFRDRGJMAMOQKULLRSSWKXANCNFSM4MT247UQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6XXYDMC5NBEOMZ5DLRSSWKXA5CNFSM4MT247U2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWU2QSY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631875659",
"url": "https://github.com/quicwg/base-drafts/issues/3608#issuecomment-631875659",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec606ab72ea1_40a93f88780cd95c2808d8--


From nobody Wed May 20 21:43:39 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 8DFB03A0ACB for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:43:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Ua6qGkiKgfMt for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 21:43:36 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3A8BB3A0A9C for <quic-issues@ietf.org>; Wed, 20 May 2020 21:43:36 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 851F16A0038 for <quic-issues@ietf.org>; Wed, 20 May 2020 21:43:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590036215; bh=UUMgRc0DyCRn0rvZYCvb36xkWAsKnYrRxcDQdcv0hCo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WvLgBEb16Z0FP94K/qDjUhFJL5870p0gEOlM68G6N0hg7i8mBj6ulkJ/hhGk/S8Bs tYHGIHyA44K51Yvn/yPXBJf4UqIb6wkxl5R97cYDtPeUO5KjbUObMyoiHglpXa9mWa aUPbIbqZ/OOaCj3Ez66hXuh3wjsspCalK0YqyhWA=
Date: Wed, 20 May 2020 21:43:35 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK63GOY4PP2H35BXQSV42HT7PEVBNHHCKCGAH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3670/review/415874448@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3670@github.com>
References: <quicwg/base-drafts/pull/3670@github.com>
Subject: Re: [quicwg/base-drafts] Scope of disable_active_migration (#3670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec606f774730_28c53fde6dccd964504116"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/q_lrPgoMGW9OckG8ixz4WMWXJr8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 04:43:38 -0000

----==_mimepart_5ec606f774730_28c53fde6dccd964504116
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi commented on this pull request.



> @@ -4872,11 +4873,11 @@ max_ack_delay (0x0b):
 disable_active_migration (0x0c):
 
 : The disable active migration transport parameter is included if the endpoint
-  does not support active connection migration ({{migration}}). Peers of an
-  endpoint that sets this transport parameter MUST NOT send any packets,
-  including probing packets ({{probing}}), from a local address or port other
-  than that used to perform the handshake.  This parameter is a zero-length
-  value.
+  does not support active connection migration ({{migration}}) on the address
+  being used during the handshake.  When a peer sets this transport parameter,
+  the recipient MUST NOT send any packets to the address the peer used to
+  perform the handshake from a local address or port other than that used to
+  perform the handshake.  This parameter is a zero-length value.

I would reiterate the sentence from above here:
> The disable_active_migration transport parameter does not prohibit connection migration after a client has acted on the preferred_address transport parameter.

I fear that otherwise folks might forget that detail as it is very much not clear from the name of the parameter

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-415874448
----==_mimepart_5ec606f774730_28c53fde6dccd964504116
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3670#discussion_r428441635">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -4872,11 +4873,11 @@ max_ack_delay (0x0b):
 disable_active_migration (0x0c):
 
 : The disable active migration transport parameter is included if the endpoint
-  does not support active connection migration ({{migration}}). Peers of an
-  endpoint that sets this transport parameter MUST NOT send any packets,
-  including probing packets ({{probing}}), from a local address or port other
-  than that used to perform the handshake.  This parameter is a zero-length
-  value.
+  does not support active connection migration ({{migration}}) on the address
+  being used during the handshake.  When a peer sets this transport parameter,
+  the recipient MUST NOT send any packets to the address the peer used to
+  perform the handshake from a local address or port other than that used to
+  perform the handshake.  This parameter is a zero-length value.
</pre>
<p>I would reiterate the sentence from above here:</p>
<blockquote>
<p>The disable_active_migration transport parameter does not prohibit connection migration after a client has acted on the preferred_address transport parameter.</p>
</blockquote>
<p>I fear that otherwise folks might forget that detail as it is very much not clear from the name of the parameter</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-415874448">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4YRREHMUK6CACSJB3RSSWPPANCNFSM4NFNBZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4HQCJLJV7AMTNCN73RSSWPPA5CNFSM4NFNBZ6KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDE33EA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-415874448",
"url": "https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-415874448",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec606f774730_28c53fde6dccd964504116--


From nobody Wed May 20 23:11:32 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 13C7E3A00C4 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 23:11:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 4kZSkXPhRmIS for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 23:11:29 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6B1A83A00C3 for <quic-issues@ietf.org>; Wed, 20 May 2020 23:11:29 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 1B60D2C150D for <quic-issues@ietf.org>; Wed, 20 May 2020 23:11:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590041488; bh=4HQu8wlaCsoBv8SqpC/Xl8ESQ7/gsDbsR5q8I5v/afA=; h=Date:From:To:Subject:From; b=UGiJH/C9Ga9looanoxdmJGgEKJ8Btxf0DseNup7e5UOjGwdZzgyrxLzdTpqJFPn3C QU6mBGyEqpI+FEr8fwtwOMkNUS23zCPrJoin95lvwaxB6G1LtViAHYJHSiU0nOy4e4 rbRRkYBQ9jJ7+hSR2UkRb/c1pOsd/fd90DVohTck=
Date: Wed, 20 May 2020 23:11:28 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/c071e5-d9e3f0@github.com>
Subject: [quicwg/base-drafts] e934d0: Add CID authentication to draft-28 changelog
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/E9EXbkdNrQJEs1QKEA6g4_DA4Uw>
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: Thu, 21 May 2020 06:11:31 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: e934d003976041b7325c0b5750cf4697a3593d89
      https://github.com/quicwg/base-drafts/commit/e934d003976041b7325c0b5750cf4697a3593d89
  Author: David Schinazi <dschinazi.ietf@gmail.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add CID authentication to draft-28 changelog


  Commit: 44bef0c230a2723a3aa21976aa283d7a75325d0a
      https://github.com/quicwg/base-drafts/commit/44bef0c230a2723a3aa21976aa283d7a75325d0a
  Author: David Schinazi <DavidSchinazi@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Numbers all look the same :(

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: d9e3f02481af9ceb56357d098a5eee535b12304c
      https://github.com/quicwg/base-drafts/commit/d9e3f02481af9ceb56357d098a5eee535b12304c
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3682 from DavidSchinazi/authcidchangelog

Add CID authentication to draft-28 changelog


Compare: https://github.com/quicwg/base-drafts/compare/c071e5ece172...d9e3f02481af


From nobody Wed May 20 23:11:47 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 3C2373A00C4 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 23:11:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Y_5QwzP56gyc for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 23:11:39 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C21023A00C3 for <quic-issues@ietf.org>; Wed, 20 May 2020 23:11:38 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id CF0DD8C0F9B for <quic-issues@ietf.org>; Wed, 20 May 2020 23:11:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590041497; bh=KVvlm6aSHIKTciTABRIuP4Dudmzh2CRH3W9bSfJnWyg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MVWOQeSAyk6TB7Raz9G5Gs5g8S1rIXyQ52XfZTQdLrMPn1kLWJgMRsP7sj6vKNcbe VLPYSpkmnrWfGTSuiAVGz294V+4S1cT0F6pQEY0A134+UqCV8svNBqB/C0eucLAX1t YtdU1UA21tMksXwegH/UaiT+htEiW43CxPeKiCrU=
Date: Wed, 20 May 2020 23:11:37 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4UJEBI7HHQO4B24Y542H6JTEVBNHHCKFT43A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3682/issue_event/3359387736@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3682@github.com>
References: <quicwg/base-drafts/pull/3682@github.com>
Subject: Re: [quicwg/base-drafts] Add CID authentication to draft-28 changelog (#3682)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec61b99bf041_318e3fe4860cd96087225c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/rETUdcgff9CllS-pZz7xthM-phc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 06:11:40 -0000

----==_mimepart_5ec61b99bf041_318e3fe4860cd96087225c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3682 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3682#event-3359387736
----==_mimepart_5ec61b99bf041_318e3fe4860cd96087225c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="622230744" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3682" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3682/hovercard" href="https://github.com/quicwg/base-drafts/pull/3682">#3682</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3682#event-3359387736">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4PQUCOSH2KFG7KGSDRSTAZTANCNFSM4NGQQFCQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK26BUUPDU5BLNRMUR3RSTAZTA5CNFSM4NGQQFC2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZA6DAWA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3682#event-3359387736",
"url": "https://github.com/quicwg/base-drafts/pull/3682#event-3359387736",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec61b99bf041_318e3fe4860cd96087225c--


From nobody Wed May 20 23:12:35 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 5E9993A00D2 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 23:12:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 o2AD9XbCpNXt for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 23:12:32 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D7FB93A00C4 for <quic-issues@ietf.org>; Wed, 20 May 2020 23:12:32 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 680665204D6 for <quic-issues@ietf.org>; Wed, 20 May 2020 23:12:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590041551; bh=k2e2FSNdSk+yGxmthRyewgEx7Fd00oGcFNX8vCUqkS4=; h=Date:From:To:Subject:From; b=djj6ZBCMOysF9MZkEyCEISsEFpsWEjWhmB1dxSYqFbnbu7ANsmdLv1Rb/8bi7ejBB 92M3kFtFGnenZFAZnfKVIeWa+dpyxxF+yw1/a9Ojdh5x6mfy3sDNhq6htN3Syoz9VD vDTOfID1lmd6K14S58KIxaMqU/EHXPuWJ7jE6SfI=
Date: Wed, 20 May 2020 23:12:31 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b32c3f-c8fd6d@github.com>
Subject: [quicwg/base-drafts] c8fd6d: Script updating gh-pages from d9e3f024. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uNq9QD97bhyaXpDOucTJaUU6GyE>
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: Thu, 21 May 2020 06:12:34 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c8fd6d8d6df165cc43dc592679af264032e175e5
      https://github.com/quicwg/base-drafts/commit/c8fd6d8d6df165cc43dc592679af264032e175e5
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d9e3f024. [ci skip]



From nobody Wed May 20 23:12:40 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 45C4F3A00D2 for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 23:12:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 qPJ5Ntu1qJyU for <quic-issues@ietfa.amsl.com>; Wed, 20 May 2020 23:12:38 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 39CB43A00C4 for <quic-issues@ietf.org>; Wed, 20 May 2020 23:12:38 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 7C7C1C6003D for <quic-issues@ietf.org>; Wed, 20 May 2020 23:12:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590041557; bh=9LqONXz8mZSOtINPr510DUoMhY3m8toM//64Yh3PPXU=; h=Date:From:To:Subject:From; b=bioUyOTB0vQxGzIE3/sYwx0UUxCuVLBL0Ki//3xrwDEAT1tNgGiwn8mj17Ybn9Bs4 xNeRPHtF21qo9l5mls/azKyzhcW1ZmgcH1/oCEU3QzJYVgl8p0JrX+WI9BIrjFdyEd 7/I3AoTYoMbiLZYqxgwkO+2y6dDd3pmMuV4GERKU=
Date: Wed, 20 May 2020 23:12:37 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c8fd6d-f53ff8@github.com>
Subject: [quicwg/base-drafts] f53ff8: Script updating archive at 2020-05-21T06:12:21Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zF1HgNgJNGx-gAXoAQeIC_guHlI>
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: Thu, 21 May 2020 06:12:39 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: f53ff82ceb04f552f3f7463c83c9ab516bdd6c66
      https://github.com/quicwg/base-drafts/commit/f53ff82ceb04f552f3f7463c83c9ab516bdd6c66
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M issues.js

  Log Message:
  -----------
  Script updating archive at 2020-05-21T06:12:21Z. [ci skip]



From nobody Thu May 21 07:47:47 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 2C6773A0D05 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:47:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 4W5921zTGyTQ for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:47:44 -0700 (PDT)
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 6383F3A09E1 for <quic-issues@ietf.org>; Thu, 21 May 2020 07:47:44 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 4BCC1282B79 for <quic-issues@ietf.org>; Thu, 21 May 2020 07:47:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590072463; bh=i9HGZfw4NIShqxYAomJkF7ViQUJB9xxHgXf5Bi3PX1A=; h=Date:From:To:Subject:From; b=Q1I6oS+6psipBtI9KcwYrKNPhabghEWspCK5C313pdcpbtCduQ1GLM8r3hr7rbC0Z BSdm0ACnC016MJRTgQquweX25D6QIRrR31QvMd4KnzaN6HiRaW+y/370X2x19f9B73 w0IUobgty3/nTgAlO6rob10WUjUGgHpRnPY/1iHo=
Date: Thu, 21 May 2020 07:47:43 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-split-pto-pseudocode/f10875-242e38@github.com>
Subject: [quicwg/base-drafts] 242e38: Apply suggestions from code review
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Zi69jnI6IBWdwVdJkYNdk3xhzA4>
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: Thu, 21 May 2020 14:47:46 -0000

  Branch: refs/heads/ianswett-split-pto-pseudocode
  Home:   https://github.com/quicwg/base-drafts
  Commit: 242e38d3b7e6170b59b347de6d8b3686af356c11
      https://github.com/quicwg/base-drafts/commit/242e38d3b7e6170b59b347de6d8b3686af356c11
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Apply suggestions from code review

Co-authored-by: Martin Thomson <mt@lowentropy.net>



From nobody Thu May 21 07:47:58 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 CDE763A0D05 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:47:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 CynnhXE9el-o for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:47:54 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3E1C23A09E1 for <quic-issues@ietf.org>; Thu, 21 May 2020 07:47:54 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 83DB11C10B7 for <quic-issues@ietf.org>; Thu, 21 May 2020 07:47:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590072472; bh=GaVGZDzuXmtacZsALC+XQpOlxKxAJUXMvpcXqxjH2zk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QRv+U6WBGxykj24BWV6lmQnjGR9zLGmpqDtlAMCta80i0koWr8lsBnVvzEPGBDmwF pkEJtw6gSV9rKABm1tcul6oXUIa7xDS6eqwV/PvkkappvPk37ltQI+mLFDYT4rpaBo BMXc5//nMNgjY1n5Kt/2afTb6NTOCljSsJbNBarA=
Date: Thu, 21 May 2020 07:47:52 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/push/5108732146@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec6949875267_40cb3fa54bacd96c9426e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SPgy_KHfAdlPJ94wGPLBP9dx03s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 14:47:56 -0000

----==_mimepart_5ec6949875267_40cb3fa54bacd96c9426e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

242e38d3b7e6170b59b347de6d8b3686af356c11  Apply suggestions from code review


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681/files/f10875ed05f2edd3fe121631bf89c4a877204fb5..242e38d3b7e6170b59b347de6d8b3686af356c11

----==_mimepart_5ec6949875267_40cb3fa54bacd96c9426e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/242e38d3b7e6170b59b347de6d8b3686af356c11">242e38d</a>  Apply suggestions from code review</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3681/files/f10875ed05f2edd3fe121631bf89c4a877204fb5..242e38d3b7e6170b59b347de6d8b3686af356c11">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2W2YNICNGXNWMA4RDRSU5JRANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK47C7BTPX7K5PEI7XLRSU5JRA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDAOBUGU4TEOKQOVZWQIZVGEYDQNZTGIYTINQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681/files/f10875ed05f2edd3fe121631bf89c4a877204fb5..242e38d3b7e6170b59b347de6d8b3686af356c11",
"url": "https://github.com/quicwg/base-drafts/pull/3681/files/f10875ed05f2edd3fe121631bf89c4a877204fb5..242e38d3b7e6170b59b347de6d8b3686af356c11",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec6949875267_40cb3fa54bacd96c9426e--


From nobody Thu May 21 07:48:59 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 3C0DC3A0D0C for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:48:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 WelQ6rzqds0d for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:48:56 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E04803A0A55 for <quic-issues@ietf.org>; Thu, 21 May 2020 07:48:55 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 3C35FE00A2 for <quic-issues@ietf.org>; Thu, 21 May 2020 07:48:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590072535; bh=xP0KARa8sglotyaur5wptfC381cQT342Jtl7r77qFpg=; h=Date:From:To:Subject:From; b=gEJPH6d5eYJtPcJFs3hq0DucrfFpTOTu1e6lwxvU80REfKkWEFtEVixLAYDaGppfx MwrzbFtEWCVggGrL1aOoM+odMPimMkKh9tCacXNJi1A5SZ0YmFt/IQ9WbhX1PtlFMD G9bz9QM3JxG8DKQo5nBYpX3IRnc0nwx17+pRmUEg=
Date: Thu, 21 May 2020 07:48:55 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/f53ff8-dfdcf9@github.com>
Subject: [quicwg/base-drafts] dfdcf9: Script updating gh-pages from 242e38d3. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VnqasVXtN-B7QGGg1C4jdy0rzxo>
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: Thu, 21 May 2020 14:48:57 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: dfdcf958c505451d5268d75bbf57b49a0f3611fe
      https://github.com/quicwg/base-drafts/commit/dfdcf958c505451d5268d75bbf57b49a0f3611fe
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    R hs-mitm/draft-ietf-quic-http.html
    R hs-mitm/draft-ietf-quic-http.txt
    R hs-mitm/draft-ietf-quic-invariants.html
    R hs-mitm/draft-ietf-quic-invariants.txt
    R hs-mitm/draft-ietf-quic-qpack.html
    R hs-mitm/draft-ietf-quic-qpack.txt
    R hs-mitm/draft-ietf-quic-recovery.html
    R hs-mitm/draft-ietf-quic-recovery.txt
    R hs-mitm/draft-ietf-quic-tls.html
    R hs-mitm/draft-ietf-quic-tls.txt
    R hs-mitm/draft-ietf-quic-transport.html
    R hs-mitm/draft-ietf-quic-transport.txt
    R hs-mitm/index.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-http.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-http.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-invariants.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-invariants.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-qpack.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-qpack.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-tls.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-tls.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-transport.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 242e38d3. [ci skip]



From nobody Thu May 21 07:49:10 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 363B23A0D0F for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:49:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 HZ2skfGPGSFO for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:49:07 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5394C3A0D0C for <quic-issues@ietf.org>; Thu, 21 May 2020 07:49:06 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 94CFB961766 for <quic-issues@ietf.org>; Thu, 21 May 2020 07:49:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590072545; bh=E1sbKqJ3ud2Njsh1vusRZ/Ab7FNpSDpqO1nib+EUlko=; h=Date:From:To:Subject:From; b=sPlwcnvJBkKv7TEmTA4MFjieeruUaQ9X3BP75R3Dfiq7gunuveqywhS+67l2SZrdk 3vLKTnOHPTYGQwsXZSAyAiNoo/YHVHENSiykgi48tRnuQRmz1rc1zZ4TOWHuwfPKIf nFinK5TCZGBP2kPcRu42EZKTluZUdxpM+Xm12fUA=
Date: Thu, 21 May 2020 07:49:05 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/dfdcf9-aa61ff@github.com>
Subject: [quicwg/base-drafts] aa61ff: Script updating archive at 2020-05-21T14:48:44Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6_wcOh3Vg0xtQPfk1UymXt05qCI>
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: Thu, 21 May 2020 14:49:09 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: aa61ffc706ac8d88fa0569b2fac2fc305c4701fb
      https://github.com/quicwg/base-drafts/commit/aa61ffc706ac8d88fa0569b2fac2fc305c4701fb
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-21T14:48:44Z. [ci skip]



From nobody Thu May 21 07:50:24 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 7F72B3A09DE for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:50:21 -0700 (PDT)
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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 VPRS-6sC1IED for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:50:19 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B64C53A0997 for <quic-issues@ietf.org>; Thu, 21 May 2020 07:50:19 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 07B0CC60D6D for <quic-issues@ietf.org>; Thu, 21 May 2020 07:50:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590072619; bh=ZSxZWnXfLoGkiW0t/XYqb1jw2mvcmsTMTbGjNO7rhWI=; h=Date:From:To:Subject:From; b=dr0s1EsEMJKz/K5pM3+4DTqDxdxDtbAR6MjKzk3gxK/dXsyGiEnwPCradb1UWnVbe MrG6jzSoxQ7mOcsfYMERBsDXM8+WXEZHVh+V71OHzGqk6hXaJMPTRD5TKOdKbPQun9 FPZ3YLb3Q8KFro7e5Klz8uO1NiLlBJyKHxi0PkBg=
Date: Thu, 21 May 2020 07:50:18 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-split-pto-pseudocode/242e38-7a3302@github.com>
Subject: [quicwg/base-drafts] 7a3302: Update draft-ietf-quic-recovery.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TSTRxmU6rPeF04yCy-fvYIAUXHE>
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: Thu, 21 May 2020 14:50:22 -0000

  Branch: refs/heads/ianswett-split-pto-pseudocode
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8
      https://github.com/quicwg/base-drafts/commit/7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md



From nobody Thu May 21 07:51:50 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 D96573A0A56 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:51:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 S6oHU9P9ef3x for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:50:29 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F1E603A0997 for <quic-issues@ietf.org>; Thu, 21 May 2020 07:50:28 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 4EC1DE1395 for <quic-issues@ietf.org>; Thu, 21 May 2020 07:50:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590072628; bh=6grqToqOHLk1RwZ0An+1qLe+qevVZ3HxFOtUa4yMjE0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FHP0deiQf995uMgjEfsWTmAfanySB0DOIPXBXsQKg8G7o3ucl5LF1iubQZKnYzuZu Ad/pQT5L87Nxpo3mgHdm22PY1GnPrx3XipY2U+Fij0yO78cTjdxgUiyeochAkz9wf2 ZzEtyUow5tDHHXmCBwdSHeDBorb5pCXyz1ip0YG0=
Date: Thu, 21 May 2020 07:50:28 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/push/5108746256@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec695343e341_76ba3fdc4e0cd964493fc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sMxr-J_e4KvS5XuBxlYbRf4pEgQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 14:51:47 -0000

----==_mimepart_5ec695343e341_76ba3fdc4e0cd964493fc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8  Update draft-ietf-quic-recovery.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681/files/242e38d3b7e6170b59b347de6d8b3686af356c11..7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8

----==_mimepart_5ec695343e341_76ba3fdc4e0cd964493fc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8">7a33021</a>  Update draft-ietf-quic-recovery.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3681/files/242e38d3b7e6170b59b347de6d8b3686af356c11..7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK562KZK5Q23TUVWJLLRSU5TJANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3NYXWTGV7VRZFC2ALRSU5TJA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDAOBUGU4TEOKQOVZWQIZVGEYDQNZUGYZDKNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681/files/242e38d3b7e6170b59b347de6d8b3686af356c11..7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8",
"url": "https://github.com/quicwg/base-drafts/pull/3681/files/242e38d3b7e6170b59b347de6d8b3686af356c11..7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec695343e341_76ba3fdc4e0cd964493fc--


From nobody Thu May 21 07:52:14 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 51E733A0AAC for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:51:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 DZ94NYhPqq4g for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:50:47 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BE7513A09DE for <quic-issues@ietf.org>; Thu, 21 May 2020 07:50:47 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id A25A08C0026 for <quic-issues@ietf.org>; Thu, 21 May 2020 07:50:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590072646; bh=sLOTME7cDh7l2WqyQnQbvkWZYFIscjHiyHBw5bJriac=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wN5BgKtB7TAdOWL7IDJmDAb1ABVKEFFE6uK7ElIqLsaUr9rfYLNE5yW0q1KamT9dI WjT3lFrA8TNC/sJ+0i8NxmtrN3jdIJ8YVEXxLw7Szpy31/FKusvzcxjPruld6qeDi9 yu2L/0GYkGIPtH3xox9+9F+8G0JvP4wWr5pFQVLo=
Date: Thu, 21 May 2020 07:50:46 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5SQUGYXUM5OFCVOYF42J3ENEVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/review/416215165@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec6954691548_4c213ff7120cd96c1090d7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Y6Tp6O26p71MUcNdbhOpdQvpZFY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 14:51:48 -0000

----==_mimepart_5ec6954691548_4c213ff7120cd96c1090d7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



>        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = smoothed_rtt +
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):
+    return now() + duration, Initial
+  timeout = infinite
+  pn_space = Initial

Sg, changed to pto_timeout and pto_space.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#discussion_r428700548
----==_mimepart_5ec6954691548_4c213ff7120cd96c1090d7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3681#discussion_r428700548">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = smoothed_rtt +
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):
+    return now() + duration, Initial
+  timeout = infinite
+  pn_space = Initial
</pre>
<p>Sg, changed to pto_timeout and pto_space.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3681#discussion_r428700548">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY6ZOYMBNA64NDD3M3RSU5UNANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7F5RH2VCLXKUUFZNLRSU5UNA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDHPA7I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681#discussion_r428700548",
"url": "https://github.com/quicwg/base-drafts/pull/3681#discussion_r428700548",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec6954691548_4c213ff7120cd96c1090d7--


From nobody Thu May 21 07:52:28 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 DA07A3A0CFA for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:52:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 gkBH31XunQvf for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 07:52:05 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 33CC03A0D14 for <quic-issues@ietf.org>; Thu, 21 May 2020 07:52:05 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 86B96E004A for <quic-issues@ietf.org>; Thu, 21 May 2020 07:52:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590072724; bh=GX7QOR1lu+MoCo+wbb/YDxyNzhX1SF+x7yxwQD0OpOE=; h=Date:From:To:Subject:From; b=oYNassJLJ6QC2I+15i4qIWUgtfN38394FQNjHNwBnoaaMZkbWBY2p0hSHlxZGFwRC zd8+w/459V4K1EdUd3E1dhPE9udJ+QjbNZougO417lqYh3vBDyHhbTANlC5RBHJbvX q2i7xZvrkUkWQ+gKDd0qYRk4ycaua9FUce7LXWkk=
Date: Thu, 21 May 2020 07:52:04 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/aa61ff-4da9ad@github.com>
Subject: [quicwg/base-drafts] 4da9ad: Script updating gh-pages from 7a330219. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/U5I5ayN1sjxf54o6vixe4pStkcM>
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: Thu, 21 May 2020 14:52:13 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4da9ad0bbce4b47606f20309781fa5a2784f0d11
      https://github.com/quicwg/base-drafts/commit/4da9ad0bbce4b47606f20309781fa5a2784f0d11
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 7a330219. [ci skip]



From nobody Thu May 21 09:55:54 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 9A28A3A09F4 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 09:55:51 -0700 (PDT)
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 12vFrzUkiIN6 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 09:55:49 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6182A3A09E1 for <quic-issues@ietf.org>; Thu, 21 May 2020 09:55:49 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id F1FC51C02CD for <quic-issues@ietf.org>; Thu, 21 May 2020 09:55:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590080147; bh=eAkXL35OL3+bWJCICbDL5nr7y+ucwVSAQkrel3gnwMQ=; h=Date:From:To:Subject:From; b=PBRK4WB7H8fADkLgo4R/ZcxStQ3G0j65HXyhOtU6j1UXic8SeDoA8ry4kHkPEePV7 pGF7U+ISnfNyqqqQZCes9UXx3MKkZ1yUGIv7irB6HkC4q+BpDGUyj6XGPy3DEsfYbY luZOHsNauDFlPL37IPjxdmsxm6Lf2buuebEbit7w=
Date: Thu, 21 May 2020 09:55:47 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/transport/scope_disable/2f83dd-9d27aa@github.com>
Subject: [quicwg/base-drafts] 9d27aa: Apply suggestions from @martinthomson
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vtU3Y7dMoBSb9zXSg4Zd9-B7yII>
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: Thu, 21 May 2020 16:55:52 -0000

  Branch: refs/heads/transport/scope_disable
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9d27aab64095948c292d7823e33c929fbe605085
      https://github.com/quicwg/base-drafts/commit/9d27aab64095948c292d7823e33c929fbe605085
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Apply suggestions from @martinthomson

Co-authored-by: Martin Thomson <mt@lowentropy.net>



From nobody Thu May 21 09:56:00 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 9E05C3A09F5 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 09:55:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 MSo4EmnZFhWT for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 09:55:57 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6B6673A09E1 for <quic-issues@ietf.org>; Thu, 21 May 2020 09:55:57 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id A8C202C21D5 for <quic-issues@ietf.org>; Thu, 21 May 2020 09:55:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590080156; bh=yVfk8CbP8OrQK7+Wny7uo128j/EHsPLZYecUyiqIT2o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WGyrVt38BJpvDyoe/4w/szuEL4GPtm4E7xpV2cEnc1GTtcrPSBjjtGTsjgHxKpMep 0/BOenNYl7Krso2G1yE+GQYICYr4QGtIUSgdpEbEVZYJeJi21xNJoGl4MR4+zfPjCU RmsThn7h48SfnCr/2RiSB6luSYaJ/3qhM8NLH200=
Date: Thu, 21 May 2020 09:55:56 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3670/push/5109400452@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3670@github.com>
References: <quicwg/base-drafts/pull/3670@github.com>
Subject: Re: [quicwg/base-drafts] Scope of disable_active_migration (#3670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec6b29c99e66_5d613fde724cd96c193249"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/YJfKjPK9uVA0IAr-wpcAFb7psNQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 16:55:59 -0000

----==_mimepart_5ec6b29c99e66_5d613fde724cd96c193249
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop pushed 1 commit.

9d27aab64095948c292d7823e33c929fbe605085  Apply suggestions from @martinthomson


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3670/files/2f83dde0952fa7778d94d98160fa2f11904e41bb..9d27aab64095948c292d7823e33c929fbe605085

----==_mimepart_5ec6b29c99e66_5d613fde724cd96c193249
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/MikeBishop" class="user-mention">@MikeBishop</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/9d27aab64095948c292d7823e33c929fbe605085">9d27aab</a>  Apply suggestions from @martinthomson</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3670/files/2f83dde0952fa7778d94d98160fa2f11904e41bb..9d27aab64095948c292d7823e33c929fbe605085">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK67EGOHINCDR6XZFJTRSVMJZANCNFSM4NFNBZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7WXQDN6RAMMYRR3OTRSVMJZA5CNFSM4NFNBZ6KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDANBQGMYDOOCQOVZWQIZVGEYDSNBQGA2DKMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3670/files/2f83dde0952fa7778d94d98160fa2f11904e41bb..9d27aab64095948c292d7823e33c929fbe605085",
"url": "https://github.com/quicwg/base-drafts/pull/3670/files/2f83dde0952fa7778d94d98160fa2f11904e41bb..9d27aab64095948c292d7823e33c929fbe605085",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec6b29c99e66_5d613fde724cd96c193249--


From nobody Thu May 21 09:59:41 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 8402C3A0B2A for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 09:59:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 EXGEJD_yDulu for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 09:59:29 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 704C73A0AF4 for <quic-issues@ietf.org>; Thu, 21 May 2020 09:59:24 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id C39E69604E0 for <quic-issues@ietf.org>; Thu, 21 May 2020 09:59:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590080363; bh=iWJUEHts5I6lYS7iG7yhK8AImRBSfgCjA209KResTMk=; h=Date:From:To:Subject:From; b=v0aSuCKSQJSQ8IJgAUHypWbRJ9WS3aYQGjozBD2jccGXNhFNC/2rSz9LmDajuSnrz TesjzViL/ptO43VvkBPZf+BtvY03G2oJIClown9fr8jykTxK9csnxRqukQCdesCtkW qEXdp0TS0lhcIPlWupYzQJsA+fR2p6BqvL4ZjC3o=
Date: Thu, 21 May 2020 09:59:23 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/transport/scope_disable/9d27aa-bd9571@github.com>
Subject: [quicwg/base-drafts] bd9571: Repetition can be useful and helpful
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WXTEPz24lKavaSsuQTuzYNVtvbU>
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: Thu, 21 May 2020 16:59:40 -0000

  Branch: refs/heads/transport/scope_disable
  Home:   https://github.com/quicwg/base-drafts
  Commit: bd95712de002d2527bfabc9688d02c1b26e71cfd
      https://github.com/quicwg/base-drafts/commit/bd95712de002d2527bfabc9688d02c1b26e71cfd
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Repetition can be useful and helpful



From nobody Thu May 21 09:59:51 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 EEC683A0B71 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 09:59:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 2-hqgUHluuu1 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 09:59:40 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 56BB23A0B16 for <quic-issues@ietf.org>; Thu, 21 May 2020 09:59:33 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 2FE348C09F1 for <quic-issues@ietf.org>; Thu, 21 May 2020 09:59:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590080372; bh=9/EnTRh0vgZWKZNrGOJNFDvnon4l8x2GFySBNHA5j0s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=P6D94Gms/sGCtZfXLQFuGc6nDYcBy9KuxNfSWHlXZwEbS+8nz1IIvJq+aflKyx1bj Yy61t7/XuEhehGDrnk4cpiYcL1QveCKWABzlNoM27EYbpN80PTIcEbDZePMBWBOioT nO4OzWBov+ig8vBCx0TdkMGUFM6hMtFmpExzKGVg=
Date: Thu, 21 May 2020 09:59:32 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3670/push/5109417687@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3670@github.com>
References: <quicwg/base-drafts/pull/3670@github.com>
Subject: Re: [quicwg/base-drafts] Scope of disable_active_migration (#3670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec6b3741f48f_6513fca478cd95c17805"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8qfz22jlewM34xn4aVn0YdAfxeQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 16:59:49 -0000

----==_mimepart_5ec6b3741f48f_6513fca478cd95c17805
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop pushed 1 commit.

bd95712de002d2527bfabc9688d02c1b26e71cfd  Repetition can be useful and helpful


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3670/files/9d27aab64095948c292d7823e33c929fbe605085..bd95712de002d2527bfabc9688d02c1b26e71cfd

----==_mimepart_5ec6b3741f48f_6513fca478cd95c17805
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/MikeBishop" class="user-mention">@MikeBishop</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/bd95712de002d2527bfabc9688d02c1b26e71cfd">bd95712</a>  Repetition can be useful and helpful</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3670/files/9d27aab64095948c292d7823e33c929fbe605085..bd95712de002d2527bfabc9688d02c1b26e71cfd">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZWQGS5YOB7RDXT7YLRSVMXJANCNFSM4NFNBZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3M33UOWANR3SNNNH3RSVMXJA5CNFSM4NFNBZ6KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDANBQGMYDOOCQOVZWQIZVGEYDSNBRG43DQNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3670/files/9d27aab64095948c292d7823e33c929fbe605085..bd95712de002d2527bfabc9688d02c1b26e71cfd",
"url": "https://github.com/quicwg/base-drafts/pull/3670/files/9d27aab64095948c292d7823e33c929fbe605085..bd95712de002d2527bfabc9688d02c1b26e71cfd",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec6b3741f48f_6513fca478cd95c17805--


From nobody Thu May 21 10:00:54 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 8D26A3A0B9B for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 10:00:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 WrdzmlgaSTei for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 10:00:44 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A62E23A0B40 for <quic-issues@ietf.org>; Thu, 21 May 2020 10:00:32 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 07D10E1107 for <quic-issues@ietf.org>; Thu, 21 May 2020 10:00:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590080432; bh=AMNQ52+3FG1a/0Euh/u+VJNP2ZDYH9dYr+ni5HJHG6E=; h=Date:From:To:Subject:From; b=eUd0GRdg+9SKMHIb2t2bdSzAe/H/hnD9nuVm5la+xQ0nV62J2xFluhASSSJT11gJb Oo9SPMvqlpFZlglIlqDeUneiik1B5phbeMa5hZd0f+Nlvgkrai7z1IkVMVKhBDLrhQ b8lcbg5xEPHU5gpyqTPtCP2mzt3xlW/WQ8N+VOyY=
Date: Thu, 21 May 2020 10:00:31 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4da9ad-ebb4ae@github.com>
Subject: [quicwg/base-drafts] ebb4ae: Script updating gh-pages from bd95712d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lVIqcWBsw56lkkjzLcEtFJIZ7UM>
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: Thu, 21 May 2020 17:00:54 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ebb4ae761cf8bd1c96aa198517f9880ec6c62ae5
      https://github.com/quicwg/base-drafts/commit/ebb4ae761cf8bd1c96aa198517f9880ec6c62ae5
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M index.html
    M transport/scope_disable/draft-ietf-quic-http.html
    M transport/scope_disable/draft-ietf-quic-http.txt
    M transport/scope_disable/draft-ietf-quic-invariants.html
    M transport/scope_disable/draft-ietf-quic-invariants.txt
    M transport/scope_disable/draft-ietf-quic-qpack.html
    M transport/scope_disable/draft-ietf-quic-qpack.txt
    M transport/scope_disable/draft-ietf-quic-recovery.html
    M transport/scope_disable/draft-ietf-quic-recovery.txt
    M transport/scope_disable/draft-ietf-quic-tls.html
    M transport/scope_disable/draft-ietf-quic-tls.txt
    M transport/scope_disable/draft-ietf-quic-transport.html
    M transport/scope_disable/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from bd95712d. [ci skip]



From nobody Thu May 21 11:16:47 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 B37743A0062 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 11:16:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 TtYrheAYO1nY for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 11:16:44 -0700 (PDT)
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 9C2633A005D for <quic-issues@ietf.org>; Thu, 21 May 2020 11:16:44 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 7D847282C54 for <quic-issues@ietf.org>; Thu, 21 May 2020 11:16:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590085003; bh=x7GEwiJA5cKMiDms2jH35dk9ytXwKGtQCIEVqvxDBl4=; h=Date:From:To:Subject:From; b=0ikS9TgqYvjDzCeSSekhjzRRQR6fbcxJ1Bb1AX8T8v7UFa6SLGxt4Wvz0FhuuhrDx PxIPEGTC9xkVChrP0xxyH7Vmyym1zHTpWpnZpAZpwUCpBqGQE4eA5tdO7bWrVHeQBk oT6iq6YY7LKdKcdS8qcCIxtB0JV3Fp8ObVnGjZHk=
Date: Thu, 21 May 2020 11:16:43 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/auth-reference/000000-d7641b@github.com>
Subject: [quicwg/base-drafts] d7641b: Correct reference for authority-form
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5Z8lxeKnlickpx6VkOw3UVBvgZ0>
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: Thu, 21 May 2020 18:16:46 -0000

  Branch: refs/heads/http/auth-reference
  Home:   https://github.com/quicwg/base-drafts
  Commit: d7641b8b1e1cd26f564434af721981316822c934
      https://github.com/quicwg/base-drafts/commit/d7641b8b1e1cd26f564434af721981316822c934
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Correct reference for authority-form



From nobody Thu May 21 11:17:30 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 DA9F63A005D for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 11:17:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 r9Mdvd36lwmJ for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 11:17:27 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C55633A00D2 for <quic-issues@ietf.org>; Thu, 21 May 2020 11:17:26 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 1BCE9C60644 for <quic-issues@ietf.org>; Thu, 21 May 2020 11:17:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590085046; bh=IS/FANFkmrhcGl/5a7IyuUH5Jw9R0CmM86LOJIkARec=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ou1DfVQrD6EMRU04Dzh6JnKt/sSQqBpP+PIXaZLdqXC2rxWGfl9Fq073h9j9IxzUm gGhCpmWIKH6kTcAJHMCxp7xG0Q9AyWc2NIQNhso6Dc+S8WYn3hjWKEqyrfjBVWTkPl PM65tu0Jji0xqEcRUoNCcFPWAc47E+Qn+Zrfrhig=
Date: Thu, 21 May 2020 11:17:26 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7ADIQYASUB3W7YZWV42KTLNEVBNHHCKHLO7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3683@github.com>
Subject: [quicwg/base-drafts] Correct reference for authority-form (#3683)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec6c5b6cb2d_4803f9693ecd95c17267"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ElXNMPD_BArdOE5JaKWPSRH1HB4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 18:17:29 -0000

----==_mimepart_5ec6c5b6cb2d_4803f9693ecd95c17267
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #3677.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3683

-- Commit Summary --

  * Correct reference for authority-form

-- File Changes --

    M draft-ietf-quic-http.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3683.patch
https://github.com/quicwg/base-drafts/pull/3683.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3683

----==_mimepart_5ec6c5b6cb2d_4803f9693ecd95c17267
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3677.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621528891" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3677" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3677/hovercard" href="https://github.com/quicwg/base-drafts/issues/3677">#3677</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3683'>https://github.com/quicwg/base-drafts/pull/3683</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Correct reference for authority-form</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3683/files#diff-3d2f9fd0738589657498f2c06ee02f2f">draft-ietf-quic-http.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3683.patch'>https://github.com/quicwg/base-drafts/pull/3683.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3683.diff'>https://github.com/quicwg/base-drafts/pull/3683.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3683">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2TSQ7HTSS3XRCDASTRSVV3NANCNFSM4NHBPI3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4RPL6CYQ6OVL6HRGLRSVV3NA5CNFSM4NHBPI3KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JI5N35Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3683",
"url": "https://github.com/quicwg/base-drafts/pull/3683",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec6c5b6cb2d_4803f9693ecd95c17267--


From nobody Thu May 21 11:17:54 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 6C7D93A00E0 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 11:17:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 pQCua41BYEvV for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 11:17:51 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 45D9C3A00DB for <quic-issues@ietf.org>; Thu, 21 May 2020 11:17:51 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 854755200AE for <quic-issues@ietf.org>; Thu, 21 May 2020 11:17:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590085070; bh=koSfY3olwxqlEItYy2j9zPqxCZIA/j2ryzXgu5Siq4k=; h=Date:From:To:Subject:From; b=UzFtLfzDVJ0jmDzws1s3CU0aXLC6xI2YThEq6ehNgq2LzGzR3yOmqKRV4QY594fzG Ezi+RecxWj5O1sd/rBKj6Ut0IGA/XyCokHHg5z4lBdYgVC/TCz8xmZOXfqMmdCNWXU ilqByNkMgNPYEJ422/wetXWLpUeSDAesGG03pdLA=
Date: Thu, 21 May 2020 11:17:50 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ebb4ae-0b2c6e@github.com>
Subject: [quicwg/base-drafts] 0b2c6e: Script updating gh-pages from d7641b8b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BtbITmKpZ-P2JOX13Du9vnnpONA>
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: Thu, 21 May 2020 18:17:53 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0b2c6edacba027021bb25a3c8e18b81b833e41ba
      https://github.com/quicwg/base-drafts/commit/0b2c6edacba027021bb25a3c8e18b81b833e41ba
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    A http/auth-reference/draft-ietf-quic-http.html
    A http/auth-reference/draft-ietf-quic-http.txt
    A http/auth-reference/draft-ietf-quic-invariants.html
    A http/auth-reference/draft-ietf-quic-invariants.txt
    A http/auth-reference/draft-ietf-quic-qpack.html
    A http/auth-reference/draft-ietf-quic-qpack.txt
    A http/auth-reference/draft-ietf-quic-recovery.html
    A http/auth-reference/draft-ietf-quic-recovery.txt
    A http/auth-reference/draft-ietf-quic-tls.html
    A http/auth-reference/draft-ietf-quic-tls.txt
    A http/auth-reference/draft-ietf-quic-transport.html
    A http/auth-reference/draft-ietf-quic-transport.txt
    A http/auth-reference/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d7641b8b. [ci skip]



From nobody Thu May 21 11:38:17 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 1FAAA3A046A for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 11:38:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 xcyaV1J5srZ2 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 11:38:13 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D32673A053E for <quic-issues@ietf.org>; Thu, 21 May 2020 11:38:12 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id C595D660022 for <quic-issues@ietf.org>; Thu, 21 May 2020 11:38:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590086291; bh=nbzh1xusafrlv/8ZuegauEjRVoFgaND796hym5VOpis=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RDNFG2grJ2hQ42nm7fmmf/ejJ0zdll3/7LUtnNFrNs9cari6nBXJJce3A+D+2AqI/ HVDej7pStg3W3AYOBgPEBmBTHg9MORakCM/FXEysePCmaI9/QEObvEEhjyTrq/M2xO iuLLcQT5aPF7JSS0TdE/wl+2k//EJvf/fOPIM8MU=
Date: Thu, 21 May 2020 11:38:11 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5E4TKJWKCTVYZTICF42KVZHEVBNHHCKCOUQQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3673/632273639@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3673@github.com>
References: <quicwg/base-drafts/issues/3673@github.com>
Subject: Re: [quicwg/base-drafts] New packet format used before it is defined (#3673)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec6ca93b6192_11cb3f9f5f0cd9681495a3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Hx8RQeiPKMzS5JG6A1UR_ublpk0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 18:38:15 -0000

----==_mimepart_5ec6ca93b6192_11cb3f9f5f0cd9681495a3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree that the reference is sufficient, except for one aspect:  We do want the invariants drafts to be readable without needing to get into the v1 spec, because the target audience is people who need to handle QUIC without regard to versions.

I think it's wrong that the reference to QUIC-TRANSPORT is normative instead of informative, and this reference for conventions and definitions is the only reference in the doc that actually needs to be normative.  I'm almost be more inclined to move the notation definition across, just as we ultimately did for the definition of VN, and let -transport refer to -invariants for it.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3673#issuecomment-632273639
----==_mimepart_5ec6ca93b6192_11cb3f9f5f0cd9681495a3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I agree that the reference is sufficient, except for one aspect:  We do want the invariants drafts to be readable without needing to get into the v1 spec, because the target audience is people who need to handle QUIC without regard to versions.</p>
<p>I think it's wrong that the reference to QUIC-TRANSPORT is normative instead of informative, and this reference for conventions and definitions is the only reference in the doc that actually needs to be normative.  I'm almost be more inclined to move the notation definition across, just as we ultimately did for the definition of VN, and let -transport refer to -invariants for it.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3673#issuecomment-632273639">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZMODYJV7XSRS67A3TRSVYJHANCNFSM4NFQIK4A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZH5COWHB32QYKVHLLRSVYJHA5CNFSM4NFQIK4KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWX3VZY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3673#issuecomment-632273639",
"url": "https://github.com/quicwg/base-drafts/issues/3673#issuecomment-632273639",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec6ca93b6192_11cb3f9f5f0cd9681495a3--


From nobody Thu May 21 11:50:27 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 46B1B3A065A for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 11:50:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 x5Z9e_v8QCgc for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 11:50:24 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B56723A064A for <quic-issues@ietf.org>; Thu, 21 May 2020 11:50:24 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id E402D2C0CF5 for <quic-issues@ietf.org>; Thu, 21 May 2020 11:50:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590087023; bh=PqVkEV51AvCrVASNc2RfqGCP9afNKfo8I1TAtDp4KhQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=us+XWKs5Oi9o4ZiFk4FCwnH282qt7lZXxw6hnDjjnx7eL930EUCoTaXm0gpKP8k8/ CK8lcAul9xdEJdEdvuTVKXd2zXCSFS1RCdD4bhvRr4fS3/42K30pfbxWHKTwpAtgrv Mg08YdECxNwAQjbRStY6uFfArCQF+lh1qHT3yxcE=
Date: Thu, 21 May 2020 11:50:23 -0700
From: Julian Reschke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7733RWRKXBXONRGKN42KXG7EVBNHHCKHLO7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3683/review/416403403@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3683@github.com>
References: <quicwg/base-drafts/pull/3683@github.com>
Subject: Re: [quicwg/base-drafts] Correct reference for authority-form (#3683)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec6cd6fd4137_3e53fb4a2ecd95c3058fd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: reschke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5gfFFdsOfIk7IVt0pA0axepnZeE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 18:50:27 -0000

----==_mimepart_5ec6cd6fd4137_3e53fb4a2ecd95c3058fd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@reschke approved this pull request.

LGTM right now.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3683#pullrequestreview-416403403
----==_mimepart_5ec6cd6fd4137_3e53fb4a2ecd95c3058fd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@reschke</b> approved this pull request.</p>

<p>LGTM right now.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3683#pullrequestreview-416403403">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3VS4UNTXA2AWTZYJDRSVZW7ANCNFSM4NHBPI3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZTQP733DITMFRJKTLRSVZW7A5CNFSM4NHBPI3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDI47SY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3683#pullrequestreview-416403403",
"url": "https://github.com/quicwg/base-drafts/pull/3683#pullrequestreview-416403403",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec6cd6fd4137_3e53fb4a2ecd95c3058fd--


From nobody Thu May 21 12:00:41 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 A562D3A0B40 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 12:00:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 6acOk1wGBUKZ for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 12:00:31 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E6F763A0A8C for <quic-issues@ietf.org>; Thu, 21 May 2020 12:00:29 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id BF9166A121E for <quic-issues@ietf.org>; Thu, 21 May 2020 12:00:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590087628; bh=3Ta/uJgAZl7lFKf08jpQ5Cc25CbxRssAWOF/kECJXpI=; h=Date:From:To:Subject:From; b=Qx+1cBPaMZ437KuQiZk9hqZtj3eRvkMIXGyX1tLea5EpUqMbCbJuqmvBOJPZiOJZv IiEaSztjueX8PZApn5grmwwl/vadiRRuzfhlOKLZu/D+89dyUNkxIfrMi+XhpsSKZC ojbdPCI39w6/rAEkIJPrFVZcVuqew7U90PWHYe7w=
Date: Thu, 21 May 2020 12:00:28 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/auth-reference/d7641b-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dGRbxlSiJvdSzP7JtDl3Xg6cpi0>
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: Thu, 21 May 2020 19:00:39 -0000

  Branch: refs/heads/http/auth-reference
  Home:   https://github.com/quicwg/base-drafts


From nobody Thu May 21 12:01:25 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 483443A0B35 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 12:00:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 sPw3VxF-7rIN for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 12:00:31 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3C39D3A0B22 for <quic-issues@ietf.org>; Thu, 21 May 2020 12:00:30 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id D4CDFE0DBB for <quic-issues@ietf.org>; Thu, 21 May 2020 12:00:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590087628; bh=wGZecr9kVOTm9Ub4npjvTGMaul9pxR5Fl2hYhghlUTo=; h=Date:From:To:Subject:From; b=T3BRguKWC19vpkpUUOPzep82gVFsy9dwsMEWUOZU3MK5Y54Su+XAwUNoXXstKn4N4 appDk5CmE2/fWr8O3gO4O01nnpbX2s69Vk19Xe/qTA/ww6AP9x93uiC6Ve3p0zzvnc TYMMWFM5oClmpiy6cwLRMtiet3Bd5bMAXq1yEM1U=
Date: Thu, 21 May 2020 12:00:28 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/d9e3f0-57ce76@github.com>
Subject: [quicwg/base-drafts] 57ce76: Correct reference for authority-form (#3683)
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GgLSXbNt6b6wSWrF3YXGAskLfFM>
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: Thu, 21 May 2020 19:00:40 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 57ce7603bb82fa5014af03385b38b813101ddf23
      https://github.com/quicwg/base-drafts/commit/57ce7603bb82fa5014af03385b38b813101ddf23
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Correct reference for authority-form (#3683)



From nobody Thu May 21 12:01:33 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 195D43A0B7E for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 12:00:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 xDP-aZQ2ntCO for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 12:00:41 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C29F83A0B78 for <quic-issues@ietf.org>; Thu, 21 May 2020 12:00:38 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 249316A11C5 for <quic-issues@ietf.org>; Thu, 21 May 2020 12:00:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590087638; bh=/gZPzEn7UnXzq5nY2VfXHrjprE1fEhUKUvXAQMOfVCo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lmstx9H/7hMKA5W8Q6OnyQR0by1vW+/qEjsMUHaltuKGdq0pxyrIws4B397m4hi+Q 7UaqA2I9nawYx0BI3c8T58vFY73jC76nDeovA8XxRHIDiUARFGx7fKgYD45tSx8PyH kWAOHukm0qavX0kmiCyWlKZ49azUOb/2yMYPhQj8=
Date: Thu, 21 May 2020 12:00:38 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4E33IJO6MX2S4D4HV42KYNNEVBNHHCKHLO7M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3683/issue_event/3361902891@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3683@github.com>
References: <quicwg/base-drafts/pull/3683@github.com>
Subject: Re: [quicwg/base-drafts] Correct reference for authority-form (#3683)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec6cfd613a58_2d1d3feb4e0cd964323d3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2K4K2ji_V2L9bzLiGent9s5IZss>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 19:00:50 -0000

----==_mimepart_5ec6cfd613a58_2d1d3feb4e0cd964323d3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3683 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3683#event-3361902891
----==_mimepart_5ec6cfd613a58_2d1d3feb4e0cd964323d3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="622685947" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3683" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3683/hovercard" href="https://github.com/quicwg/base-drafts/pull/3683">#3683</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3683#event-3361902891">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7HI5EUNBWK6OT25CTRSV25NANCNFSM4NHBPI3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4VKXZQOHQ6B46TS4LRSV25NA5CNFSM4NHBPI3KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZBRJCKY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3683#event-3361902891",
"url": "https://github.com/quicwg/base-drafts/pull/3683#event-3361902891",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec6cfd613a58_2d1d3feb4e0cd964323d3--


From nobody Thu May 21 12:01:37 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 B280C3A0BAD for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 12:00:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 beKQKFbQ1zUE for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 12:00:42 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 410973A0B7C for <quic-issues@ietf.org>; Thu, 21 May 2020 12:00:39 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id D058052003A for <quic-issues@ietf.org>; Thu, 21 May 2020 12:00:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590087637; bh=sUOvS600UdMadHewqSkDFP21HXPVWXxRMafFdpSTw6g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iXjJ7fvx9isZ/PaWY7ldvdxSGg3Xn+r8hbNf5C/qH1Esd2PW0LpuZhXb6bn+UBqtr yhnAs3Lc3rLX+Adasv5aKxpoqI/nYYodwWbDtFMgyEWtQHLF8GbrMWls2Xopzkymhs Ant8N4pEiq4X034HCrKTI0SD18e0zMO8ENbrMHww=
Date: Thu, 21 May 2020 12:00:37 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3BS7456V5SYDYZSZV42KYNLEVBNHHCKC6HHM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3677/issue_event/3361902898@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3677@github.com>
References: <quicwg/base-drafts/issues/3677@github.com>
Subject: Re: [quicwg/base-drafts] http: dangling reference to Section 5.3 of HTTP11 (#3677)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec6cfd5c1929_178a3f9b5f2cd960456f8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TZUhiVS2AhezEqyT4NnbQKtGpqE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 21 May 2020 19:00:54 -0000

----==_mimepart_5ec6cfd5c1929_178a3f9b5f2cd960456f8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3677 via #3683.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3677#event-3361902898
----==_mimepart_5ec6cfd5c1929_178a3f9b5f2cd960456f8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621528891" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3677" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3677/hovercard" href="https://github.com/quicwg/base-drafts/issues/3677">#3677</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="622685947" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3683" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3683/hovercard" href="https://github.com/quicwg/base-drafts/pull/3683">#3683</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3677#event-3361902898">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3T2MEXNNKIGBFPFBTRSV25LANCNFSM4NFVQ6EA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3R2O7N4NPXESAVKULRSV25LA5CNFSM4NFVQ6EKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZBRJCMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3677#event-3361902898",
"url": "https://github.com/quicwg/base-drafts/issues/3677#event-3361902898",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec6cfd5c1929_178a3f9b5f2cd960456f8--


From nobody Thu May 21 12:02:07 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 10EFB3A0B9F for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 12:01:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 k0NYNKKr3mHA for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 12:01:57 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 472703A0A6E for <quic-issues@ietf.org>; Thu, 21 May 2020 12:01:44 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id A6A33282CBF for <quic-issues@ietf.org>; Thu, 21 May 2020 12:01:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590087703; bh=MIvO+Jd/RzMn6kFCP+joXhNYX0Wb2+ClIH6atgmNYro=; h=Date:From:To:Subject:From; b=JMWIOyYt5uKVwFg5ffwvel6+1fwYAPIPN4NQM1hoygkHxbHxWfxlkdzsMjLJtYphz DS1vpkVmja1sIMJcM4Sv8X/mrtOVBvfZs6VAM+yNh4uuLE5ds76sU8b0Zdv2CFrNQC bGqEA3BLBS+yJA7gj+wmoD1Ojxiyf/pF9oyOZjHo=
Date: Thu, 21 May 2020 12:01:43 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0b2c6e-eac01c@github.com>
Subject: [quicwg/base-drafts] eac01c: Script updating gh-pages from 57ce7603. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ub8zpuGm2aGZN4QVL_JYPz_s0p0>
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: Thu, 21 May 2020 19:02:05 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: eac01cd5a250554c57fe68ec9a2dc67ec8a9e146
      https://github.com/quicwg/base-drafts/commit/eac01cd5a250554c57fe68ec9a2dc67ec8a9e146
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 57ce7603. [ci skip]



From nobody Thu May 21 19:47:56 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 5AB913A09CA for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:47:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 xu83ICVSk0gx for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:47:53 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F2CB03A085B for <quic-issues@ietf.org>; Thu, 21 May 2020 19:47:52 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 16DBE6A000C for <quic-issues@ietf.org>; Thu, 21 May 2020 19:47:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590115672; bh=Q0uMmDVBYHv5lVUca/QZjShOX5r3SQKi2dHRqbdepDE=; h=Date:From:To:Subject:From; b=goWypGjposHub4Nc5pOKv8f1gLPxQd28I7+pXNK48GoigT8I3L5DRqQqtG5qaOT7Q Yo/DFDxVgR7DmysIDnGGCkd7yzsTnL28FkErrbO6+c3vLJzM0OS02kUQIvfYNQ6tpZ /InvU8PbDHNIsnYX8wi/DfvPMyE6mIms2vszgh18=
Date: Thu, 21 May 2020 19:47:51 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/invariant-independent/000000-ede213@github.com>
Subject: [quicwg/base-drafts] d36507: Make -transport non-normative
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/So_giQqX3UPAO-nCFHG2wDcf7Vk>
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, 22 May 2020 02:47:55 -0000

  Branch: refs/heads/invariant-independent
  Home:   https://github.com/quicwg/base-drafts
  Commit: d365070088274d67bfb434237d12248aa6316dc4
      https://github.com/quicwg/base-drafts/commit/d365070088274d67bfb434237d12248aa6316dc4
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Make -transport non-normative


  Commit: cb9209e6472a73c207790207cfa3202983b3efd9
      https://github.com/quicwg/base-drafts/commit/cb9209e6472a73c207790207cfa3202983b3efd9
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Reword packets stuff


  Commit: f4f9f7adb6460d762a4d9468a307fce4fae478ac
      https://github.com/quicwg/base-drafts/commit/f4f9f7adb6460d762a4d9468a307fce4fae478ac
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Move blank lines


  Commit: e133545372dbea7eb4a52ac6db5b7d5b4d6ca295
      https://github.com/quicwg/base-drafts/commit/e133545372dbea7eb4a52ac6db5b7d5b4d6ca295
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  s/Len/Length/


  Commit: ede2137e80798e97a73347246e5260595f542db0
      https://github.com/quicwg/base-drafts/commit/ede2137e80798e97a73347246e5260595f542db0
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Use an abbreviated notation section


Compare: https://github.com/quicwg/base-drafts/compare/d36507008827%5E...ede2137e8079


From nobody Thu May 21 19:48: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 0FD403A09CA for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:48:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 HRAybmu1lpY2 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:48:53 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0D1B53A085B for <quic-issues@ietf.org>; Thu, 21 May 2020 19:48:52 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 12971E00B0 for <quic-issues@ietf.org>; Thu, 21 May 2020 19:48:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590115732; bh=r4eXUt21tKabbIuasMIMD61lqPq2vzBGtXVlz9RQzMM=; h=Date:From:To:Subject:From; b=Z8dTU5vW6SLHTR9e/UuC5s2yPrH5IqUwHW7LWXaZIFDkV80t50tLHfWkgerbjD3mJ gWGfTHyJIwuBOTIQYrT1JVVLVMqajg2tMpV9TxwgdrB7VQWicJuY6228LJFIg37fVD LoXnafb+zbi43s8fWWsuFLV5hYsDg0j2XDC3CxT8=
Date: Thu, 21 May 2020 19:48:52 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/eac01c-b1eeb9@github.com>
Subject: [quicwg/base-drafts] b1eeb9: Script updating gh-pages from ede2137e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Ldemp4zZ5MDprRfhjyPEwLzfC30>
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, 22 May 2020 02:48:54 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b1eeb9c12ecae79a96a800734839ce50b8a8ba53
      https://github.com/quicwg/base-drafts/commit/b1eeb9c12ecae79a96a800734839ce50b8a8ba53
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M index.html
    A invariant-independent/draft-ietf-quic-http.html
    A invariant-independent/draft-ietf-quic-http.txt
    A invariant-independent/draft-ietf-quic-invariants.html
    A invariant-independent/draft-ietf-quic-invariants.txt
    A invariant-independent/draft-ietf-quic-qpack.html
    A invariant-independent/draft-ietf-quic-qpack.txt
    A invariant-independent/draft-ietf-quic-recovery.html
    A invariant-independent/draft-ietf-quic-recovery.txt
    A invariant-independent/draft-ietf-quic-tls.html
    A invariant-independent/draft-ietf-quic-tls.txt
    A invariant-independent/draft-ietf-quic-transport.html
    A invariant-independent/draft-ietf-quic-transport.txt
    A invariant-independent/index.html

  Log Message:
  -----------
  Script updating gh-pages from ede2137e. [ci skip]



From nobody Thu May 21 19:49:05 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 C59BC3A0DEF for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:49:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 h8jYO6VSPkga for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:49:02 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 562943A0DEE for <quic-issues@ietf.org>; Thu, 21 May 2020 19:49:02 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 66C5E8C0BC5 for <quic-issues@ietf.org>; Thu, 21 May 2020 19:49:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590115741; bh=D8GNr/DCDxvHjLHERgOylbrJR04458zSGhjZ3yvo7tI=; h=Date:From:To:Subject:From; b=HpaOJkU73YZZVqeen529gI3m5Ylq3v5qHUaG6E91Vbu0iGm91Pab4ach6rHgtsfHF Cl2Lz5aUxUYPxufESwtb2uA6Y1scTbN7/lv3U1RO5nse0rna8r9f5M3/oflNsOCrv2 KF2/5xO9FP8ZXib0bQv/v6wY9zAqbC3+cZ6XpBls=
Date: Thu, 21 May 2020 19:49:01 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b1eeb9-dce9e7@github.com>
Subject: [quicwg/base-drafts] dce9e7: Script updating archive at 2020-05-22T02:48:43Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Ue6r6T4TINJQWVIoekLetMkOebY>
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, 22 May 2020 02:49:04 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: dce9e74d0494be208e05ce1b5b5f3405e75264d0
      https://github.com/quicwg/base-drafts/commit/dce9e74d0494be208e05ce1b5b5f3405e75264d0
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-22T02:48:43Z. [ci skip]



From nobody Thu May 21 19:49:58 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 BF40B3A09CA for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:49:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.695
X-Spam-Level: 
X-Spam-Status: No, score=-1.695 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 8Ej5f6SoRNd7 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:49:56 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0A08D3A0E89 for <quic-issues@ietf.org>; Thu, 21 May 2020 19:49:40 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 3905F6E1310 for <quic-issues@ietf.org>; Thu, 21 May 2020 19:49:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590115779; bh=XHIGAsNUm9WDEnjvmvFpX5UE0PgJa1ena7uwPDnF/U4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=FYe/srXl9NejuEE6dDBG0oLq73OEOp0SshPMk8W4QP6pHwHJw0qg+GsvENWlBeKe0 mx/j3/JtNHnXNZhf21NWgQxtgjGi265+iONNVoiEowBJ4IGqa54Gawzt4j68qz3HSe qqGDun22z6j0j7gh2M8V4Qr8GjJdjioDRMYLRdBo=
Date: Thu, 21 May 2020 19:49:39 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK37KVNN3KGQC7ZPWFN42MPMHEVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684@github.com>
Subject: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec73dc3298bf_41fa3ffd9eecd96c34893d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BBECfgF-afGT2BfdeKCt8Y0TYww>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 02:49:58 -0000

----==_mimepart_5ec73dc3298bf_41fa3ffd9eecd96c34893d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Remove the normative reference to -transport in -invariants.

This is an editorial change, but I&#39;ll pass it to the list.

Includes some consistency updates.

Closes #3673.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3684

-- Commit Summary --

  * Make -transport non-normative
  * Reword packets stuff
  * Move blank lines
  * s/Len/Length/
  * Use an abbreviated notation section

-- File Changes --

    M draft-ietf-quic-invariants.md (67)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3684.patch
https://github.com/quicwg/base-drafts/pull/3684.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684

----==_mimepart_5ec73dc3298bf_41fa3ffd9eecd96c34893d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Remove the normative reference to -transport in -invariants.</p>
<p>This is an editorial change, but I'll pass it to the list.</p>
<p>Includes some consistency updates.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3673.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621401220" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3673" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3673/hovercard" href="https://github.com/quicwg/base-drafts/issues/3673">#3673</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3684'>https://github.com/quicwg/base-drafts/pull/3684</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Make -transport non-normative</li>
  <li>Reword packets stuff</li>
  <li>Move blank lines</li>
  <li>s/Len/Length/</li>
  <li>Use an abbreviated notation section</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3684/files#diff-56e4bfb748c2d740a862d41ab8d0dcd6">draft-ietf-quic-invariants.md</a>
    (67)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3684.patch'>https://github.com/quicwg/base-drafts/pull/3684.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3684.diff'>https://github.com/quicwg/base-drafts/pull/3684.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZGKOVPS35ETPV4NMTRSXR4HANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3IQLGRWART3WJ43ETRSXR4HA5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJA4GBQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684",
"url": "https://github.com/quicwg/base-drafts/pull/3684",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec73dc3298bf_41fa3ffd9eecd96c34893d--


From nobody Thu May 21 19:51:20 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 E41873A09FA for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:51:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 d-jnbSWKTmGQ for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:51:17 -0700 (PDT)
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 CB7DE3A0867 for <quic-issues@ietf.org>; Thu, 21 May 2020 19:51:17 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 258F3282C20 for <quic-issues@ietf.org>; Thu, 21 May 2020 19:51:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590115877; bh=9rFJmmZAKQy9mv/aIZ1Qm4dpxQw5ipH7hPdgWkJLp9c=; h=Date:From:To:Subject:From; b=lm182bZ0S6j8nFt7MOUSdZxlPbITJK6AU7FKxryp8mgyTvu+at0izz5ssQu/a6R40 NsysLQJI+yGWu5OIDiO3yGDNyUJ3Lqh6CamrFlOqYAnqZ1jILrwF9tzIXTaemaFzMf 3kbxNOPYttGNYoMRM66tU1fcgVaFCVGLIKo42aHo=
Date: Thu, 21 May 2020 19:51:17 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/varint-fmt-example/000000-181dd7@github.com>
Subject: [quicwg/base-drafts] 181dd7: Add an example of a variable-length integer field
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZyrGLe_WRIJeyhczWYOyIaqFiSo>
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, 22 May 2020 02:51:19 -0000

  Branch: refs/heads/varint-fmt-example
  Home:   https://github.com/quicwg/base-drafts
  Commit: 181dd7efcd44cd0c85ec02f4b8ab39c647d4b46c
      https://github.com/quicwg/base-drafts/commit/181dd7efcd44cd0c85ec02f4b8ab39c647d4b46c
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add an example of a variable-length integer field

The notations didn't have one of these previously, but were otherwise
thorough.  Might as well do that.



From nobody Thu May 21 19:51:51 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 73C493A086A for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:51:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 tkIeNxTcf_Fp for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:51:48 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 253933A0867 for <quic-issues@ietf.org>; Thu, 21 May 2020 19:51:48 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 3C277660A00 for <quic-issues@ietf.org>; Thu, 21 May 2020 19:51:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590115907; bh=3GIVVYW5N3LxYna0+Ifw4CeOSkkzJKVExS0oD00bfhc=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=YLGre8ZtF3u2DU0j9QstEED3CShht5Ec/PMBA52kWnUBUBuMY//P3mnbsyOaf36CH baCQDiXdqVVEbHzk7/fOGzX+nuI6mpCEoKBaWvRuEmCFcW9fLMBPgrDu+tKTUa3Mp+ NsAncgLpIzbG/0qyRkQI/s8K3LYnxvzFpXva4AFQ=
Date: Thu, 21 May 2020 19:51:47 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3GGRZWMWOVPQLXXVN42MPUHEVBNHHCKIHD7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3685@github.com>
Subject: [quicwg/base-drafts] Add an example of a variable-length integer field (#3685)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec73e432be8c_7deb3fcd3aacd9643720a0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-MVP-SXM4Ubk_f74fPOZHJ8CNjE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 02:51:50 -0000

----==_mimepart_5ec73e432be8c_7deb3fcd3aacd9643720a0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The notations didn&#39;t have one of these previously, but were otherwise
thorough.  Might as well do that.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3685

-- Commit Summary --

  * Add an example of a variable-length integer field

-- File Changes --

    M draft-ietf-quic-transport.md (1)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3685.patch
https://github.com/quicwg/base-drafts/pull/3685.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3685

----==_mimepart_5ec73e432be8c_7deb3fcd3aacd9643720a0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The notations didn't have one of these previously, but were otherwise<br>
thorough.  Might as well do that.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3685'>https://github.com/quicwg/base-drafts/pull/3685</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Add an example of a variable-length integer field</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3685/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (1)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3685.patch'>https://github.com/quicwg/base-drafts/pull/3685.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3685.diff'>https://github.com/quicwg/base-drafts/pull/3685.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3685">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2Y44W47M73ETJEXTLRSXSEHANCNFSM4NHNQQ7Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6EY5SKNPQ2PRWLPNTRSXSEHA5CNFSM4NHNQQ72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJA4P5A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3685",
"url": "https://github.com/quicwg/base-drafts/pull/3685",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec73e432be8c_7deb3fcd3aacd9643720a0--


From nobody Thu May 21 19:52:14 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 DB37A3A0DF3 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:52:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 0o17vrXGantj for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 19:52:11 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 699263A086A for <quic-issues@ietf.org>; Thu, 21 May 2020 19:52:11 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 743EA5201B1 for <quic-issues@ietf.org>; Thu, 21 May 2020 19:52:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590115930; bh=LS8P8n9Rgvl6T7BCaP3Gy8TGUEki6AFid3KgQ84Ckas=; h=Date:From:To:Subject:From; b=CTu3jUPyshEVIdU+Nqb8n9WkpNzNBlQSCtjeHqg1E6pQL7NoBQObuAhFZ3e6gl10m qZ1gb9OpLZe0Xzhi9P1UdEVGqw0I9BrVZ5l83E1JmOPVVOZ0DiTyzx/mM8ptX6gq4h yedfz+2uimwgN86txhigCgdjLsFgFRfFADXv6W90=
Date: Thu, 21 May 2020 19:52:10 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/dce9e7-3eeac6@github.com>
Subject: [quicwg/base-drafts] 3eeac6: Script updating gh-pages from 181dd7ef. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TMoCcuaPAoShZeQCtDr1FHjgpXw>
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, 22 May 2020 02:52:13 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3eeac645c1ea9ef78c22a3a6c87e8058df373402
      https://github.com/quicwg/base-drafts/commit/3eeac645c1ea9ef78c22a3a6c87e8058df373402
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M index.html
    A varint-fmt-example/draft-ietf-quic-http.html
    A varint-fmt-example/draft-ietf-quic-http.txt
    A varint-fmt-example/draft-ietf-quic-invariants.html
    A varint-fmt-example/draft-ietf-quic-invariants.txt
    A varint-fmt-example/draft-ietf-quic-qpack.html
    A varint-fmt-example/draft-ietf-quic-qpack.txt
    A varint-fmt-example/draft-ietf-quic-recovery.html
    A varint-fmt-example/draft-ietf-quic-recovery.txt
    A varint-fmt-example/draft-ietf-quic-tls.html
    A varint-fmt-example/draft-ietf-quic-tls.txt
    A varint-fmt-example/draft-ietf-quic-transport.html
    A varint-fmt-example/draft-ietf-quic-transport.txt
    A varint-fmt-example/index.html

  Log Message:
  -----------
  Script updating gh-pages from 181dd7ef. [ci skip]



From nobody Thu May 21 21:17:21 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 588923A0A84 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:17:19 -0700 (PDT)
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 mmrMeeLCH-wI for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:17:17 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 981A83A0A65 for <quic-issues@ietf.org>; Thu, 21 May 2020 21:17:17 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id 3C088C603C7 for <quic-issues@ietf.org>; Thu, 21 May 2020 21:17:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590121036; bh=o2ZL9XivAGItsn19Srhc5Bf/m8D2V0lv+2Ym+A1bW5A=; h=Date:From:To:Subject:From; b=zQeCq4yM2WkhjZOeib0x1b6wzeJt3ZSF7CnlWIcZ3DLROknOv5X+YV8Xirp6vQmHo 830kz/3OvnwmdQiaBVkiH1RDAiOl24P3T/dk3txs8eYueBAnBUZWMmYqG3Bf6D/Rx4 Eh8Giqam6xS3aINjNw7s73CWBQLblw1ttjtztTJM=
Date: Thu, 21 May 2020 21:17:16 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgeries-and-updates/000000-996c6a@github.com>
Subject: [quicwg/base-drafts] ce9fde: Limits are per key
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vl7HTq6-5Nw6ZLB0byPh6n-HLeo>
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, 22 May 2020 04:17:20 -0000

  Branch: refs/heads/forgeries-and-updates
  Home:   https://github.com/quicwg/base-drafts
  Commit: ce9fde0b69b18db153239177fe1fe5e4655b295d
      https://github.com/quicwg/base-drafts/commit/ce9fde0b69b18db153239177fe1fe5e4655b295d
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-15 (Fri, 15 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Limits are per key


  Commit: 996c6a5429d3e7be272bda66422630a73c8ec3af
      https://github.com/quicwg/base-drafts/commit/996c6a5429d3e7be272bda66422630a73c8ec3af
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Forgeries likely exhaust TWO keys

Closes #3662.


Compare: https://github.com/quicwg/base-drafts/compare/ce9fde0b69b1%5E...996c6a5429d3


From nobody Thu May 21 21:18:37 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 4B0293A0E78 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:18:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 njHVdr14duMc for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:18:32 -0700 (PDT)
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 83B3D3A0A84 for <quic-issues@ietf.org>; Thu, 21 May 2020 21:18:31 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id EAAC628221D for <quic-issues@ietf.org>; Thu, 21 May 2020 21:18:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590121109; bh=5fKumom9JIMndZsEOdv7HZcYmj25FuETYssiX8FKlfA=; h=Date:From:To:Subject:From; b=PSWOGgqyC8Kk0T7nc09O9l3NR8o0HF8XA1FYm0iRjdBFB40NvC5ep/E3zG4Psy33Q ByjQq/4i1HAjNx890oOF7GxG+f+IQMUKkD7zi2a6EmCS51SXVjM8TFMcag294sCFOf HVpyf9y5aE4dtl5iHbjft0yK8LVa5qROljnPJ2v4=
Date: Thu, 21 May 2020 21:18:29 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3eeac6-198660@github.com>
Subject: [quicwg/base-drafts] 198660: Script updating gh-pages from 996c6a54. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4faM1_UXImezO2wrLlBXVfPzubQ>
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, 22 May 2020 04:18:35 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 198660ab8f9498c547080de2b4338e60cbae7d51
      https://github.com/quicwg/base-drafts/commit/198660ab8f9498c547080de2b4338e60cbae7d51
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    A forgeries-and-updates/draft-ietf-quic-http.html
    A forgeries-and-updates/draft-ietf-quic-http.txt
    A forgeries-and-updates/draft-ietf-quic-invariants.html
    A forgeries-and-updates/draft-ietf-quic-invariants.txt
    A forgeries-and-updates/draft-ietf-quic-qpack.html
    A forgeries-and-updates/draft-ietf-quic-qpack.txt
    A forgeries-and-updates/draft-ietf-quic-recovery.html
    A forgeries-and-updates/draft-ietf-quic-recovery.txt
    A forgeries-and-updates/draft-ietf-quic-tls.html
    A forgeries-and-updates/draft-ietf-quic-tls.txt
    A forgeries-and-updates/draft-ietf-quic-transport.html
    A forgeries-and-updates/draft-ietf-quic-transport.txt
    A forgeries-and-updates/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 996c6a54. [ci skip]



From nobody Thu May 21 21:22:50 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 692C33A0E79 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:22:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 6U23fO9Pigxg for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:22:47 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2B08E3A0E78 for <quic-issues@ietf.org>; Thu, 21 May 2020 21:22:47 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 508EF6A08A6 for <quic-issues@ietf.org>; Thu, 21 May 2020 21:22:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590121366; bh=vL8kbJBBPpbYrNYSCR2ocfs6vpXt19FvaFRQ5eWj0qQ=; h=Date:From:To:Subject:From; b=Ub7mPAq/xHExq2MqhWs54VWc+bMKQzJ61xrKNIqFDlmSKohI2wy7cTeBO4PKAaubT h2roiIgTFWI1Diyr+I2lDvTDX9O5A3A5dcZuRDMqEWWuZSMmRhshKSQlJGX70WKweM RUQVXRE5XcRjpqwkCL6vkxbQqAflYXknAqqLtcM0=
Date: Thu, 21 May 2020 21:22:46 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgery-limit/7958c9-05b02d@github.com>
Subject: [quicwg/base-drafts] ce9fde: Limits are per key
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LurLqOcYEDKxBC55tFSwj6aa_U0>
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, 22 May 2020 04:22:48 -0000

  Branch: refs/heads/forgery-limit
  Home:   https://github.com/quicwg/base-drafts
  Commit: ce9fde0b69b18db153239177fe1fe5e4655b295d
      https://github.com/quicwg/base-drafts/commit/ce9fde0b69b18db153239177fe1fe5e4655b295d
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-15 (Fri, 15 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Limits are per key


  Commit: 05b02df1e77c959c0dba467baed39e525f2a4ee8
      https://github.com/quicwg/base-drafts/commit/05b02df1e77c959c0dba467baed39e525f2a4ee8
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Stop using the keys, not close

Only require closing the connection if you can't update.

If you hit this limit, you can send a key update.  You won't be able to
read any packets until your peer reads that key update though.  This
manifests as a bunch of packet loss, because you threw out keys.  So you
do end up sending a bunch of packets into the dark in the hopes that one
will get through.

Of course, you can't always update, so you have to close then.


Compare: https://github.com/quicwg/base-drafts/compare/7958c9f2ae14...05b02df1e77c


From nobody Thu May 21 21:22:59 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 5A4D23A0E79 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:22:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 H26Ifs4O1zWm for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:22:56 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 07D7A3A0E78 for <quic-issues@ietf.org>; Thu, 21 May 2020 21:22:55 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 2EF1F6E1224 for <quic-issues@ietf.org>; Thu, 21 May 2020 21:22:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590121375; bh=1hwRG+BRtEbe+0h3ZQYYX4VIoYGJOO/J1BtyR/UlkF8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=URl1AcbjDizkea8o34VBQadBcf5e+zJ4xi2yULJsaC4h2qD2QM6x6IL10h2d04ahv 37A50TyxNCuF0qd0bwp/+g/qKZK4kgk+ORHNK/Xxs4dMNgsWEbp5K5bwIcF/n6YZXr qwp6FF+VhcqplKR6w72NcJB8xfT4oPlgJWJNBAMk=
Date: Thu, 21 May 2020 21:22:55 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/push/5111851596@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec7539f1f50e_34a93fd6f28cd96819389f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/f-peYtHIz-v08IqvmGRswM5lem0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 04:22:57 -0000

----==_mimepart_5ec7539f1f50e_34a93fd6f28cd96819389f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 2 commits.

ce9fde0b69b18db153239177fe1fe5e4655b295d  Limits are per key
05b02df1e77c959c0dba467baed39e525f2a4ee8  Stop using the keys, not close


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620/files/7958c9f2ae14aaf59ce3cc39817173cc65422dc5..05b02df1e77c959c0dba467baed39e525f2a4ee8

----==_mimepart_5ec7539f1f50e_34a93fd6f28cd96819389f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/ce9fde0b69b18db153239177fe1fe5e4655b295d">ce9fde0</a>  Limits are per key</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/05b02df1e77c959c0dba467baed39e525f2a4ee8">05b02df</a>  Stop using the keys, not close</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3620/files/7958c9f2ae14aaf59ce3cc39817173cc65422dc5..05b02df1e77c959c0dba467baed39e525f2a4ee8">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZJ5X45G4MXJSPKY2DRSX4Z7ANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK25DN5IMOHXSSHKUITRSX4Z7A5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTCOJZG4YDIM2QOVZWQIZVGEYTCOBVGE2TSNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620/files/7958c9f2ae14aaf59ce3cc39817173cc65422dc5..05b02df1e77c959c0dba467baed39e525f2a4ee8",
"url": "https://github.com/quicwg/base-drafts/pull/3620/files/7958c9f2ae14aaf59ce3cc39817173cc65422dc5..05b02df1e77c959c0dba467baed39e525f2a4ee8",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec7539f1f50e_34a93fd6f28cd96819389f--


From nobody Thu May 21 21:23:56 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 4C9C53A0E82 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:23:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 3kAPcobGVNdd for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:23:53 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 343C43A0E80 for <quic-issues@ietf.org>; Thu, 21 May 2020 21:23:53 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id 680A3E0535 for <quic-issues@ietf.org>; Thu, 21 May 2020 21:23:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590121432; bh=jcJPb+ywyAXkA4XMVfW0Qly3ofsgWjmxBQlM/RK01i0=; h=Date:From:To:Subject:From; b=tXmYOVzKBigZR+IbBTAFTLXm0KMSN+pzdJPD0LayWSGpMGHFkH89/TxIzK18iVl/i MVS4CrKKGiOr1xoWPgFPcdnzRz5ZPR6qWNigxdP7JiJRm6VECCtrkvJGQFy6J5zYjt dMkU3Q2wPTEUNUgtmuGIhTN9dJ3WXoUzEmTbxdh4=
Date: Thu, 21 May 2020 21:23:52 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/198660-27aecc@github.com>
Subject: [quicwg/base-drafts] 27aecc: Script updating gh-pages from 05b02df1. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_kct5Z6c0BPNQLn-3NJuzJgCQaM>
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, 22 May 2020 04:23:54 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 27aecc412326da942f8d7a739f5650da709ff9a1
      https://github.com/quicwg/base-drafts/commit/27aecc412326da942f8d7a739f5650da709ff9a1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-http.html
    M forgery-limit/draft-ietf-quic-http.txt
    M forgery-limit/draft-ietf-quic-invariants.html
    M forgery-limit/draft-ietf-quic-invariants.txt
    M forgery-limit/draft-ietf-quic-qpack.html
    M forgery-limit/draft-ietf-quic-qpack.txt
    M forgery-limit/draft-ietf-quic-recovery.html
    M forgery-limit/draft-ietf-quic-recovery.txt
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 05b02df1. [ci skip]



From nobody Thu May 21 21:24:32 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 DB5A13A0E83 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:24:30 -0700 (PDT)
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 66N4IUZnRxVX for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:24:29 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3C5FB3A0E82 for <quic-issues@ietf.org>; Thu, 21 May 2020 21:24:29 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id CE1CD6E043D for <quic-issues@ietf.org>; Thu, 21 May 2020 21:24:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590121467; bh=dr5smtSFYWh4OrE3NX8z9177Nq+Xw3R2YffZnmwZMA0=; h=Date:From:To:Subject:From; b=B3dw1/cDQjdHvA4wS8La3nwGObc5dEjDK80gIWFMIRAOA6hHt44sJfM1ecqPRe1Gp OV5SjNmYmil0yRLcIYgGu7eWnKvdfFsrRlEqME7Es2GwNHVnN9ci3Qz1ehS4H/CDxH t6k64s8GgEsyHtWgEEXtOiLZ6QTyTM83YZ45i4hk=
Date: Thu, 21 May 2020 21:24:27 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgeries-and-updates/996c6a-bfc409@github.com>
Subject: [quicwg/base-drafts] bfc409: Forgeries likely exhaust TWO keys
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/A9pzAvKaGP1hQWm5Cdi3_PUU7xc>
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, 22 May 2020 04:24:31 -0000

  Branch: refs/heads/forgeries-and-updates
  Home:   https://github.com/quicwg/base-drafts
  Commit: bfc409bb529d6a248f4ed20cac3c3d1d204a75ae
      https://github.com/quicwg/base-drafts/commit/bfc409bb529d6a248f4ed20cac3c3d1d204a75ae
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Forgeries likely exhaust TWO keys

Closes #3662.



From nobody Thu May 21 21:25:24 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 18D393A0E84 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:25:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 6Rtd0YM0Ppen for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:25:21 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CA9593A0E86 for <quic-issues@ietf.org>; Thu, 21 May 2020 21:25:21 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 1D7381C0614 for <quic-issues@ietf.org>; Thu, 21 May 2020 21:25:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590121521; bh=6ogVNpPLcSJj8D5B2Igg6njRtPPIXos+20ob4XAWV+M=; h=Date:From:To:Subject:From; b=eyw5dzXtQS0J2FJo+Ab1BETh0a5QnwnbRqxdHHjlGEP5cr2StxAe7/eMihWOsmC0Z L7s6Pw2LZ4kFIiv7arbUW47byf3a+gBkN3b1Yd0moeq72gdfYPWi5OqQTEdQkd93Yk IVOFMwIynpQYD8Cr9ek5gCNccO1yuelHwzEqAr1Q=
Date: Thu, 21 May 2020 21:25:21 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/27aecc-ca0e21@github.com>
Subject: [quicwg/base-drafts] ca0e21: Script updating gh-pages from bfc409bb. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TqXcT4pTezfXyl5owwUm9J3IQTI>
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, 22 May 2020 04:25:23 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ca0e21d87a137c351c479afd01ebfde9060fd488
      https://github.com/quicwg/base-drafts/commit/ca0e21d87a137c351c479afd01ebfde9060fd488
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M forgeries-and-updates/draft-ietf-quic-tls.html
    M forgeries-and-updates/draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from bfc409bb. [ci skip]



From nobody Thu May 21 21:25:30 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 2FF303A0E85 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:25:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.696
X-Spam-Level: 
X-Spam-Status: No, score=-1.696 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 n5fGrRD5Y5Ri for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 21:25:27 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B16CF3A0E84 for <quic-issues@ietf.org>; Thu, 21 May 2020 21:25:27 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 9B9465203AA for <quic-issues@ietf.org>; Thu, 21 May 2020 21:25:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590121526; bh=VFDfu1HfmBe71VRqzmjXwHkZF07foMD5g7clvZiUaGI=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=JEC1PD734uqpXQBbLYlkkFvFR+mVy3hpaqPZD4c9vokuqLkG4TfSpcDdzOS/O15p9 pRf6iGpxz2b2yBgxlXw7pehQGpdiaYOVOerFwDO1TeQiLRWkOnzHhzBYjlYsydebz6 T/UoiMFsCNarUHHYKIo4xas0P4QiJeWHL2aRK4f8=
Date: Thu, 21 May 2020 21:25:26 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2UZW5FRKGQWCFWFD542M2TNEVBNHHCKIKQA4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3686@github.com>
Subject: [quicwg/base-drafts] Forgeries likely exhaust TWO keys (#3686)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec754368c220_10413fd9040cd95c2351f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SMwAXbt64lHqA89OAFdMciVvsT4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 04:25:29 -0000

----==_mimepart_5ec754368c220_10413fd9040cd95c2351f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This is an update to #3620, so check where it is being merged to carefully.

Closes #3662.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3686

-- Commit Summary --

  * Forgeries likely exhaust TWO keys

-- File Changes --

    M draft-ietf-quic-tls.md (10)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3686.patch
https://github.com/quicwg/base-drafts/pull/3686.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3686

----==_mimepart_5ec754368c220_10413fd9040cd95c2351f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This is an update to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="610583029" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3620" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3620/hovercard" href="https://github.com/quicwg/base-drafts/pull/3620">#3620</a>, so check where it is being merged to carefully.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3662.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="619859550" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3662" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3662/hovercard" href="https://github.com/quicwg/base-drafts/issues/3662">#3662</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3686'>https://github.com/quicwg/base-drafts/pull/3686</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Forgeries likely exhaust TWO keys</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3686/files#diff-afdf56cd6ee6d10d94d669541f99bc07">draft-ietf-quic-tls.md</a>
    (10)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3686.patch'>https://github.com/quicwg/base-drafts/pull/3686.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3686.diff'>https://github.com/quicwg/base-drafts/pull/3686.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3686">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4KDENYVUTESECFSBDRSX5DNANCNFSM4NHO3H3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2SJ7DZ5T2EDCCN4LTRSX5DNA5CNFSM4NHO3H3KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJBKADQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3686",
"url": "https://github.com/quicwg/base-drafts/pull/3686",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec754368c220_10413fd9040cd95c2351f--


From nobody Thu May 21 22:03:45 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 4F9793A0E9D for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 22:03:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 NMit2271ID6x for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 22:03:40 -0700 (PDT)
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 C9D083A0C8E for <quic-issues@ietf.org>; Thu, 21 May 2020 22:03:39 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id E555C282D0E for <quic-issues@ietf.org>; Thu, 21 May 2020 22:03:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590123818; bh=//BlULtM+QpoWIiWo0nSl/genvCU4oMXCHQ22MWhplk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yKUPVQyS3AWvb+eQdYHwerE5H8qME2AGzYKzSCjEE3+HlK8f+N+dS/aEb9uiFAPIL xbT2WzdR6ronTHGvEBxN+KAm86k9OT4y7n+4Ci077XDG/B09nyBHWklrNI3GTHsV6T UXBuQVQbpyVOOQ1SGXjHJZp/YmKk6/DssofjdCog=
Date: Thu, 21 May 2020 22:03:38 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK234HVQ2TEFBVCKFGN42M7CVEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/c632482488@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec75d2ad6be3_4b163fdbdcecd96424969e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hygFcPF9u-U-z7lmcqkYqViA9JQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 05:03:43 -0000

----==_mimepart_5ec75d2ad6be3_4b163fdbdcecd96424969e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In the interest of transparency, I have added one more commit here.

When I did the same for DTLS, ekr observed that if you have updated, you might safely stop trying to accept packets with the old keys rather than killing the connection.  That results in loss for any packets that genuinely did want to use the exhausted keys, but that is probably less disruptive than having the connection drop.  Of course, you can't always update, so closure is still likely necessary in some cases.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#issuecomment-632482488
----==_mimepart_5ec75d2ad6be3_4b163fdbdcecd96424969e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>In the interest of transparency, I have added one more commit here.</p>
<p>When I did the same for DTLS, ekr observed that if you have updated, you might safely stop trying to accept packets with the old keys rather than killing the connection.  That results in loss for any packets that genuinely did want to use the exhausted keys, but that is probably less disruptive than having the connection drop.  Of course, you can't always update, so closure is still likely necessary in some cases.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3620#issuecomment-632482488">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ZBTOIQ224XCGGYSLRSYBSVANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4BGNQQFYITYG747JTRSYBSVA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWZOVOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620#issuecomment-632482488",
"url": "https://github.com/quicwg/base-drafts/pull/3620#issuecomment-632482488",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec75d2ad6be3_4b163fdbdcecd96424969e--


From nobody Thu May 21 22:04:39 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 14C623A0EA4 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 22:04:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 a3TU2T8276ce for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 22:04:33 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 290863A0E9D for <quic-issues@ietf.org>; Thu, 21 May 2020 22:04:33 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id DB0866E0E02 for <quic-issues@ietf.org>; Thu, 21 May 2020 22:04:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590123871; bh=MIfzzFWdtZIOdBn9deS19X+eGPZ/SIBBbOQ6XDeYYGM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Y3N+ufCVPDgfE73j9P+rOUhf1uIbc7Q/cyxmR9WGDycPMhRT6Thn9B0a6Yed6xW1C BrJSuPvzO6Pab+eJAFUZCilF+omaOLjeYq8hqMFAynSSdbxEVd01XM6SOPPP7wyX0k 4he1kNOogW/kAdqFaoBAOK8WQ7K5oN2MOYjvFSxY=
Date: Thu, 21 May 2020 22:04:31 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3PD2BUKZVO5UMZCCV42M7F7EVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/416649354@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec75d5fcb7d7_6653ff3d60cd96037048d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/27fPAw28sUUrzITdgxZvoz8K9sA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 05:04:37 -0000

----==_mimepart_5ec75d5fcb7d7_6653ff3d60cd96037048d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -1550,12 +1550,13 @@ number of attempts to forge packets. TLS achieves this by closing connections
 after any record fails an authentication check. In comparison, QUIC ignores any
 packet that cannot be authenticated, allowing multiple forgery attempts.
 
-Endpoints MUST count the number of received packets that fail authentication.
-If the number of packets that fail authentication with the same key exceeds a
-limit that is specific to the AEAD in use, the endpoint MUST immediately close
-the connection.  Endpoints MUST initiate a key update before reaching this
-limit.  Applying a limit reduces the probability that an attacker is able to
-successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.
+Endpoints MUST count the number of received packets that fail authentication for
+each set of keys.  If the number of packets that fail authentication with the
+same key exceeds a limit that is specific to the AEAD in use, the endpoint MUST
+stop using those keys.  Endpoints MUST initiate a key update before reaching
+this limit.  If a key update is not possible, the endpoints MUST immediately

```suggestion
this limit.  If a key update is not possible, the endpoint MUST immediately
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-416649354
----==_mimepart_5ec75d5fcb7d7_6653ff3d60cd96037048d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3620#discussi=
on_r429043789">draft-ietf-quic-tls.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1550,12 +1550,13 @@ number of attempts=
 to forge packets. TLS achieves this by closing connections=0D
 after any record fails an authentication check. In comparison, QUIC igno=
res any=0D
 packet that cannot be authenticated, allowing multiple forgery attempts.=
=0D
 =0D
-Endpoints MUST count the number of received packets that fail authentica=
tion.=0D
-If the number of packets that fail authentication with the same key exce=
eds a=0D
-limit that is specific to the AEAD in use, the endpoint MUST immediately=
 close=0D
-the connection.  Endpoints MUST initiate a key update before reaching th=
is=0D
-limit.  Applying a limit reduces the probability that an attacker is abl=
e to=0D
-successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.=0D
+Endpoints MUST count the number of received packets that fail authentica=
tion for=0D
+each set of keys.  If the number of packets that fail authentication wit=
h the=0D
+same key exceeds a limit that is specific to the AEAD in use, the endpoi=
nt MUST=0D
+stop using those keys.  Endpoints MUST initiate a key update before reac=
hing=0D
+this limit.  If a key update is not possible, the endpoints MUST immedia=
tely=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-this limit.  If a key update is not possible,=
 the endpoints MUST immediately=0D
+this limit.  If a key update is not possible, the endpoint MUST immediat=
ely=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3620#pullrequestreview-416649354">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K72MSLWDARNXFXRPRDRSYBV7ANCNFSM4MW4IM3A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK54XU35SMDUFPFFTTLRSYBV7A5CNFSM4=
MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODDKZBCQ.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestrev=
iew-416649354",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview=
-416649354",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec75d5fcb7d7_6653ff3d60cd96037048d--


From nobody Thu May 21 22:05:02 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 34F0A3A0EA4 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 22:05:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 RQK4bCcfWjjz for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 22:04:58 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 488133A0E9D for <quic-issues@ietf.org>; Thu, 21 May 2020 22:04:58 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id A133952113A for <quic-issues@ietf.org>; Thu, 21 May 2020 22:04:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590123897; bh=qcXnDdrhg2EKAc/w41QHmZw4uVBZzRqxGFV7O2bEIRQ=; h=Date:From:To:Subject:From; b=X1cqEJ6/xaefcM9WXjKZgByf6amdZDi/bPW/6uulz6kt0ayk7D6iwuk0NEFVhbh8R 4mLThZEGrczv5PqomI07W/BA67fwhSd8DKMf+tK1Ds/Ccf3l6U9FcYxoJLwJiaRiIe bEibBCcEyX9VvHKqBQffYkofGcVW+cXR9UzZyEOA=
Date: Thu, 21 May 2020 22:04:57 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgery-limit/05b02d-874036@github.com>
Subject: [quicwg/base-drafts] 874036: plural
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/l5HIFu0hp5xwIMHrPuyzFm7GxB4>
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, 22 May 2020 05:05:00 -0000

  Branch: refs/heads/forgery-limit
  Home:   https://github.com/quicwg/base-drafts
  Commit: 874036ba9762c1cddaaf54e2dcd43d4d80297161
      https://github.com/quicwg/base-drafts/commit/874036ba9762c1cddaaf54e2dcd43d4d80297161
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  plural



From nobody Thu May 21 22:05:12 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 CBD8B3A0EA3 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 22:05:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 CUaTy7F99EkY for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 22:05:08 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D0DC53A0EA4 for <quic-issues@ietf.org>; Thu, 21 May 2020 22:05:07 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id C49C5C603C5 for <quic-issues@ietf.org>; Thu, 21 May 2020 22:05:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590123906; bh=KgcGbzlNzBVHNQdeujmwbcZ4Qq6X48/ytnPpkrg33yg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dYaoyUDr8EG906DfboOPSXkr/mtMMlIevkaj6zV0k2YvH0qHtV/rFqv+lJsRi3M96 6UF2EhyNUR5JNkXprTevnvErqcabsTxg/54K2JmQMaYA4T615a2g5QhUAwi3z4gdY2 nvvB8oPm0hNj1OZA3egkn1xAEOVZGgg9LVOM3xb4=
Date: Thu, 21 May 2020 22:05:06 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/push/5111960495@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec75d82b4e80_43e83fd5c16cd96052991d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HijDxRDGfBZEdUEkHWgWezkf9Fs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 05:05:11 -0000

----==_mimepart_5ec75d82b4e80_43e83fd5c16cd96052991d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

874036ba9762c1cddaaf54e2dcd43d4d80297161  plural


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620/files/05b02df1e77c959c0dba467baed39e525f2a4ee8..874036ba9762c1cddaaf54e2dcd43d4d80297161

----==_mimepart_5ec75d82b4e80_43e83fd5c16cd96052991d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/874036ba9762c1cddaaf54e2dcd43d4d80297161">874036b</a>  plural</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3620/files/05b02df1e77c959c0dba467baed39e525f2a4ee8..874036ba9762c1cddaaf54e2dcd43d4d80297161">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2J65646INOLGJOZQTRSYBYFANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5LFERTZX4O2TBB66LRSYBYFA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTCOJZG4YDIM2QOVZWQIZVGEYTCOJWGA2DSNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620/files/05b02df1e77c959c0dba467baed39e525f2a4ee8..874036ba9762c1cddaaf54e2dcd43d4d80297161",
"url": "https://github.com/quicwg/base-drafts/pull/3620/files/05b02df1e77c959c0dba467baed39e525f2a4ee8..874036ba9762c1cddaaf54e2dcd43d4d80297161",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec75d82b4e80_43e83fd5c16cd96052991d--


From nobody Thu May 21 22:06:34 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 15EA43A0EA7 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 22:06:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 uRE7lV35blC1 for <quic-issues@ietfa.amsl.com>; Thu, 21 May 2020 22:06:31 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CCDF23A0EA6 for <quic-issues@ietf.org>; Thu, 21 May 2020 22:06:30 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 76F478C004E for <quic-issues@ietf.org>; Thu, 21 May 2020 22:06:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590123989; bh=6iLB2uOGgddri8AzPbCUWq09FEdKBclEFe5L/3zGipw=; h=Date:From:To:Subject:From; b=P0SbdSd3UqrB8XyOBrTcg+TE5an3aeGuhkdIkCfWJp46NHjzYAIGTtcoYcYfF1Uh1 68DzZXlsZptnPlvgZiUb8Mi5y+tQRYhW5e+2FOIYNO961+vS4+SFa22slee6JzDaoh EXm7qq6fb+7O/e0edP3+z4CnxUAs6Ovf1KRNfXHE=
Date: Thu, 21 May 2020 22:06:29 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ca0e21-8875e7@github.com>
Subject: [quicwg/base-drafts] 8875e7: Script updating gh-pages from 874036ba. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FbN7y9uhbmZjaHHXWSJogBN9dVQ>
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, 22 May 2020 05:06:32 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8875e7265b394feacbe9702249169ebd6fe5aafe
      https://github.com/quicwg/base-drafts/commit/8875e7265b394feacbe9702249169ebd6fe5aafe
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 874036ba. [ci skip]



From nobody Fri May 22 00:24:53 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 977D03A0F30 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 00:24:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 G6ug8AeyVh4T for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 00:24:49 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D061C3A0F2F for <quic-issues@ietf.org>; Fri, 22 May 2020 00:24:49 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 691D1C60C13 for <quic-issues@ietf.org>; Fri, 22 May 2020 00:24:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590132288; bh=cnHhDBDPTW/2/4mK9PXPJz2cSkMEHJ/raSmW8jKvDYU=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=PVG64UR2DQLEoHUID/dq67zja9YKGtZhUWv/t7k8yXLfcEbjRHKqm8Ka227D99fRT qGerLCpNYoAo6YwEWVIAyIeZ1YQTnRfSKbv1WB8O3J8tr3EWR+/1OUiMhxi1iIT0gk SZDlopH/DfVMZWlmcUJseOGnoO0Bdjczh93JBKwU=
Date: Fri, 22 May 2020 00:24:48 -0700
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYWO7FEWJBKTG3JGNN42NPUBEVBNHHCKITFM4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3687@github.com>
Subject: [quicwg/base-drafts] Tell people which document to cite when citing QUIC (#3687)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec77e4059fff_67f83fd19d8cd9682964da"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: larseggert
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7S64WG-idvQ0i-3wYvRBoCOM2qo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 07:24:52 -0000

----==_mimepart_5ec77e4059fff_67f83fd19d8cd9682964da
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The chairs just had a question from someone who wanted to cite "QUIC" on what document they should be citing. We responded that they should cite -transport, since we see this as the central document.

Should we add brief notes to the documents saying "if you want to cite QUIC, cite -transport"?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3687
----==_mimepart_5ec77e4059fff_67f83fd19d8cd9682964da
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The chairs just had a question from someone who wanted to cite "QUIC" on what document they should be citing. We responded that they should cite -transport, since we see this as the central document.</p>
<p>Should we add brief notes to the documents saying "if you want to cite QUIC, cite -transport"?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3687">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK766ABRZEJZVE4TNY3RSYSEBANCNFSM4NHRVV2Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4FABJ6WBFKR7YAGATRSYSEBA5CNFSM4NHRVV22YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJCMVTQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3687",
"url": "https://github.com/quicwg/base-drafts/issues/3687",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec77e4059fff_67f83fd19d8cd9682964da--


From nobody Fri May 22 00:51:02 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 EC43E3A07CE for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 00:51:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 BCebdYaXxL2b for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 00:50:59 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0C5EC3A07CB for <quic-issues@ietf.org>; Fri, 22 May 2020 00:50:58 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 11E642C0A77 for <quic-issues@ietf.org>; Fri, 22 May 2020 00:50:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590133858; bh=iDobcI6lwQh5v9JMe8kS5eICgIeIiEVYWs0p9vvxxQ4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GpUMagtWeyCCDle2ZXxpVzQSahaAzO/6m1WpBHYXAVSUge0MoANZXVLYB141QQPNE YlHA1FklgqEOZ5d4vV7JangW1zf2RnQ9IPNuk8KVONO1GgclIHhTDWNnWNZ9Edr7D5 0NBAERgzdQHeD6oL3YzmYHKtUpfp4Cg2XlVLPz28=
Date: Fri, 22 May 2020 00:50:58 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4YVM6R2AQFEUSKPC542NSWFEVBNHHCKITFM4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3687/632551303@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3687@github.com>
References: <quicwg/base-drafts/issues/3687@github.com>
Subject: Re: [quicwg/base-drafts] Tell people which document to cite when citing QUIC (#3687)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec784623238_32793fd40eacd95c4926ed"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zgsthySZje8D8oGILo9iOhT2Wsc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 07:51:01 -0000

----==_mimepart_5ec784623238_32793fd40eacd95c4926ed
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That seems reasonable, since we say in there that accompanying documents describe TLS and recovery. Where are you thinking of adding that note?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3687#issuecomment-632551303
----==_mimepart_5ec784623238_32793fd40eacd95c4926ed
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>That seems reasonable, since we say in there that accompanying documents describe TLS and recovery. Where are you thinking of adding that note?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3687#issuecomment-632551303">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ4TZ4MQ2WUPO4WHWDRSYVGFANCNFSM4NHRVV2Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6HOCETELQ3RYGQEA3RSYVGFA5CNFSM4NHRVV22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEWZ7PBY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3687#issuecomment-632551303",
"url": "https://github.com/quicwg/base-drafts/issues/3687#issuecomment-632551303",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec784623238_32793fd40eacd95c4926ed--


From nobody Fri May 22 01:47:37 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 A458B3A07BC for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 01:47:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 w207chd386X1 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 01:47:33 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 872FC3A07B3 for <quic-issues@ietf.org>; Fri, 22 May 2020 01:47:33 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 97F4B6E12D9 for <quic-issues@ietf.org>; Fri, 22 May 2020 01:47:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590137252; bh=pp7EY7Rp5kbYTNzcgxPdeRyePlcsWR/KelOn5SwVJ8Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SjriLAYLmWaLSafmlmTuVfLZiAcUA5jSjrNRGP/1LloGy79WgoKkMDY0BhknCDnIh rvAyALwwMK/6DElPlx0Km4Pj+FzDgpGB1l4VBeOOS3XbgIo3xuG0md9bYxoRsCtzhE W3JMOvY9qxOWL5ju6CN8eGFXbHYvMLm93kZKziSQ=
Date: Fri, 22 May 2020 01:47:32 -0700
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYHI5QVSHKR5TRGCVN42NZKJEVBNHHCKITFM4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3687/632577082@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3687@github.com>
References: <quicwg/base-drafts/issues/3687@github.com>
Subject: Re: [quicwg/base-drafts] Tell people which document to cite when citing QUIC (#3687)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec791a488503_27953fed23ccd968148912"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: larseggert
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/X-aX7wTpSpNfTSHfehQq_J5Asf4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 08:47:35 -0000

----==_mimepart_5ec791a488503_27953fed23ccd968148912
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As early as possible?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3687#issuecomment-632577082
----==_mimepart_5ec791a488503_27953fed23ccd968148912
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>As early as possible?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3687#issuecomment-632577082">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3PMSREEWF3ELVH6ZDRSY32JANCNFSM4NHRVV2Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK43GGAEPHZYWFNIRPTRSY32JA5CNFSM4NHRVV22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW2FYOQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3687#issuecomment-632577082",
"url": "https://github.com/quicwg/base-drafts/issues/3687#issuecomment-632577082",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec791a488503_27953fed23ccd968148912--


From nobody Fri May 22 10:37:19 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 68D3E3A0AB4 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 10:37:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 t8sMYEY-_6qf for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 10:37:16 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E8A423A0AB2 for <quic-issues@ietf.org>; Fri, 22 May 2020 10:37:15 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 527931C027D for <quic-issues@ietf.org>; Fri, 22 May 2020 10:37:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590169034; bh=jk6KhN/AzzHl0j0HV6iPIwwSyrBv8GBA7bCkMUqCr9w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uGRLfiT813nsVnPkL7bP7zobTqdj4R7KPFSA4EjKbSXCQzlbJ6ZvbIc7RlkAdULpe AAh7WLHRKqcQO/owy2ex+uoEt/yOEc3fMUOJ7+YpU0AGEpZOFkXkG6d2vp+yT8fvvi qNc2eP2yb+QKNF0qQsOLbaBxW4m79iHjYYzBaSAw=
Date: Fri, 22 May 2020 10:37:14 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5SLGMNO4SBRWFWBBV42PXMVEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/review/417079978@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec80dca4430f_762f3f8279ecd96c31179f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ipWIs56A2TT0JhWUVbkKpRlQeS4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 17:37:18 -0000

----==_mimepart_5ec80dca4430f_762f3f8279ecd96c31179f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi approved this pull request.

Thanks for the edits!

> +successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, the limit on
+the number of packets that fail authentication is 2^36.  Note that the analysis
+in {{AEBounds}} supports a higher limit for the AEAD_AES_128_GCM and
+AEAD_AES_256_GCM, but this specification recommends a lower limit.  For
+AEAD_AES_128_CCM, the limit on the number of packets that fail authentication
+is 2^23.5; see {{ccm-bounds}}.
+
+Note:
+
+: These limits were originally calculated using assumptions about the
+  limits on TLS record size. The maximum size of a TLS record is 2^14 bytes.
+  In comparison, QUIC packets can be up to 2^16 bytes.  However, it is
+  expected that QUIC packets will generally be smaller than TLS records.
+  Where packets might be larger than 2^14 bytes in length, smaller limits might

It would be really nice to do the math for 2^16 byte packets in this document, but I'm not volunteering so I guess I can live with this as is

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-417079978
----==_mimepart_5ec80dca4430f_762f3f8279ecd96c31179f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> approved this pull request.</p>

<p>Thanks for the edits!</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3620#discussion_r429373548">draft-ietf-quic-tls.md</a>:</p>
<pre style='color:#555'>&gt; +successfully forge a packet; see {{AEBounds}} and {{ROBUST}}.
+
+For AEAD_AES_128_GCM, AEAD_AES_256_GCM, and AEAD_CHACHA20_POLY1305, the limit on
+the number of packets that fail authentication is 2^36.  Note that the analysis
+in {{AEBounds}} supports a higher limit for the AEAD_AES_128_GCM and
+AEAD_AES_256_GCM, but this specification recommends a lower limit.  For
+AEAD_AES_128_CCM, the limit on the number of packets that fail authentication
+is 2^23.5; see {{ccm-bounds}}.
+
+Note:
+
+: These limits were originally calculated using assumptions about the
+  limits on TLS record size. The maximum size of a TLS record is 2^14 bytes.
+  In comparison, QUIC packets can be up to 2^16 bytes.  However, it is
+  expected that QUIC packets will generally be smaller than TLS records.
+  Where packets might be larger than 2^14 bytes in length, smaller limits might
</pre>
<p>It would be really nice to do the math for 2^16 byte packets in this document, but I'm not volunteering so I guess I can live with this as is</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-417079978">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3LYTOWBTUTNGY7O73RS2Z4VANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2CI26PBX3GT5LGKM3RS2Z4VA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDOCFKQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-417079978",
"url": "https://github.com/quicwg/base-drafts/pull/3620#pullrequestreview-417079978",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec80dca4430f_762f3f8279ecd96c31179f--


From nobody Fri May 22 10:39:53 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 368FB3A0C1F for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 10:39:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 5_P_VvNBmJ22 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 10:39:50 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0DEF53A09F5 for <quic-issues@ietf.org>; Fri, 22 May 2020 10:39:50 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 4C0788C04D4 for <quic-issues@ietf.org>; Fri, 22 May 2020 10:39:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590169189; bh=wmtAnp41ldPJcv1PGwO5iJtlFXxP7T1l9sBmCJqGzAc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EosT8eW/YCZAZAzgwHz3ArxgNZuJ/yUfFs2laGlbakuTM81yXgMjnFn9Xg8RzZG4G orbAiULa/o1flXhaydrcs/+2knGG7owvPWNHP387R3OKZP2Tv6AMt7MF5lnzyEv8ze 78sr/jNwgEJQmpaTtOGnxrbCAZi6Xx/zesUBf07w=
Date: Fri, 22 May 2020 10:39:49 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2I4IWZD6NEFCELWQN42PXWLEVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684/review/417081570@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3684@github.com>
References: <quicwg/base-drafts/pull/3684@github.com>
Subject: Re: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec80e653bfaa_66523f95ac4cd96c377273"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QqR2HyUWwJgY7zOhRqQ-gnaexYI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 17:39:51 -0000

----==_mimepart_5ec80e653bfaa_66523f95ac4cd96c377273
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417081570
----==_mimepart_5ec80e653bfaa_66523f95ac4cd96c377273
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417081570">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6AOAEI5AGGDS4FNRDRS22GLANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7Z6JFQJS2SQYUIMODRS22GLA5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDOCRYQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417081570",
"url": "https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417081570",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec80e653bfaa_66523f95ac4cd96c377273--


From nobody Fri May 22 10:40:35 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 F17CB3A0CB1 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 10:40:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 n-nIsKmKMaji for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 10:40:25 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CC4543A0C75 for <quic-issues@ietf.org>; Fri, 22 May 2020 10:40:25 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 5F6C9A08A8 for <quic-issues@ietf.org>; Fri, 22 May 2020 10:40:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590169224; bh=d5UiCvlsbQqZxcM8lwPD6OQhYlJdQT6lNDPKbJP6Nyc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=f/c0bAauMqZJJ2XnHju9Bljdd0np3KO4PwRJvJ8RjyTwjWP8NVgxJN/M+t2QJehAi U1KF+qAOPU+agoU8wSz8ItHWoyf2Mv7r5/Qf+3ZEKQgXlE++Oyzk61LgWTB5cZM+rA KOBOQrCe2wLKRHPN89sU6vNBE7Jdys/xf4hSbQI0=
Date: Fri, 22 May 2020 10:40:24 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2MULOIFWXAAMII65F42PXYREVBNHHCKIHD7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3685/review/417081883@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3685@github.com>
References: <quicwg/base-drafts/pull/3685@github.com>
Subject: Re: [quicwg/base-drafts] Add an example of a variable-length integer field (#3685)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec80e884eb64_220c3fd8326cd9603769c6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/avBU58sNU4Opfga2gMsJ2pwXMfo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 17:40:34 -0000

----==_mimepart_5ec80e884eb64_220c3fd8326cd9603769c6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3685#pullrequestreview-417081883
----==_mimepart_5ec80e884eb64_220c3fd8326cd9603769c6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3685#pullrequestreview-417081883">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5JNMBUTKMZKOYKV43RS22IRANCNFSM4NHNQQ7Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK54SWDQSGARM3MSCC3RS22IRA5CNFSM4NHNQQ72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDOCUGY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3685#pullrequestreview-417081883",
"url": "https://github.com/quicwg/base-drafts/pull/3685#pullrequestreview-417081883",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec80e884eb64_220c3fd8326cd9603769c6--


From nobody Fri May 22 10:45:13 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 2B51E3A0CA0 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 10:45:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 8DdtiMvFrkS5 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 10:45:11 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 21BAF3A0C89 for <quic-issues@ietf.org>; Fri, 22 May 2020 10:45:11 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 150106E1333 for <quic-issues@ietf.org>; Fri, 22 May 2020 10:45:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590169510; bh=OijU9JaROuj0REBN5XGeNTGtgjxT+CUJmE3AZAZhcDw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nb+VMpgaXxnnI6HaS/s34HPDxR+3c1DykEknZ2kDZh5xbtxXHRWaXCSsgXvWUYfXe p6WNEqts8m/SqUnz8706zfQYBpRtq1gXyn0tWbMt1fM9PE/t8wNdr7jxdLysWJ2kCs sCEer17fM2z/JrmNoSmoz5s44rqIIcFdLdySjJS0=
Date: Fri, 22 May 2020 10:45:10 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK25SO2UOAYTWL2W35N42PYKNEVBNHHCKIKQA4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3686/review/417084496@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3686@github.com>
References: <quicwg/base-drafts/pull/3686@github.com>
Subject: Re: [quicwg/base-drafts] Forgeries likely exhaust TWO keys (#3686)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec80fa65929_3c6b3ff2278cd9684620f1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XhJbK1mohUuvEfZWzj-YFRr7TPg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 17:45:12 -0000

----==_mimepart_5ec80fa65929_3c6b3ff2278cd9684620f1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3686#pullrequestreview-417084496
----==_mimepart_5ec80fa65929_3c6b3ff2278cd9684620f1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3686#pullrequestreview-417084496">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5H7FEV7RGG2NLUYKDRS222NANCNFSM4NHO3H3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2MQ5WQOGVSY4S7LT3RS222NA5CNFSM4NHO3H3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDODIUA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3686#pullrequestreview-417084496",
"url": "https://github.com/quicwg/base-drafts/pull/3686#pullrequestreview-417084496",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec80fa65929_3c6b3ff2278cd9684620f1--


From nobody Fri May 22 11:04:54 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 137983A0A9F for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 11:04:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 uJHyB7Pqgu8S for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 11:04:48 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ED9B73A0AA1 for <quic-issues@ietf.org>; Fri, 22 May 2020 11:04:40 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id D2A736A00AC for <quic-issues@ietf.org>; Fri, 22 May 2020 11:04:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590170679; bh=LyD3+ZUpXzVaNvYp6Tsjbgjh29QTA8IcBTVERBT+lnk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=inKPN78HRm/oAht6oLKwRsTYjCpK58YqK0TXFvnUiMurHXk9Kr7GwOmgbVOuWN0iK GVW4o10VoWXBUBaH5P8E3wHhRgRJPUfhpoiNodlgbmgwS6MU+aZRQmo4Rh5bje1nkw Ot1U7HC6jAI3h1BHdUa+XrcVUfXCTMd8QrvYx8A4=
Date: Fri, 22 May 2020 11:04:39 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3WRAIWSQ3WIN5P36F42P2TPEVBNHHCKITFM4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3687/632833185@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3687@github.com>
References: <quicwg/base-drafts/issues/3687@github.com>
Subject: Re: [quicwg/base-drafts] Tell people which document to cite when citing QUIC (#3687)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec81437c01e7_38f23ff6e96cd96c64441f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ERmsR2EPFPSuf79IDBbWK3KRX24>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 18:04:52 -0000

----==_mimepart_5ec81437c01e7_38f23ff6e96cd96c64441f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If you want to cite QUIC version 1, transport.  If you want to cite QUIC all-up, invariants.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3687#issuecomment-632833185
----==_mimepart_5ec81437c01e7_38f23ff6e96cd96c64441f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>If you want to cite QUIC version 1, transport.  If you want to cite QUIC all-up, invariants.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3687#issuecomment-632833185">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5XPBKJL6GNCPZN7HTRS25DPANCNFSM4NHRVV2Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7HCAZQEVAQKCZUZQ3RS25DPA5CNFSM4NHRVV22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW4EJII.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3687#issuecomment-632833185",
"url": "https://github.com/quicwg/base-drafts/issues/3687#issuecomment-632833185",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec81437c01e7_38f23ff6e96cd96c64441f--


From nobody Fri May 22 11:11:20 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 32B2B3A0D01 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 11:11:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 l2tKiQmXJZ1Y for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 11:11:14 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 63A683A0CEE for <quic-issues@ietf.org>; Fri, 22 May 2020 11:11:14 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 8F0D66E0B59 for <quic-issues@ietf.org>; Fri, 22 May 2020 11:11:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590171073; bh=ZGf0RxpJHj51PAKldeWNky5rcmnEDn9OEb1fh2GgwsU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MM3y5vaPsVv+g1Qh/zZ23/pOElAuq2T7HJeM/z7h1lKBKp3Wem2c1epLSXe9bbsZf U7jpqqlp+48w72OTrj9f5PXFOdr5jhY4k0TUuasu6sFvFxIOhfXdeStPUVyynmyH0x vAe/o15YicRrHHHJuHnn8/q0dwqq9kJqO+4YKi70=
Date: Fri, 22 May 2020 11:11:13 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYPR3HADGVH6DJCYPV42P3MDEVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684/review/417099557@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3684@github.com>
References: <quicwg/base-drafts/pull/3684@github.com>
Subject: Re: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec815c17f639_54443f85fa6cd968549295"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/v7RWehdyNX6-ELznra6ZuIRMvfM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 18:11:18 -0000

----==_mimepart_5ec815c17f639_54443f85fa6cd968549295
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop approved this pull request.

Looks good.  Technically, we could reference this draft for the notation, but we don't need to if it makes transport easier to read.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417099557
----==_mimepart_5ec815c17f639_54443f85fa6cd968549295
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> approved this pull request.</p>

<p>Looks good.  Technically, we could reference this draft for the notation, but we don't need to if it makes transport easier to read.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417099557">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2WXATSTNEYBV6FCM3RS254DANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYEZPINNXEXQQDXYT3RS254DA5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDOG6JI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417099557",
"url": "https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417099557",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec815c17f639_54443f85fa6cd968549295--


From nobody Fri May 22 11:11:57 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 659903A0D01 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 11:11:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 YMriNxXgqvJf for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 11:11:54 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6021B3A0CEE for <quic-issues@ietf.org>; Fri, 22 May 2020 11:11:54 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id AF0756A0DB3 for <quic-issues@ietf.org>; Fri, 22 May 2020 11:11:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590171113; bh=vOU/zcwI3af48SylD5Zs1lpWW99v5r7coOlkwIWW8VA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=q4LcFO/hjkfc7f9WVHu4RBzdviCZUf5r1JYrk6o49gSHmR2KQq4oxiWRVMHjuPKs+ W7lcUUBDg7jdBdFZtwbx13QE3x3BQLjWxzWErEmqpk7qzuo4wQXMF0GwS1OXICDKqI kC6W3ddpmResPGPsCmnVAUZen09pTuwK4gWDhdCk=
Date: Fri, 22 May 2020 11:11:53 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5AYL4FDZAKWTNVLHN42P3OTEVBNHHCKIHD7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3685/review/417099938@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3685@github.com>
References: <quicwg/base-drafts/pull/3685@github.com>
Subject: Re: [quicwg/base-drafts] Add an example of a variable-length integer field (#3685)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec815e99ece6_391b3f7e71ccd95c73442b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DLNACMyl1-fpsJ_Ndm0XoFuEYC8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 18:11:56 -0000

----==_mimepart_5ec815e99ece6_391b3f7e71ccd95c73442b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3685#pullrequestreview-417099938
----==_mimepart_5ec815e99ece6_391b3f7e71ccd95c73442b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3685#pullrequestreview-417099938">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5IF47SNAPOXVYTUPTRS256TANCNFSM4NHNQQ7Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6KSKAGU4MBEMSKDMTRS256TA5CNFSM4NHNQQ72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDOHBIQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3685#pullrequestreview-417099938",
"url": "https://github.com/quicwg/base-drafts/pull/3685#pullrequestreview-417099938",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec815e99ece6_391b3f7e71ccd95c73442b--


From nobody Fri May 22 11:12:54 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 CB66B3A0D0D for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 11:12:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 4ClJGwvAKQ7o for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 11:12:51 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BE7AC3A0D09 for <quic-issues@ietf.org>; Fri, 22 May 2020 11:12:51 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id CE8928C006B for <quic-issues@ietf.org>; Fri, 22 May 2020 11:12:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590171170; bh=lrXUBJbClQeVFHZOL1Yk2n6SYahZqahnNDIc7/NgqzE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YwX7qietVff4CxoVCIurb5KEzdo+C95RU2+XyA2BUmZYmMXWj57rRL2DYTMdeRvms ZdRdhN5nSHbS1x6et7OZXt4s9Jrq0MAbmqPytRqRBH3u6UtDKGK77N+ThAfHkyRWIb 5tU8xWULuU4LS8IkUTUplx1DEBovaofpeFn8Fg8k=
Date: Fri, 22 May 2020 11:12:50 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6Z2HPFSWNATZLK72V42P3SFEVBNHHCKIKQA4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3686/review/417100441@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3686@github.com>
References: <quicwg/base-drafts/pull/3686@github.com>
Subject: Re: [quicwg/base-drafts] Forgeries likely exhaust TWO keys (#3686)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec81622be452_38ef3ff6e96cd96c6637c2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3s00zb-BKTQY_batWetEXz0Ga8o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 18:12:53 -0000

----==_mimepart_5ec81622be452_38ef3ff6e96cd96c6637c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3686#pullrequestreview-417100441
----==_mimepart_5ec81622be452_38ef3ff6e96cd96c6637c2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3686#pullrequestreview-417100441">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ2I6HMCYVLROWK46LRS26CFANCNFSM4NHO3H3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7PK7KCRJTJXGZXLUDRS26CFA5CNFSM4NHO3H3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDOHFGI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3686#pullrequestreview-417100441",
"url": "https://github.com/quicwg/base-drafts/pull/3686#pullrequestreview-417100441",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec81622be452_38ef3ff6e96cd96c6637c2--


From nobody Fri May 22 12:32:15 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 25C193A0542 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 12:32:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 lkM5ZLWoGOp9 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 12:32:11 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 869C03A053F for <quic-issues@ietf.org>; Fri, 22 May 2020 12:32:11 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 73F3A1C025C for <quic-issues@ietf.org>; Fri, 22 May 2020 12:32:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590175929; bh=HdMQcp7LTnAzqcZ0AaPTPz0n0tnJUkPQbqEvbYNbKwQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=E+gDchZ9zHMeSvsbYBjjuXpaJr8I3DwhYbUrQzGphhsEl2+vH1q3/Ar+bt7GmCej+ Nze4OwBYdU+VKIywIAiMw/t5aXlPpyqv6MuCx7h4Wynem7TFFA0yQAsvnE0lQ5aHS/ bbKpmxjczeIYCErX2Qg3jAKyw3FTCHPqeRDdi400=
Date: Fri, 22 May 2020 12:32:09 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY7ZQQCFQ3YRNTO5BF42QE3TEVBNHHCKIHD7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3685/review/417144758@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3685@github.com>
References: <quicwg/base-drafts/pull/3685@github.com>
Subject: Re: [quicwg/base-drafts] Add an example of a variable-length integer field (#3685)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec828b9653a9_18ad3fd19accd96c804561"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/utkJduP-vREkZN7E030RHhGI2X0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 19:32:13 -0000

----==_mimepart_5ec828b9653a9_18ad3fd19accd96c804561
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3685#pullrequestreview-417144758
----==_mimepart_5ec828b9653a9_18ad3fd19accd96c804561
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3685#pullrequestreview-417144758">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK23J2SHMUIMRXMWCMTRS3HLTANCNFSM4NHNQQ7Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYORUWBGDYMATN2EQLRS3HLTA5CNFSM4NHNQQ72YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDOR7NQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3685#pullrequestreview-417144758",
"url": "https://github.com/quicwg/base-drafts/pull/3685#pullrequestreview-417144758",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec828b9653a9_18ad3fd19accd96c804561--


From nobody Fri May 22 12:36:23 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 13C683A0A79 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 12:36:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 S2JEoOKrUpsD for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 12:36:19 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BDA093A0968 for <quic-issues@ietf.org>; Fri, 22 May 2020 12:36:19 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 05D68A050C for <quic-issues@ietf.org>; Fri, 22 May 2020 12:36:19 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590176179; bh=62kgeHyaheWnOWGqPSZplYcVUi9WqIlwE2B9QZYAmiY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iRtCJNkxQ+I63aXAQhXaudswq59ZpuUhkfXHDPUr+yuZD1P6LoGR+tc12TZseGl/7 Kk3q5Xh81E+AXAhoZ7Fkxedo/ccSKVmEVmjGnG5CRKRV+7rAbM7QFi9wgs4eXL0Itl W7i9EljL99Wd1p1D37VcHy19nyXPBDd9W4pIZD9M=
Date: Fri, 22 May 2020 12:36:18 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK73RHAFEJFLS5CVN3F42QFLFEVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684/review/417146730@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3684@github.com>
References: <quicwg/base-drafts/pull/3684@github.com>
Subject: Re: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec829b2e9b47_6a103fa22bccd96071878"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SHasJ1Ux_Gy7lo1HW7gkT5yUjRM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 19:36:21 -0000

----==_mimepart_5ec829b2e9b47_6a103fa22bccd96071878
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417146730
----==_mimepart_5ec829b2e9b47_6a103fa22bccd96071878
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417146730">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7OR4UHLWOMMGNJHJ3RS3H3FANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYUHXG2ARUOTUNAOLLRS3H3FA5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDOSO2Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417146730",
"url": "https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417146730",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec829b2e9b47_6a103fa22bccd96071878--


From nobody Fri May 22 13:00:00 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 700243A0D37 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 12:59:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 S86axbHp5Bbz for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 12:59:57 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E39153A0D0E for <quic-issues@ietf.org>; Fri, 22 May 2020 12:59:56 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 06429960085 for <quic-issues@ietf.org>; Fri, 22 May 2020 12:59:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590177596; bh=PDh3ZaKNQHazMTwVCTNQAind29GgCWT28h2jWMg/U00=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=QfSQbEjIwe2P7VUO2UiY9FRItxhRiTSvDRtHN/iR3EM5Of10JF17Y2wXe3n91+ghU T5+yFc67xv5cuL76JLCq68jbKV1bdhuIkvXZUZeGB5+S7lLzE2ZIaO4Tok8B82ouZ5 FdaKee4ubqGIg4If8DYriwtmxAH87gXQnkpJr4cA=
Date: Fri, 22 May 2020 12:59:55 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZQVBXKDNFUFNS67EF42QIDXEVBNHHCKKIWJY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3688@github.com>
Subject: [quicwg/base-drafts] Add #3527 to transport's "Since ID-27" changelog (#3688)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec82f3be87f5_631d3f97a26cd9689258e0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6Zzl4L9bIhbX6gV34qaA4CleACA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 19:59:59 -0000

----==_mimepart_5ec82f3be87f5_631d3f97a26cd9689258e0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3688

-- Commit Summary --

  * Add #3527 to transport&#39;s &quot;Since ID-27&quot; changelog

-- File Changes --

    M draft-ietf-quic-transport.md (1)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3688.patch
https://github.com/quicwg/base-drafts/pull/3688.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3688

----==_mimepart_5ec82f3be87f5_631d3f97a26cd9689258e0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3688'>https://github.com/quicwg/base-drafts/pull/3688</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Add #3527 to transport&#39;s &quot;Since ID-27&quot; changelog</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3688/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (1)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3688.patch'>https://github.com/quicwg/base-drafts/pull/3688.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3688.diff'>https://github.com/quicwg/base-drafts/pull/3688.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3688">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3YEG2QQSXCH5FG763RS3KTXANCNFSM4NIC6EUA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2JRBKRB7NWU7BBMV3RS3KTXA5CNFSM4NIC6EUKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJJCZHA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3688",
"url": "https://github.com/quicwg/base-drafts/pull/3688",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec82f3be87f5_631d3f97a26cd9689258e0--


From nobody Fri May 22 13:32:06 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 39ACA3A0A99 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 13:32:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 3xeE8uyevX7M for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 13:32:00 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 625143A0A93 for <quic-issues@ietf.org>; Fri, 22 May 2020 13:32:00 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 876658C0346 for <quic-issues@ietf.org>; Fri, 22 May 2020 13:31:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590179518; bh=kghpPE5KUunblltHoJCodOgDbaaPr4hvB5pV1MDOizA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=YEYADSXCe5U0voZFoj/vfWDKf+Q0YFk6S0vBVL0WDuD0ya6ielL91xjJbRhkbj4e1 OWlqO5wf53i3mQxXHmBdO55g7+Hw1pxSnBk9Qe2nwo9pdd6dtLT0upyBlGO9oegxyT A7UrC6rDdrF/qzYSuJ70uVHMnGzoxbGcyOIMKspY=
Date: Fri, 22 May 2020 13:31:58 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY4D7X7ZUQPWQSREBV42QL35EVBNHHCKKKFHA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3689@github.com>
Subject: [quicwg/base-drafts] Improve HTTP draft wording: frames carry identifier values (#3689)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec836be779fb_61aa3f97a26cd968935756"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5uEnFalmet9sOJVUo0km4GhGj5o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 20:32:05 -0000

----==_mimepart_5ec836be779fb_61aa3f97a26cd968935756
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The endpoint sends frames, which *carry* -- not send -- identifier values.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3689

-- Commit Summary --

  * Improve HTTP draft wording: frames carry identifier values

-- File Changes --

    M draft-ietf-quic-http.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3689.patch
https://github.com/quicwg/base-drafts/pull/3689.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3689

----==_mimepart_5ec836be779fb_61aa3f97a26cd968935756
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>The endpoint sends frames, which <em>carry</em> -- not send -- identifier values.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3689'>https://github.com/quicwg/base-drafts/pull/3689</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Improve HTTP draft wording: frames carry identifier values</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3689/files#diff-3d2f9fd0738589657498f2c06ee02f2f">draft-ietf-quic-http.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3689.patch'>https://github.com/quicwg/base-drafts/pull/3689.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3689.diff'>https://github.com/quicwg/base-drafts/pull/3689.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3689">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3QQOVPDUL46S2JX3LRS3OL5ANCNFSM4NIDL3PQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK64WOLBCC5AEFLLT6TRS3OL5A5CNFSM4NIDL3P2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJJIU4A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3689",
"url": "https://github.com/quicwg/base-drafts/pull/3689",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec836be779fb_61aa3f97a26cd968935756--


From nobody Fri May 22 13:48:23 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 428CD3A0B23 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 13:48:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 7_bSAtQwAgly for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 13:48:17 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C43603A0A49 for <quic-issues@ietf.org>; Fri, 22 May 2020 13:48:16 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 3629A661E7D for <quic-issues@ietf.org>; Fri, 22 May 2020 13:48:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590180495; bh=a3jph6pCbFahZD8pR1EWcHib8rTJRybU5CDVicTKjvo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vuYb6E3m5JPR2vebbQqaGhpylBLy+yPfMyld2nRLA/EVJxqOusbYqf14TOhAPlvPB XF29E0Psipj7Nau5Do8QAegOndhpwuoXnbHcaWiGZ1u1YsxVO0TTMF4b5TtM0e0Fx7 8NQnT4CWuta6emcz6WVYTfPWG7YRSTTbk1MsMXDQ=
Date: Fri, 22 May 2020 13:48:15 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ5A4CBMOPTGKCPEC542QNY7EVBNHHCKKKFHA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3689/c632903288@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3689@github.com>
References: <quicwg/base-drafts/pull/3689@github.com>
Subject: Re: [quicwg/base-drafts] Improve HTTP draft wording: frames carry identifier values (#3689)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec83a8f2664a_47f13fed19acd9601263522"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2FzfYTekNfCNhgJOn1G86KxkmXk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 20:48:19 -0000

----==_mimepart_5ec83a8f2664a_47f13fed19acd9601263522
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The way it's intended to parse, "An endpoint ... MUST NOT increase the value they send," is probably incorrect in number or gender.  But yes, changing the verb to reflect that the subject is the frames instead of the endpoint is also an option.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3689#issuecomment-632903288
----==_mimepart_5ec83a8f2664a_47f13fed19acd9601263522
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The way it's intended to parse, "An endpoint ... MUST NOT increase the value they send," is probably incorrect in number or gender.  But yes, changing the verb to reflect that the subject is the frames instead of the endpoint is also an option.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3689#issuecomment-632903288">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6XSWOLCZLNUWJGER3RS3QI7ANCNFSM4NIDL3PQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK47ZMYYU5USLQ43YKDRS3QI7A5CNFSM4NIDL3P2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW4VM6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3689#issuecomment-632903288",
"url": "https://github.com/quicwg/base-drafts/pull/3689#issuecomment-632903288",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec83a8f2664a_47f13fed19acd9601263522--


From nobody Fri May 22 16:37:07 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 0F8D13A0E0D for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 16:37:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 aSANPACmmHNz for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 16:37:03 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A4A2D3A0E09 for <quic-issues@ietf.org>; Fri, 22 May 2020 16:37:03 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id C174AA0782 for <quic-issues@ietf.org>; Fri, 22 May 2020 16:37:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590190622; bh=zkEFmX4bah4/78nR1oCzVwRmEcT5EoGHKyP9hfjy+zs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IIJrc61d8pCQSuIkNOHbtraRgxYbNEoya8fhJrXSmWDewvqVtkaaSRT7gnBMA3X/O /OHpMxw7IiyvAznqC5Vxe8mM3IPKYgpvdpVIlyTmxvHWhRSLK6P37p0B+I4Kc32uiF y3l2B5o0BdPTwKJwc3M5N3XwfTE8Fu+Rcgly9E4M=
Date: Fri, 22 May 2020 16:37:02 -0700
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2YF7DNLIGGJNK3ID542RBR5EVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/c632944131@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec8621eb19d1_120f3ff13d8cd96c37283b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chris-wood
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/k2m1Pc2nu-YYXc2ahGgZWex_8Os>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 22 May 2020 23:37:05 -0000

----==_mimepart_5ec8621eb19d1_120f3ff13d8cd96c37283b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> It would be really nice to do the math for 2^16 byte packets in this document, but I'm not volunteering so I guess I can live with this as is

For what it's worth, Martin, Felix, and I put together a document which might help users do this themselves:

https://github.com/chris-wood/draft-wood-cfrg-aead-limits

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620#issuecomment-632944131
----==_mimepart_5ec8621eb19d1_120f3ff13d8cd96c37283b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>It would be really nice to do the math for 2^16 byte packets in this document, but I'm not volunteering so I guess I can live with this as is</p>
</blockquote>
<p>For what it's worth, Martin, Felix, and I put together a document which might help users do this themselves:</p>
<p><a href="https://github.com/chris-wood/draft-wood-cfrg-aead-limits">https://github.com/chris-wood/draft-wood-cfrg-aead-limits</a></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3620#issuecomment-632944131">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZAUF22V4AXUOFSB3RS4EB5ANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5ES5NCFGY3UCNJPF3RS4EB5A5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW47MAY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620#issuecomment-632944131",
"url": "https://github.com/quicwg/base-drafts/pull/3620#issuecomment-632944131",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec8621eb19d1_120f3ff13d8cd96c37283b--


From nobody Fri May 22 17:51:45 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 C5DD53A0E70 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 17:51:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 rEhSbevAEjtp for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 17:51:40 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ABE7A3A0E6F for <quic-issues@ietf.org>; Fri, 22 May 2020 17:51:40 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 0DD51121245 for <quic-issues@ietf.org>; Fri, 22 May 2020 17:51:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590195100; bh=F6yR6Dqlg9+Zxb6AaedtATyerjFVqP1zrXxR1LzMul0=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Kf1bQKUKXPy/moZhRljd+T4h7HQRLMYZ29pHStd8bL0N0akDBrV3leF6zuJzQ3bk2 ZiR/ew8I7I07M64u56nxnlSnWJYAHP3dXkn5bft9MX3s6sdf5vcua75J6KLjtlYuTh poo+OOjwy4LCUC5+IxCDzA9DdHqoKrWMgo3sswJ8=
Date: Fri, 22 May 2020 17:51:39 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7GWFKYEFG2FA35KPV42RKJXEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690@github.com>
Subject: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec8739bbcad8_42833f9e6f2cd95c156571f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tXrkdA_Wq3a2OQN8LqrL6vRpHXI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 23 May 2020 00:51:43 -0000

----==_mimepart_5ec8739bbcad8_42833f9e6f2cd95c156571f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Assume that a server has a blacklist of IP addresses, that it doesn't accept connections from.

One way of implementing this would be to drop all packets from those IP addresses. But this would lead to clients time out, which is sad. Let's say the server wants to be more helpful and allow the client to quickly recover from this situation.
Sending a CONNECTION_CLOSE would seem like the right thing to do in that case. However, we don't have an error code that fits here. SERVER_BUSY is used to reject connection attempts, but it's a bad fit here. Retrying later is not likely to succeed in this case. APPLICATION_ERROR also seems too broad, as it's used for *any* application-level error (in Initial packets).

Do we need a new error code to cover this use case? Something like CONNECTION_REFUSED?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690
----==_mimepart_5ec8739bbcad8_42833f9e6f2cd95c156571f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Assume that a server has a blacklist of IP addresses, that it doesn't accept connections from.</p>
<p>One way of implementing this would be to drop all packets from those IP addresses. But this would lead to clients time out, which is sad. Let's say the server wants to be more helpful and allow the client to quickly recover from this situation.<br>
Sending a CONNECTION_CLOSE would seem like the right thing to do in that case. However, we don't have an error code that fits here. SERVER_BUSY is used to reject connection attempts, but it's a bad fit here. Retrying later is not likely to succeed in this case. APPLICATION_ERROR also seems too broad, as it's used for <em>any</em> application-level error (in Initial packets).</p>
<p>Do we need a new error code to cover this use case? Something like CONNECTION_REFUSED?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4VF3VHIZ3ZQCB3E73RS4MZXANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2SK3LIXLJFXPAIF3TRS4MZXA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJKM4ZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690",
"url": "https://github.com/quicwg/base-drafts/issues/3690",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec8739bbcad8_42833f9e6f2cd95c156571f--


From nobody Fri May 22 18:15:41 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 097583A0E92 for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 18:15:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 StBJBUK_2GRX for <quic-issues@ietfa.amsl.com>; Fri, 22 May 2020 18:15:37 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2A50E3A0E90 for <quic-issues@ietf.org>; Fri, 22 May 2020 18:15:37 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 2E20B2C0BE3 for <quic-issues@ietf.org>; Fri, 22 May 2020 18:15:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590196536; bh=haWLor0CnoMsKcxvOv/QPesj3+eGvtFVjxwuG6UwPTo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lKnuima3fWDOqOkrbV7diNbg5XRUHv0aimzpdaz7KaFebz85jxttV52eFEUq9WFM3 7IkBcfk2cGNyXsHsKms4RhgCTFBMxMzbG/4k7jgWIT+G6sKfE99wBo+023nQl7/7YX NQBIZW0R/I0Uci3B+g3Q6HqJVkbInK2jupb6Ptcs=
Date: Fri, 22 May 2020 18:15:36 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYMRASI3D3VCBZTTPN42RNDREVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/c632961218@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec879381dbaa_28223f97a26cd9681169c2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/151ITnZERVY354iEn1u1UOHZ7tY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 23 May 2020 01:15:39 -0000

----==_mimepart_5ec879381dbaa_28223f97a26cd9681169c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

=0D
@chris-wood Could you use that to come up with 2^16 limits and put them i=
n the doc? I=E2=80=99m really wary of letting implementors roll their own=
=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3620#issuecomment-632961218=

----==_mimepart_5ec879381dbaa_28223f97a26cd9681169c2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><a class=3D"user-mention" data-hovercard-type=3D"user" data-hovercard-=
url=3D"/users/chris-wood/hovercard" data-octo-click=3D"hovercard-link-cli=
ck" data-octo-dimensions=3D"link_type:self" href=3D"https://github.com/ch=
ris-wood">@chris-wood</a> Could you use that to come up with 2^16 limits =
and put them in the doc? I=E2=80=99m really wary of letting implementors =
roll their own</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3620#issuecomment-632961218">view it on GitHub</a>, o=
r <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK6XQL=
FGZ7EDIRIMX2DRS4PTRANCNFSM4MW4IM3A">unsubscribe</a>.<img src=3D"https://g=
ithub.com/notifications/beacon/AFTOJK3KUHINZQBWPELVN43RS4PTRA5CNFSM4MW4IM=
3KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW5DRQQ.gif=
" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3620#issuecomment-6=
32961218",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3620#issuecomment-6329=
61218",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec879381dbaa_28223f97a26cd9681169c2--


From nobody Sat May 23 07:16:30 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 3F9E23A0863 for <quic-issues@ietfa.amsl.com>; Sat, 23 May 2020 07:16:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 L4PW0-nzia50 for <quic-issues@ietfa.amsl.com>; Sat, 23 May 2020 07:16:24 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AE0273A07C2 for <quic-issues@ietf.org>; Sat, 23 May 2020 07:16:23 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 83ED56E0603 for <quic-issues@ietf.org>; Sat, 23 May 2020 07:16:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590243382; bh=acuJ3bUwAdH0tvCAglqoguuwJByq1dAGQ2FjZbasuZk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=k3bE5PacqD5xwq15axbGSYppivobTNCFw9p4xf+C6f/VVyGNYXyV3q6vW+nF/NQi8 xXtl39eQdxkUoewowsDCf2lBbylHf10jYk2i0qkTN/PWPrNQKdO07ow/N6bqbYADv4 FhixuSOueHvfXxpMRFNJqWvyyzM+9IwLOSwRVoEU=
Date: Sat, 23 May 2020 07:16:22 -0700
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYMX2LIZYXGVVNSJLV42UITNEVBNHHCIZGB6U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/c633062212@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec9303672c4e_7d643fcc626cd96427090b4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chris-wood
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZT_cYIWkvvEZJ6lzwPAsIyer6LI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 23 May 2020 14:16:28 -0000

----==_mimepart_5ec9303672c4e_7d643fcc626cd96427090b4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

> @chris-wood Could you use that to come up with 2^16 limits and put them=
 in the doc? I=E2=80=99m really wary of letting implementors roll their o=
wn=0D
=0D
Sure! Can you file an issue with that request?=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3620#issuecomment-633062212=

----==_mimepart_5ec9303672c4e_7d643fcc626cd96427090b4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<blockquote>=0D
<p><a class=3D"user-mention" data-hovercard-type=3D"user" data-hovercard-=
url=3D"/users/chris-wood/hovercard" data-octo-click=3D"hovercard-link-cli=
ck" data-octo-dimensions=3D"link_type:self" href=3D"https://github.com/ch=
ris-wood">@chris-wood</a> Could you use that to come up with 2^16 limits =
and put them in the doc? I=E2=80=99m really wary of letting implementors =
roll their own</p>=0D
</blockquote>=0D
<p>Sure! Can you file an issue with that request?</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3620#issuecomment-633062212">view it on GitHub</a>, o=
r <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK523L=
7Q63NVKZ4H6GDRS7LDNANCNFSM4MW4IM3A">unsubscribe</a>.<img src=3D"https://g=
ithub.com/notifications/beacon/AFTOJKZPWWQXQTL44MKJVRTRS7LDNA5CNFSM4MW4IM=
3KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW54GRA.gif=
" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3620#issuecomment-6=
33062212",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3620#issuecomment-6330=
62212",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ec9303672c4e_7d643fcc626cd96427090b4--


From nobody Sat May 23 11:19:00 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 B2FE63A0D73 for <quic-issues@ietfa.amsl.com>; Sat, 23 May 2020 11:18:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 io0AUPXuQzdE for <quic-issues@ietfa.amsl.com>; Sat, 23 May 2020 11:18:56 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 450EB3A0D12 for <quic-issues@ietf.org>; Sat, 23 May 2020 11:18:56 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 6AEB78C1169 for <quic-issues@ietf.org>; Sat, 23 May 2020 11:18:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590257934; bh=uYanc8/RAZvyC79+fCO/nVYl1LBZlv6Iv0o/yxM8YDQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sNAUTxshMroIyo6uEglobmFkajFQ91FRrMIJ4Cm3Lbzz1eU2ivyEv+729CIMVntvS IikNkXHO/Uk19YniSzi+wgZs909exUCb7wSrfU7n2VSjl8glBFDRSTmZ5BnkGR10Bp x2FtjDrKY5BOK5Reaw5ZQcvx2OemHVI7v4DZQlpU=
Date: Sat, 23 May 2020 11:18:54 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3KA7R5ZYGHNJ374B542VFA5EVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633110291@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec9690e5b624_4a803fa22bccd960255792"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/e-PhH7ifwCEEVT5xo3wos8wZlvg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 23 May 2020 18:18:58 -0000

----==_mimepart_5ec9690e5b624_4a803fa22bccd960255792
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If my reading of our code is correct, we're using PROTOCOL_VIOLATION for that case, but that's not a very informative choice.  In gQUIC, we used public reset for this(as you probably remember), but stateless reset is post-handshake only.

CONNECTION_REFUSED sounds better, but I think an important question is wether we expect clients to treat this error code differently than other error codes which occur during the handshake.  If we're not going to treat it differently, then it matters less.

That being said, I'm a general fan of more granular error codes for debugging.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633110291
----==_mimepart_5ec9690e5b624_4a803fa22bccd960255792
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>If my reading of our code is correct, we're using PROTOCOL_VIOLATION for that case, but that's not a very informative choice.  In gQUIC, we used public reset for this(as you probably remember), but stateless reset is post-handshake only.</p>
<p>CONNECTION_REFUSED sounds better, but I think an important question is wether we expect clients to treat this error code differently than other error codes which occur during the handshake.  If we're not going to treat it differently, then it matters less.</p>
<p>That being said, I'm a general fan of more granular error codes for debugging.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633110291">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2H2STNIWSSXC2SRIDRTAHQ5ANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK23DHB7Z3CWMZQCG3DRTAHQ5A5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW6H6EY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633110291",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633110291",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec9690e5b624_4a803fa22bccd960255792--


From nobody Sat May 23 21:19:00 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 2C8F63A10B8 for <quic-issues@ietfa.amsl.com>; Sat, 23 May 2020 21:18:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.099
X-Spam-Level: 
X-Spam-Status: No, score=-3.099 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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 lGhEmyEp3q-8 for <quic-issues@ietfa.amsl.com>; Sat, 23 May 2020 21:18:54 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8E8AA3A10B5 for <quic-issues@ietf.org>; Sat, 23 May 2020 21:18:54 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 43884E0ABA for <quic-issues@ietf.org>; Sat, 23 May 2020 21:18:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590293932; bh=Vj0KtzNuv6cEQO6CEruAHXICYQ0BSHm75RV1+FFxpNk=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=v5rkpRRGCOJbVabrfqfK4t6jMVPwOqkbYuHJR3dmR0jqVirXVcl1ogHyid0pQqZdn 9MQNCRy9phXL1tKPpfiGuYeTX3MZoHCB7ao/PLC0MgaIKKw6F9chvwSBCZFRYHDjAy ZM67+0Y1gGZAvg3bjC3axo/UezmKHEGTRxkiY58M=
Date: Sat, 23 May 2020 21:18:52 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY735IOXEJWHXVWHBF42XLKZEVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691@github.com>
Subject: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec9f5ac32cce_12283fd19accd96c950a6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8mt3-z6ukwI8-3-vFf9C30Wg4z8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 04:18:58 -0000

----==_mimepart_5ec9f5ac32cce_12283fd19accd96c950a6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As discussed in https://github.com/quicwg/base-drafts/pull/3499/files#r422775281, most of the errors that can occur when authenticating connection IDs should be TRANSPORT_PARAMETER_ERRORs, not PROTOCOL_VIOLATIONs.

The guiding principle here (as we apply it for FRAME_ENCODING_ERRORs) is that if an error is detectable without accessing connection state, we use the more specific error. So for example, since `initial_source_connection_id` and `original_destination_connection_id` are required transport parameters, their absence should be responded to with a TRANSPORT_PARAMETER_ERROR. A similar argument applies to the absence of the `retry_source_connection_id` TP, although I can see how one might use PROTOCOL_VIOLATION here (note that this is still valid behavior with this PR, as every more specific error can be replaced with a PROTOCOL_VIOLATION, if an implementation wishes to do so).
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3691

-- Commit Summary --

  * use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs

-- File Changes --

    M draft-ietf-quic-transport.md (8)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3691.patch
https://github.com/quicwg/base-drafts/pull/3691.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691

----==_mimepart_5ec9f5ac32cce_12283fd19accd96c950a6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>As discussed in <a href="https://github.com/quicwg/base-drafts/pull/3499/files#r422775281">https://github.com/quicwg/base-drafts/pull/3499/files#r422775281</a>, most of the errors that can occur when authenticating connection IDs should be TRANSPORT_PARAMETER_ERRORs, not PROTOCOL_VIOLATIONs.</p>
<p>The guiding principle here (as we apply it for FRAME_ENCODING_ERRORs) is that if an error is detectable without accessing connection state, we use the more specific error. So for example, since <code>initial_source_connection_id</code> and <code>original_destination_connection_id</code> are required transport parameters, their absence should be responded to with a TRANSPORT_PARAMETER_ERROR. A similar argument applies to the absence of the <code>retry_source_connection_id</code> TP, although I can see how one might use PROTOCOL_VIOLATION here (note that this is still valid behavior with this PR, as every more specific error can be replaced with a PROTOCOL_VIOLATION, if an implementation wishes to do so).</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3691'>https://github.com/quicwg/base-drafts/pull/3691</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3691/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (8)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3691.patch'>https://github.com/quicwg/base-drafts/pull/3691.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3691.diff'>https://github.com/quicwg/base-drafts/pull/3691.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3691">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYZ6DPJYREWMPYX7OLRTCN2ZANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7RVKJSLRC3O77ZLLDRTCN2ZA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJOJNRA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691",
"url": "https://github.com/quicwg/base-drafts/pull/3691",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ec9f5ac32cce_12283fd19accd96c950a6--


From nobody Sat May 23 21:27:34 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 6883B3A10C3 for <quic-issues@ietfa.amsl.com>; Sat, 23 May 2020 21:27:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 e-SvjYWDw3xk for <quic-issues@ietfa.amsl.com>; Sat, 23 May 2020 21:27:30 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BF2D43A10C1 for <quic-issues@ietf.org>; Sat, 23 May 2020 21:27:30 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id C23E06A03AC for <quic-issues@ietf.org>; Sat, 23 May 2020 21:27:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590294449; bh=yLzXh3S8kzTAJOWIkYiE0OYVafjEmpqiNjZ2AQfa1kM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=p8V1RLh+fh1rU6otEMGzXyXd3dNx3z+L5yY/5AKzfgIBYUzjYq6NdF+hiRweiFJl1 3VnN35x+JvM+w0fB2ryb2f8UBfrljl9hRGaBSF742oMs6kv3vgS+kQVKJi2ilffZyj vAUZhchJiqR7fQf5ErZ+bWBPV1GL21oxFg8wlK18=
Date: Sat, 23 May 2020 21:27:29 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK34SJBFRFCYHCDEDVN42XMLDEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633177355@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ec9f7b1b1930_48a63fd19accd96c11864a5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JYfZsuVUBw20IrlYxUa3elbh4xI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 04:27:33 -0000

----==_mimepart_5ec9f7b1b1930_48a63fd19accd96c11864a5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I think an important question is wether we expect clients to treat this error code differently than other error codes which occur during the handshake. If we're not going to treat it differently, then it matters less.

I guess a reasonable policy regarding errors received during the handshake would be:
* INVALID_TOKEN: try again immediately
* SERVER_BUSY: try again after a few minutes
* CONNECTION_REFUSED: don't try again for a day / week or so
* other errors: I can see TRANSPORT_PARAMETER_ERROR and FRAME_ENCODING_ERROR (and their generic subsitute, PROTOCOL_VIOLATION) being reasonably sent in response to a ClientHello. So that means that either your or your peer's implementation is broken, so maybe you shouldn't speak QUIC at all?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633177355
----==_mimepart_5ec9f7b1b1930_48a63fd19accd96c11864a5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>I think an important question is wether we expect clients to treat this error code differently than other error codes which occur during the handshake. If we're not going to treat it differently, then it matters less.</p>
</blockquote>
<p>I guess a reasonable policy regarding errors received during the handshake would be:</p>
<ul>
<li>INVALID_TOKEN: try again immediately</li>
<li>SERVER_BUSY: try again after a few minutes</li>
<li>CONNECTION_REFUSED: don't try again for a day / week or so</li>
<li>other errors: I can see TRANSPORT_PARAMETER_ERROR and FRAME_ENCODING_ERROR (and their generic subsitute, PROTOCOL_VIOLATION) being reasonably sent in response to a ClientHello. So that means that either your or your peer's implementation is broken, so maybe you shouldn't speak QUIC at all?</li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633177355">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY7P2DB5CVCBMINXETRTCO3DANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2UAS3QO5AE7LX7O2TRTCO3DA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW6YKCY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633177355",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633177355",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ec9f7b1b1930_48a63fd19accd96c11864a5--


From nobody Sun May 24 03:10:49 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 536FF3A00E1 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:10:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 F_h8zbuDSC41 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:10:44 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1C5DA3A00D8 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:10:44 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 1A0C6A034A for <quic-issues@ietf.org>; Sun, 24 May 2020 03:10:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590315043; bh=W8lDbAonuM5eehVo+8Rp4ODs6U1WOAbCCMfi6wBei+s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BoAWrBbPuW8Qjr8hn2+vaPodpAh4DOPsZAfuZAWk+Q3825K1/KKlhI+nqTXsATx3C kCmC/+oAqaoL1/Pwg+8uf/ugdDqwNwaKXr1B50fJvfOmbsrZuCU9uLuOMVMd6zOO8t uEdvLIdD97jsujzJOGkNFrWVOycsA6tYekTf/24Y=
Date: Sun, 24 May 2020 03:10:43 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZVVQOKCPJCHBAIV7V42YUSHEVBNHHCKITFM4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3687/633208222@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3687@github.com>
References: <quicwg/base-drafts/issues/3687@github.com>
Subject: Re: [quicwg/base-drafts] Tell people which document to cite when citing QUIC (#3687)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eca48239780_394b3ff6e96cd96c203885"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/I8Bhb7HpDtCnfa8K-Go4YZbFCPs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 10:10:47 -0000

----==_mimepart_5eca48239780_394b3ff6e96cd96c203885
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

[This paragraph](https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#section-1.1-4), or immediately after it, seems like as good a place as any.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3687#issuecomment-633208222
----==_mimepart_5eca48239780_394b3ff6e96cd96c203885
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a href="https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#section-1.1-4" rel="nofollow">This paragraph</a>, or immediately after it, seems like as good a place as any.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3687#issuecomment-633208222">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7FDD7J5GKWUXNRECDRTDXCHANCNFSM4NHRVV2Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4YW5WFO73HC5EBVYDRTDXCHA5CNFSM4NHRVV22YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW673HQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3687#issuecomment-633208222",
"url": "https://github.com/quicwg/base-drafts/issues/3687#issuecomment-633208222",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eca48239780_394b3ff6e96cd96c203885--


From nobody Sun May 24 03:11:05 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 D2A293A03FE for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:10:50 -0700 (PDT)
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, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 ctirh6UAB0Kc for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:10:49 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 752733A00E2 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:10:49 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id AE9908C03AA for <quic-issues@ietf.org>; Sun, 24 May 2020 03:10:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590315048; bh=B1fpMbkKMyxzx6DBUxqgfWaXxe1DH8yJrsUmnOC2utE=; h=Date:From:To:Subject:From; b=S6kZ1ZHUIwjeb3YA4vBUXX2llOnAm5TxD9GqzN4XlOVHrFwjMd/hr1eW0ZOpbQrVZ jq3oNvclc33jqaPxgjtzlK8rk1pGdTPIz2z3djPOOxWI9ahtbS5wmh1fq17vCy91R3 ltVn6nBSGGyiC/5dQ2z7XnBNhUnKE8Lm8PYwVFPE=
Date: Sun, 24 May 2020 03:10:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/varint-fmt-example/181dd7-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HGYijJ3bz5ypPqpf_pNOsSekEpc>
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: Sun, 24 May 2020 10:10:51 -0000

  Branch: refs/heads/varint-fmt-example
  Home:   https://github.com/quicwg/base-drafts


From nobody Sun May 24 03:11:09 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 8ABA33A00E2 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:10:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 QwNcRo0AcQdu for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:10:49 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2F8733A00E1 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:10:49 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id C90E2121098 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:10:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590315048; bh=7l41rdNbh8LwvnEVY2V0/9bzKeSl6A/A/l1Y0rsChMM=; h=Date:From:To:Subject:From; b=po0b8dxc8d89aQ9BbkUwG37z//jOefHWxtrCnk44B+wPPoV38b8VotmHOt/ZyYcui vniqvyYqgGzn4elLkGjaixHSq3N6tBgOgZJtvCp+tS0MxT6KOx96U2CC6tiZf58drq S2aqgaDlAwwtGcejvpcRIISfIdh/Pi+CPcx7p8r0=
Date: Sun, 24 May 2020 03:10:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/57ce76-7688b6@github.com>
Subject: [quicwg/base-drafts] 181dd7: Add an example of a variable-length integer field
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/pHf2mnePj9D3j5RSpAelnTjTp9w>
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: Sun, 24 May 2020 10:10:52 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 181dd7efcd44cd0c85ec02f4b8ab39c647d4b46c
      https://github.com/quicwg/base-drafts/commit/181dd7efcd44cd0c85ec02f4b8ab39c647d4b46c
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add an example of a variable-length integer field

The notations didn't have one of these previously, but were otherwise
thorough.  Might as well do that.


  Commit: 7688b67edac08a7b238ef842415fb8e8ae2eb181
      https://github.com/quicwg/base-drafts/commit/7688b67edac08a7b238ef842415fb8e8ae2eb181
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-24 (Sun, 24 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3685 from quicwg/varint-fmt-example

Add an example of a variable-length integer field


Compare: https://github.com/quicwg/base-drafts/compare/57ce7603bb82...7688b67edac0


From nobody Sun May 24 03:11:12 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 D72743A00E1 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:10:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 GBWyuElDLJ2D for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:10:58 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B45613A00D8 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:10:58 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 823F6E0537 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:10:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590315057; bh=IiAMB9HrY/hX0rFPUKW3S2oOT7Ru1AKfH57eiF/XQ5o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xKZ1RctISli1rl+NMozw0b9toHX2JETdoyVeqy8xB7GFmyy8aPhweVaiZ/D6tWzsP W/6qhWm6tCGQzpN7RtXVh9dxErUKle5rP56Js+oPhHvM1kjLe1fQoe1ae31Ct63e7+ SEvIQL18gqUmbPz0H1uGMuubRNG0RtvDjz9uKBoI=
Date: Sun, 24 May 2020 03:10:57 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3TBPCGYZHEWNKIGK542YUTDEVBNHHCKIHD7I@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3685/issue_event/3367813635@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3685@github.com>
References: <quicwg/base-drafts/pull/3685@github.com>
Subject: Re: [quicwg/base-drafts] Add an example of a variable-length integer field (#3685)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eca483172963_51af3f89b0acd96490686d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zs9muEC5GQ8b-thvCdcqXN0ySOk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 10:11:00 -0000

----==_mimepart_5eca483172963_51af3f89b0acd96490686d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3685 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3685#event-3367813635
----==_mimepart_5eca483172963_51af3f89b0acd96490686d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="622912506" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3685" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3685/hovercard" href="https://github.com/quicwg/base-drafts/pull/3685">#3685</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3685#event-3367813635">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4J4Y3WABBMESLWFHLRTDXDDANCNFSM4NHNQQ7Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK62GNI5LLSCKN272HLRTDXDDA5CNFSM4NHNQQ72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZC6MEAY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3685#event-3367813635",
"url": "https://github.com/quicwg/base-drafts/pull/3685#event-3367813635",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eca483172963_51af3f89b0acd96490686d--


From nobody Sun May 24 03:12:12 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 17FBC3A00D8 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:12:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 3lf2DqnLlu4p for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:12:05 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 535A53A00E1 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:12:05 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id D6C9F121262 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:12:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590315124; bh=IysZKQ0GhPbF+Sv0Y33BBFsKuOuEJrwPDEfb3ifNKc8=; h=Date:From:To:Subject:From; b=oUfvnM7I9ofq1+y8ylsd/zB1uztJ+05pcyto78Dt4hUj8CwW2tcUpOp3apIqmnkYP MzOu0W684lJ1ODzdn4+i2DCFePJb3x7RQavhlMWpiFzJwBELRM/d6Nbifuxj4j8Eqa T8Sjl1hntWPkIQuFv5iO8QQAT9TyrPtdQvfnhVTA=
Date: Sun, 24 May 2020 03:12:04 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8875e7-3b2be5@github.com>
Subject: [quicwg/base-drafts] 3b2be5: Script updating gh-pages from 7688b67e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tP61lrboMPppG00mfjm4tVe5bsY>
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: Sun, 24 May 2020 10:12:10 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3b2be5ad02350127ba45e8a4888067019adbdc04
      https://github.com/quicwg/base-drafts/commit/3b2be5ad02350127ba45e8a4888067019adbdc04
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-24 (Sun, 24 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    R ianswett-1-key/draft-ietf-quic-http.html
    R ianswett-1-key/draft-ietf-quic-http.txt
    R ianswett-1-key/draft-ietf-quic-invariants.html
    R ianswett-1-key/draft-ietf-quic-invariants.txt
    R ianswett-1-key/draft-ietf-quic-qpack.html
    R ianswett-1-key/draft-ietf-quic-qpack.txt
    R ianswett-1-key/draft-ietf-quic-recovery.html
    R ianswett-1-key/draft-ietf-quic-recovery.txt
    R ianswett-1-key/draft-ietf-quic-tls.html
    R ianswett-1-key/draft-ietf-quic-tls.txt
    R ianswett-1-key/draft-ietf-quic-transport.html
    R ianswett-1-key/draft-ietf-quic-transport.txt
    R ianswett-1-key/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 7688b67e. [ci skip]



From nobody Sun May 24 03:12:22 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 26B1C3A00E2 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:12:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 0fPspHJ_ZEhi for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:12:16 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D3A603A00E1 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:12:15 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 29F486601F6 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:12:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590315135; bh=UgY0VqFgFSTTHbxf/wrQdOUuq4OVvJXWC8Vzr7j/cXU=; h=Date:From:To:Subject:From; b=Zj0bIpoXG5ukZb7HSdj0z/5URmetFJFlXBRNPZrZa3deSxlgGk1Y7s/l5P2oXPlcf 7gMC4nH1r9lNuLTHXBTs+W6m34exluY9gE5n6gTwIrr+tM/w0ukUXKEOiPLrlpVnAz NTrAWqrDgvqHD8M6gjR0v85GW+Sfzj5sJqj966X0=
Date: Sun, 24 May 2020 03:12:15 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/3b2be5-d45a21@github.com>
Subject: [quicwg/base-drafts] d45a21: Script updating archive at 2020-05-24T10:11:57Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Kx38LsWrtHxHyvhSWPfPkOb87ew>
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: Sun, 24 May 2020 10:12:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d45a21470f887065c65c90e24ae6fefe7299dbad
      https://github.com/quicwg/base-drafts/commit/d45a21470f887065c65c90e24ae6fefe7299dbad
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-24 (Sun, 24 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-24T10:11:57Z. [ci skip]



From nobody Sun May 24 03:13:08 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 B95B53A011F for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:13:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 r_SXti9CmM6Q for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:13:04 -0700 (PDT)
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C09A83A00D8 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:13:03 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 55A532612C8 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:13:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590315183; bh=U9Xc9o+9JphAsahzFd028rQReqrvvaKJoy5Hy+IzeTo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WSltuX9skd/LyzrC/DxeWNY2P3e3nFrzbnKmjZtwZBgUFQhH/oCn1Rr4oK560324b Eb/VS0C07FGq0QbvQU0Z6q43NsZn7i6zD34TSg4+tmqCPDLgdqTtehh+u0B4gfDV6l 72v7d1MDt5HMLp7IG8U4k+y+VkYPHZVYgp5mIqV4=
Date: Sun, 24 May 2020 03:13:03 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2EG5YRO3G3PMCY4TV42YU27EVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684/c633208498@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3684@github.com>
References: <quicwg/base-drafts/pull/3684@github.com>
Subject: Re: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eca48af106c3_6b4f3f97a26cd96811288a8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tLMR56tZiaD8nR-gtS30_Ne6OVg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 10:13:06 -0000

----==_mimepart_5eca48af106c3_6b4f3f97a26cd96811288a8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> Technically, we could reference this draft for the notation

Yes, but I think that - at least in principle - each should be as independent of the other as possible.  Sure, -transport is a concrete instantiation of -invariants, but you can implement it without -invariants.  Similarly, -invariants exists to support -transport, but it describes something bigger than it.  So while we might have some pointers, you can read each without the other, which is nice.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684#issuecomment-633208498
----==_mimepart_5eca48af106c3_6b4f3f97a26cd96811288a8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>Technically, we could reference this draft for the notation</p>
</blockquote>
<p>Yes, but I think that - at least in principle - each should be as independent of the other as possible.  Sure, -transport is a concrete instantiation of -invariants, but you can implement it without -invariants.  Similarly, -invariants exists to support -transport, but it describes something bigger than it.  So while we might have some pointers, you can read each without the other, which is nice.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684#issuecomment-633208498">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6V3FJXHI4BF3XJGPTRTDXK7ANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7TABGSXF2CLZCZS6LRTDXK7A5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW675MQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684#issuecomment-633208498",
"url": "https://github.com/quicwg/base-drafts/pull/3684#issuecomment-633208498",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eca48af106c3_6b4f3f97a26cd96811288a8--


From nobody Sun May 24 03:14:05 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 93E993A02BB for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:14:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 b3IzJZMXb73N for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:14:02 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 66C743A0147 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:14:02 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id B7506A034A for <quic-issues@ietf.org>; Sun, 24 May 2020 03:14:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590315241; bh=H+vKOrw01ISSvydSYyOnY4FtkuuQDKQlWX1S4VGXBQg=; h=Date:From:To:Subject:From; b=YWiUCabCgr6669mxUlgLfmTvQq9AhY7cuge1fGweZikGUb/43Arl8HD79o5V0hPzk xYe3tbBlmrgvvyaiLaw4bl0n7174RHBs8Gp/cHQGu3E9/4qLl4YsK0wacQT1OUE7Vt OnHOI1EoYQOBRdL60MdtnNpoCAmBt/BQ123t+0ow=
Date: Sun, 24 May 2020 03:14:01 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/7688b6-731fd5@github.com>
Subject: [quicwg/base-drafts] a62139: Add #3527 to transport's "Since ID-27" changelog
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2JzCyFFxQOa-r3qt2PcXm2_2RMw>
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: Sun, 24 May 2020 10:14:04 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: a621390f93a50fc63319b1724b68f51ae67be976
      https://github.com/quicwg/base-drafts/commit/a621390f93a50fc63319b1724b68f51ae67be976
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add #3527 to transport's "Since ID-27" changelog


  Commit: 731fd5bf0d0d30ecd6c88e19ebdb7df5e041f43a
      https://github.com/quicwg/base-drafts/commit/731fd5bf0d0d30ecd6c88e19ebdb7df5e041f43a
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-24 (Sun, 24 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3688 from dtikhonov/202005221557-add-3527-to-changelog

Add #3527 to transport's "Since ID-27" changelog


Compare: https://github.com/quicwg/base-drafts/compare/7688b67edac0...731fd5bf0d0d


From nobody Sun May 24 03:14:08 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 EEC783A0147 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:14:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 UPIsOWK7s3uN for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:14:02 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B965A3A017E for <quic-issues@ietf.org>; Sun, 24 May 2020 03:14:02 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id AEB14520A3D for <quic-issues@ietf.org>; Sun, 24 May 2020 03:14:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590315241; bh=tz9RQ4Nrz1dUe2TYRPnBubtQ+QLwKSwCysmhlAR6SQs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=za3Ui+zcG5hLEPzQKpA25DINgfL/Nn1z3sg/0E3kJpllXmSj33x8xbyXAagGnXEVK idQVkqHpaQWLQhM/xHW+JpjCqt0s0sjWdNjbBVTvslOiN9E3wmQE/A+nmB8BRmZRiu 7DvYzNxzl15VTw/0QC+Z48PlCL4xwq5zMA/qGZoU=
Date: Sun, 24 May 2020 03:14:01 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7T2TOUYGFLRLAOAAV42YU6TEVBNHHCKKIWJY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3688/c633208616@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3688@github.com>
References: <quicwg/base-drafts/pull/3688@github.com>
Subject: Re: [quicwg/base-drafts] Add #3527 to transport's "Since ID-27" changelog (#3688)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eca48e99d818_ff13fc16d8cd96c190344"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QK6Cw6BgdBWdQimwqKMyJvaIKEE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 10:14:04 -0000

----==_mimepart_5eca48e99d818_ff13fc16d8cd96c190344
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

That wasn't flagged as a normative change, but it doesn't hurt to make sure that people don't miss it.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3688#issuecomment-633208616
----==_mimepart_5eca48e99d818_ff13fc16d8cd96c190344
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>That wasn't flagged as a normative change, but it doesn't hurt to make sure that people don't miss it.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3688#issuecomment-633208616">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK75RVK7UMDI3ZC2JOLRTDXOTANCNFSM4NIC6EUA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4XWHFIPTDL6GFV6DDRTDXOTA5CNFSM4NIC6EUKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW676KA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3688#issuecomment-633208616",
"url": "https://github.com/quicwg/base-drafts/pull/3688#issuecomment-633208616",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eca48e99d818_ff13fc16d8cd96c190344--


From nobody Sun May 24 03:14:14 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 4E91C3A017E for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:14:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 de8Vx1m01DH6 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:14:12 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0FF753A0147 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:14:12 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 54E2F8C091F for <quic-issues@ietf.org>; Sun, 24 May 2020 03:14:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590315251; bh=jcTX1yUEJrd97xrcNohFUNFkIGAHMk2swvdAd3fQhP4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xmBPtrTpw7Ib6NTeZmpze32G82Bob1EQQa4OwGM/GDhg0Tmz4KXuXCfOe6/ulE7wF cG/NXTfz01a+jmRc79VTgXm9pquRxcZVAIvJ/3m/YD703VV0RsuyBurH6L7GLfC6HN 7uOH1xDfmwXZx2FwPGxxklS9+kjr9G0Wco33Bs8Y=
Date: Sun, 24 May 2020 03:14:11 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6VCB6DATBVEHTPQ2N42YU7HEVBNHHCKKIWJY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3688/issue_event/3367815838@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3688@github.com>
References: <quicwg/base-drafts/pull/3688@github.com>
Subject: Re: [quicwg/base-drafts] Add #3527 to transport's "Since ID-27" changelog (#3688)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eca48f343645_6a613f8279ecd96c8288b9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BWOB4CknzxKHp_KM3J0Y69k3f04>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 10:14:13 -0000

----==_mimepart_5eca48f343645_6a613f8279ecd96c8288b9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3688 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3688#event-3367815838
----==_mimepart_5eca48f343645_6a613f8279ecd96c8288b9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="623449678" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3688" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3688/hovercard" href="https://github.com/quicwg/base-drafts/pull/3688">#3688</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3688#event-3367815838">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZM4UXJNSRTJORBXS3RTDXPHANCNFSM4NIC6EUA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZOWFITZTSCAJXDUSDRTDXPHA5CNFSM4NIC6EUKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZC6MVHQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3688#event-3367815838",
"url": "https://github.com/quicwg/base-drafts/pull/3688#event-3367815838",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eca48f343645_6a613f8279ecd96c8288b9--


From nobody Sun May 24 03:15:00 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 837AD3A02BD for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:14:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 J8DjBt9Io8yA for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:14:57 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 636693A02BB for <quic-issues@ietf.org>; Sun, 24 May 2020 03:14:57 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 6F66D96006F for <quic-issues@ietf.org>; Sun, 24 May 2020 03:14:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590315296; bh=9bnYu2AuGpeON9vBcSf7Ck7m/BBjRmlzHIO3Faj8Xdo=; h=Date:From:To:Subject:From; b=h9vuasq8M3MxCpmx/R9JpHRA683CTGYHgS4G33QsCn4+Qg+0O4dWumM4SAmV/gefK 9m9HSXHW1wIp2raZDfHpdxpP/WNDDcF4g57iCK44IFpd8RxwhaGM8esCzEZ2hxrIyF MJatFgPBGe6kgWdJr796cRnWqsqNV970fOlOq8Fs=
Date: Sun, 24 May 2020 03:14:56 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d45a21-fb8058@github.com>
Subject: [quicwg/base-drafts] fb8058: Script updating gh-pages from 731fd5bf. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/b2_FAWY6WhrBTMMnLSjD-Yj2jO8>
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: Sun, 24 May 2020 10:14:59 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: fb8058004116849c0522d9fa733c382f5d959e4c
      https://github.com/quicwg/base-drafts/commit/fb8058004116849c0522d9fa733c382f5d959e4c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-24 (Sun, 24 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 731fd5bf. [ci skip]



From nobody Sun May 24 03:17:04 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 95C7F3A03EA for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:17:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 tko1BKggG_sC for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 03:16:58 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BECE73A0366 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:16:58 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 1F5072C0D42 for <quic-issues@ietf.org>; Sun, 24 May 2020 03:16:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590315418; bh=AIEOpteLBkNh6tKSA7viMIt2mbajtaSeLHR3ZtXBLh4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uOYyv6co6buFKUhhmqSPiYBRn7wKjTmslDsPG7Zril8gjs8wGkTTobI8hJkqoBRGg k7p7+CBG4hRu/jETlJ0wpm4vEitsssA3PtB9sjmiPjg4jnTMYAjvrom9AQv1QdZ4l8 2C5sDU8CTFTsIf00DtLtLWB3+1oFpLET9aRR2lF4=
Date: Sun, 24 May 2020 03:16:58 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK26ENSJEMYTTRX47VV42YVJVEVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/c633208960@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eca499a10993_59093ff13d8cd96c7630cf"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ebpXXGFr1_JeXyFCcKFT6nDicSI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 10:17:02 -0000

----==_mimepart_5eca499a10993_59093ff13d8cd96c7630cf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This changes the error codes that we require, so it is technically a design change.  I think we'll need an issue to track this.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#issuecomment-633208960
----==_mimepart_5eca499a10993_59093ff13d8cd96c7630cf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>This changes the error codes that we require, so it is technically a design change.  I think we'll need an issue to track this.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3691#issuecomment-633208960">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7JILHEG37VT36UKRLRTDXZVANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ3FOJWFEUDNHLVMDDRTDXZVA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW7ABAA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691#issuecomment-633208960",
"url": "https://github.com/quicwg/base-drafts/pull/3691#issuecomment-633208960",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eca499a10993_59093ff13d8cd96c7630cf--


From nobody Sun May 24 04:01:50 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 C93F13A0846 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 04:01:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 rsYFEq3GEV6u for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 04:01:43 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5DDD83A084D for <quic-issues@ietf.org>; Sun, 24 May 2020 04:01:43 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 575ED52003A for <quic-issues@ietf.org>; Sun, 24 May 2020 04:01:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590318101; bh=2KBtNO5dNAmdzRvE7mfQxSFTjpyJZJ7nQ7ZvsDwXAWg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=07vQ6ndAAqqfFoJJBnEHtCbR6ZjjlwZJ+XdduJijzkgYmHVUTQfKoqxgXm2XmmLV7 tf1w1jbOpYnImVrC1ZVhXw/ZlexuGRMwvF5KozUDwMTJ8WJ37mbnmumXN4CH1xl8Qs nPgikwUGNH/yX8/F/mqWKND3Ihs1F0nXUuFAKTcI=
Date: Sun, 24 May 2020 04:01:41 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZYM5M5Q2GWNWQMDQV42Y2RLEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633213780@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eca5415476a1_62603fc9afacd95c868927"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jGx7PEFp-g1zncSo03QygAYOc8s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 11:01:47 -0000

----==_mimepart_5eca5415476a1_62603fc9afacd95c868927
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I tend to think that adding an error code that affects client behavior is not a good idea, when that error code is intended to indicate a handshake failure. The signal carried by an Initial packet or a Handshake packet is not authenticated, and we should be wary of using that to convey something that affects more than just that connection.

> * INVALID_TOKEN: try again immediately
> * SERVER_BUSY: try again after a few minutes
> * CONNECTION_REFUSED: don't try again for a day / week or so

In case of this example, CONNECTION_REFUSED would become an attractive tool for MITM attackers, because it can be used for preventing the client for reconnecting for as long as a day or a week.

If we need these signal, I think that they have to be carried at the application-level after the QUIC handshake concludes. In case of HTTP, we already have 503 + Retry-After header field.

To summarize, I think my position is:
* We should not add error codes that affect the client behavior after that connection gets closed.
* We might want to get rid of SERVER_BUSY, or at least state that a client cannot really tell if the server was really busy, as the signal is not authenticated.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633213780
----==_mimepart_5eca5415476a1_62603fc9afacd95c868927
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I tend to think that adding an error code that affects client behavior is not a good idea, when that error code is intended to indicate a handshake failure. The signal carried by an Initial packet or a Handshake packet is not authenticated, and we should be wary of using that to convey something that affects more than just that connection.</p>
<blockquote>
<ul>
<li>INVALID_TOKEN: try again immediately</li>
<li>SERVER_BUSY: try again after a few minutes</li>
<li>CONNECTION_REFUSED: don't try again for a day / week or so</li>
</ul>
</blockquote>
<p>In case of this example, CONNECTION_REFUSED would become an attractive tool for MITM attackers, because it can be used for preventing the client for reconnecting for as long as a day or a week.</p>
<p>If we need these signal, I think that they have to be carried at the application-level after the QUIC handshake concludes. In case of HTTP, we already have 503 + Retry-After header field.</p>
<p>To summarize, I think my position is:</p>
<ul>
<li>We should not add error codes that affect the client behavior after that connection gets closed.</li>
<li>We might want to get rid of SERVER_BUSY, or at least state that a client cannot really tell if the server was really busy, as the signal is not authenticated.</li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633213780">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2PXRJ57AJTOYBFVT3RTD5BLANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK44QCW7EWNT4QDOVD3RTD5BLA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW7BGVA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633213780",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633213780",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eca5415476a1_62603fc9afacd95c868927--


From nobody Sun May 24 04:12:06 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 739D83A0898 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 04:12:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Ri7beDK1Nrvt for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 04:12:01 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 22F163A0893 for <quic-issues@ietf.org>; Sun, 24 May 2020 04:12:01 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 4E226C6025A for <quic-issues@ietf.org>; Sun, 24 May 2020 04:12:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590318720; bh=I0P2bTSiZz8/ngHp8yvoWBOBWmGudBXT5+y6zCAcRbI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MSO26XB/5Ox0kS2qLvldHHddLyp7C7bi/6SWnVPUTwjEtsw+QLe3v664CTNkfwxfI r8bq/iwUQoGqXDD9uHKLYNnicnKbry5c12yXmp63SaM7a9PPAOm705ybliDTGN2Hzd 3FWJcdQjAYBX+cWMWvRoLvOiYQfNEHgHva+ti/E4=
Date: Sun, 24 May 2020 04:12:00 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZY3B6CZ2SX4ZOHC4542Y3YBEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633214965@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eca56803d9dc_3143fcfd70cd9601969535"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gGVtlzOTq3pHeuF_7ai8DvEyMUY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 11:12:03 -0000

----==_mimepart_5eca56803d9dc_3143fcfd70cd9601969535
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> In case of this example, CONNECTION_REFUSED would become an attractive tool for MITM attackers, because it can be used for preventing the client for reconnecting for as long as a day or a week.

We accept this risk in QUIC v1. Removing error codes to mitigate the MITM vulnerability seems like a piecemeal "solution" to a problem that can only be solved by decent cryptography.

For the MITM the easiest way is probably injection a Version Negotiation packet that indicates that there are no compatible versions between the client and the server. I'd expect most client implementations to give up a dial attempt in this case, which in effect would be very similar to the actions taken in response to a CONNECTION_REFUSED.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633214965
----==_mimepart_5eca56803d9dc_3143fcfd70cd9601969535
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>In case of this example, CONNECTION_REFUSED would become an attractive tool for MITM attackers, because it can be used for preventing the client for reconnecting for as long as a day or a week.</p>
</blockquote>
<p>We accept this risk in QUIC v1. Removing error codes to mitigate the MITM vulnerability seems like a piecemeal "solution" to a problem that can only be solved by decent cryptography.</p>
<p>For the MITM the easiest way is probably injection a Version Negotiation packet that indicates that there are no compatible versions between the client and the server. I'd expect most client implementations to give up a dial attempt in this case, which in effect would be very similar to the actions taken in response to a CONNECTION_REFUSED.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633214965">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6ADV2QHHZF25HGQVTRTD6IBANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK74LE4QKLS3HLJBW6TRTD6IBA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW7BP5I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633214965",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633214965",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eca56803d9dc_3143fcfd70cd9601969535--


From nobody Sun May 24 04:59:26 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 A5A853A0A94 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 04:59:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KkY1KBp0ZVKm for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 04:59:23 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1110F3A0A92 for <quic-issues@ietf.org>; Sun, 24 May 2020 04:59:23 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 148A56E05E4 for <quic-issues@ietf.org>; Sun, 24 May 2020 04:59:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590321562; bh=ivFz937cy+rk+oLXWDvTSVJYOLP6ZPZvWPsyibCQwfU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Wfr/Ht0vdWZpVJYZNJKvxkLg3OEiLHgf9dXVr1nZpee2mOH3MGAfxfGD6Vth3SzZL YhqucRp3SzwXyUz1zQpHuUB8x96rVNm/Rr6MVuqLvLFZm2aX+aC28ko6sGo8fLw3HY 59GLzzq9BTRCxilS/6t/Ok2VGz/F6k3fJCIJltfw=
Date: Sun, 24 May 2020 04:59:22 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3Z2X7S3Z6MIDPLD4N42ZBJVEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633220349@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eca619a1f34_49313f89b0acd9646086df"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/p4JokLrQXNI4kYUdPI2O4CzA0rQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 11:59:25 -0000

----==_mimepart_5eca619a1f34_49313f89b0acd9646086df
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

>> In case of this example, CONNECTION_REFUSED would become an attractive tool for MITM attackers, because it can be used for preventing the client for reconnecting for as long as a day or a week.
> 
> We accept this risk in QUIC v1. Removing error codes to mitigate the MITM vulnerability seems like a piecemeal "solution" to a problem that can only be solved by decent cryptography.

I disagree with that view. Handshake is never going to be disruption resistant, unless there is a shared secret. There are ways of raising the probability of endpoints having shared secret (that we discussed and postponed to v2), but there would always be a case where there is no shared secret.

We always need to limit the impact of attacker injecting signals to an unauthenticated channel.

I'd also reiterate that in HTTP we already have a way of asking clients to revisit the server after certain amount of time. TLS does not have a way of signaling that.

Assuming that HTTP developers are fine with what we have in HTTP + TLS, I do not think there is good justification to add a new feature that has negative impact on security.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633220349
----==_mimepart_5eca619a1f34_49313f89b0acd9646086df
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<blockquote>
<p>In case of this example, CONNECTION_REFUSED would become an attractive tool for MITM attackers, because it can be used for preventing the client for reconnecting for as long as a day or a week.</p>
</blockquote>
<p>We accept this risk in QUIC v1. Removing error codes to mitigate the MITM vulnerability seems like a piecemeal "solution" to a problem that can only be solved by decent cryptography.</p>
</blockquote>
<p>I disagree with that view. Handshake is never going to be disruption resistant, unless there is a shared secret. There are ways of raising the probability of endpoints having shared secret (that we discussed and postponed to v2), but there would always be a case where there is no shared secret.</p>
<p>We always need to limit the impact of attacker injecting signals to an unauthenticated channel.</p>
<p>I'd also reiterate that in HTTP we already have a way of asking clients to revisit the server after certain amount of time. TLS does not have a way of signaling that.</p>
<p>Assuming that HTTP developers are fine with what we have in HTTP + TLS, I do not think there is good justification to add a new feature that has negative impact on security.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633220349">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7TYGMF36D73NYMMILRTEDZVANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7IJAOL37XWVKO4EGDRTEDZVA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW7CZ7I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633220349",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633220349",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eca619a1f34_49313f89b0acd9646086df--


From nobody Sun May 24 05:20:51 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 C69483A0AEF for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 05:20:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 2wfnOavQuxtF for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 05:20:46 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4A9373A0AE8 for <quic-issues@ietf.org>; Sun, 24 May 2020 05:20:46 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 5DC836E003C for <quic-issues@ietf.org>; Sun, 24 May 2020 05:20:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590322845; bh=vAxYJG2bNATwrz/6D52y3y8Cd1IG11AiDhgs3zb44LE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vvkS42oo/lX9dusTfUvZgPC9uV8qEga/kb2uq+IyD+1JeX69elGYkVvhIfZYjZ4hq FEkXVMLH2PMP8Jnrdd/l+/0eL9UqKe/wf2ZqDOcUiqrO3CjNhU2PZrpPO+AAgFK5V7 gTJMwPmKAmhWTc6L7IpgqIK6Lyv7UtRSOAeCTazY=
Date: Sun, 24 May 2020 05:20:45 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5HKKD6J6MSA4ZPBG542ZDZ3EVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633222874@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eca669d4e274_30bd3f84c9ecd96037959a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Wy3hJf-52fAZHrUM9HwGh8gsgHQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 12:20:49 -0000

----==_mimepart_5eca669d4e274_30bd3f84c9ecd96037959a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I'd also reiterate that in HTTP we already have a way of asking clients to revisit the server after certain amount of time. TLS does not have a way of signaling that.

HTTP has 503 to reject request when a server is busy, and still we have SERVER_BUSY at the QUIC layer. There's a value in rejecting connection attempts before spending resources (and round trips) on a handshake.

Furthermore, there are other application protocols than HTTP. In my use case, nodes in a p2p network want to enforce a local blacklist of IP addresses. In TCP, they can easily do that by resetting the connection, and before spending any resources on the TLS handshake. Having to go through the whole QUIC handshake with a blacklisted peer before being able to reject them would be a serious regression compared to TCP. 

> Giving up one attempt is fine. Having a signal that asks to give up future connection attempts is the problem.

I'm not sure how browsers handle a Version Negotiation packet that indicates that there are no matching versions. I doubt that they'd try QUIC again for the next request just a few seconds later. Intuitively, I'd say that a longer period combined with an exponential backoff would be a reasonable thing to implement. Maybe @ianswett and @agrover can shed some light on this?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633222874
----==_mimepart_5eca669d4e274_30bd3f84c9ecd96037959a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>I'd also reiterate that in HTTP we already have a way of asking clients to revisit the server after certain amount of time. TLS does not have a way of signaling that.</p>
</blockquote>
<p>HTTP has 503 to reject request when a server is busy, and still we have SERVER_BUSY at the QUIC layer. There's a value in rejecting connection attempts before spending resources (and round trips) on a handshake.</p>
<p>Furthermore, there are other application protocols than HTTP. In my use case, nodes in a p2p network want to enforce a local blacklist of IP addresses. In TCP, they can easily do that by resetting the connection, and before spending any resources on the TLS handshake. Having to go through the whole QUIC handshake with a blacklisted peer before being able to reject them would be a serious regression compared to TCP.</p>
<blockquote>
<p>Giving up one attempt is fine. Having a signal that asks to give up future connection attempts is the problem.</p>
</blockquote>
<p>I'm not sure how browsers handle a Version Negotiation packet that indicates that there are no matching versions. I doubt that they'd try QUIC again for the next request just a few seconds later. Intuitively, I'd say that a longer period combined with an exponential backoff would be a reasonable thing to implement. Maybe <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ianswett/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</a> and <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/agrover/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/agrover">@agrover</a> can shed some light on this?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633222874">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6HYIDUWJHQWEB2EK3RTEGJ3ANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7KPF4DZT43UJ6MQ4LRTEGJ3A5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW7DNWQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633222874",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633222874",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eca669d4e274_30bd3f84c9ecd96037959a--


From nobody Sun May 24 05:50:57 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 CFA253A0B2A for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 05:50:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 5F5LoO1WWUB4 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 05:50:54 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 77ACE3A0B29 for <quic-issues@ietf.org>; Sun, 24 May 2020 05:50:54 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 5CD0E2612B1 for <quic-issues@ietf.org>; Sun, 24 May 2020 05:50:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590324653; bh=gs9HMPXi6IbKXwbwWxSZvHrG5p/3Q/D1cpCeG8yDtJI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Nq0BJ4AKruFahQZWQwOVNqFIvMreLRZg574eP5GscxCEff+CxOCxUwH7XA2684rpy WhB7u7SkT2uElkjg0hxGCGsQMKc6ZSAi/IyPVkh++MRi+DsLJNeRl/Rr6fq2TSktb9 PebMmEkutOKNLLt2hwoimvZxkqcKhgvy/yrw7mwM=
Date: Sun, 24 May 2020 05:50:53 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK36EYA7AKT623RMADN42ZHK3EVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633226437@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eca6dad16b5a_584b3fef0aacd968359221"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wMiWiOdhzZiCu_Rz0VOcInKgXuc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 12:50:56 -0000

----==_mimepart_5eca6dad16b5a_584b3fef0aacd968359221
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> HTTP has 503 to reject request when a server is busy, and still we have SERVER_BUSY at the QUIC layer. There's a value in rejecting connection attempts before spending resources (and round trips) on a handshake.

Yes, TCP or TLS can reject one attempt. QUIC is currently aligned to that, and that's fine.

> Furthermore, there are other application protocols than HTTP. In my use case, nodes in a p2p network want to enforce a local blacklist of IP addresses. In TCP, they can easily do that by resetting the connection, and before spending any resources on the TLS handshake. Having to go through the whole QUIC handshake with a blacklisted peer before being able to reject them would be a serious regression compared to TCP.

I'd point out that how aggressively browsers try connecting in QUIC depends on if they do happy-eyeballing. When browsers do happy-eyeballing, no matter how less you do in QUIC, the probability of establishing a connection always stays higher (or as high as) just doing TLS.

The question is when browsers start doing just QUIC. Would they prefer to cache previous connection failures, as a way to not even try to reconnect when a user requests doing so?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633226437
----==_mimepart_5eca6dad16b5a_584b3fef0aacd968359221
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>HTTP has 503 to reject request when a server is busy, and still we have SERVER_BUSY at the QUIC layer. There's a value in rejecting connection attempts before spending resources (and round trips) on a handshake.</p>
</blockquote>
<p>Yes, TCP or TLS can reject one attempt. QUIC is currently aligned to that, and that's fine.</p>
<blockquote>
<p>Furthermore, there are other application protocols than HTTP. In my use case, nodes in a p2p network want to enforce a local blacklist of IP addresses. In TCP, they can easily do that by resetting the connection, and before spending any resources on the TLS handshake. Having to go through the whole QUIC handshake with a blacklisted peer before being able to reject them would be a serious regression compared to TCP.</p>
</blockquote>
<p>I'd point out that how aggressively browsers try connecting in QUIC depends on if they do happy-eyeballing. When browsers do happy-eyeballing, no matter how less you do in QUIC, the probability of establishing a connection always stays higher (or as high as) just doing TLS.</p>
<p>The question is when browsers start doing just QUIC. Would they prefer to cache previous connection failures, as a way to not even try to reconnect when a user requests doing so?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633226437">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYK4KH6GZWOVKDBWO3RTEJ23ANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2IENN7A5IDAETASEDRTEJ23A5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW7EJRI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633226437",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633226437",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eca6dad16b5a_584b3fef0aacd968359221--


From nobody Sun May 24 11:01:39 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 7C4203A0CD1 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 11:01:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 yj3PN7n3B1Eh for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 11:01:29 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0FE853A0CCD for <quic-issues@ietf.org>; Sun, 24 May 2020 11:01:24 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 01FBAE012B for <quic-issues@ietf.org>; Sun, 24 May 2020 11:01:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590343284; bh=Wl8DPEtlZdFo79QA3iXOHTNfklmarjgWZzZdWQjzg/M=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=mdZ1rrBXUevRKBH22GOtBDOY3wMnAYgI3NgnLD+gnmfV6S5L0f3lImjei3Nqfxi8Q Mzn186R3lPpO4AsskEXLT4irOn6rwS68wERKBoOLZNs8gdQyCKzYHlB8r7B63CvwGY CHhv2UYrWBhp1CuzpidvF1wWE+6ytES7sDg1t14g=
Date: Sun, 24 May 2020 11:01:23 -0700
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2BWMRAAAT5AVIA4BN422LXHEVBNHHCKIKQA4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3686/review/417378833@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3686@github.com>
References: <quicwg/base-drafts/pull/3686@github.com>
Subject: Re: [quicwg/base-drafts] Forgeries likely exhaust TWO keys (#3686)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecab673e74c1_7f2e3fccf10cd96c55572"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chris-wood
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fUd7Jk-BxIUo9Y_3nfMWkIaV_jg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 24 May 2020 18:01:37 -0000

----==_mimepart_5ecab673e74c1_7f2e3fccf10cd96c55572
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@chris-wood approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3686#pullrequestreview-417378833
----==_mimepart_5ecab673e74c1_7f2e3fccf10cd96c55572
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@chris-wood</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3686#pullrequestreview-417378833">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7XDYPZSPTE27PBRXDRTFOHHANCNFSM4NHO3H3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7I7X44PDQ4Z5U4QT3RTFOHHA5CNFSM4NHO3H3KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDQLEEI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3686#pullrequestreview-417378833",
"url": "https://github.com/quicwg/base-drafts/pull/3686#pullrequestreview-417378833",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecab673e74c1_7f2e3fccf10cd96c55572--


From nobody Sun May 24 17:32:28 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 12FF53A0E65 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 17:32:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 izx3AJIa88Eb for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 17:32:23 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A4BBC3A0E60 for <quic-issues@ietf.org>; Sun, 24 May 2020 17:32:23 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 3020E6E0911 for <quic-issues@ietf.org>; Sun, 24 May 2020 17:32:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590366742; bh=ijjAhXz/HsomKoUVpUb3OY4xFnW3HlFSDM09rsNqiR4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HOCSQYOKv1qBQPhadCzpb4eXzAGA7jKeusv2b3lVSpvA3nyrwq8vQJUh6LgM3D9VT TJg2PnF81VAtca1t6H3AxCjDgZWrtdUaH1YYkhbeaHyxQnNyGpnT+EM+giRXkvEczl 05h3JSpvtlSgibIVHHmnRWkbxJdlhWsPNdHDUgww=
Date: Sun, 24 May 2020 17:32:22 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYHPBHLEOYZCR6ZE6N423ZRNEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633324106@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecb121621527_6f1e3fef058cd960661442"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OvjtDC32Jdfwnkbgc0GzDfb7OnM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 00:32:26 -0000

----==_mimepart_5ecb121621527_6f1e3fef058cd960661442
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As a way of moving forward, I'd propose renaming SERVER_BUSY to CONNECTION_REFUSED, with no recommendation on how the client should react to that.

The rationale behind providing no recommendation is as stated above. QUIC needs to be strong against MITM attacks, at least as TLS over TCP is. TLS over TCP does not have an error code that tells the client to refrain from retrying for some amount of time. To achieve parity, we cannot have that. AFAIK, our experience with HTTPS tells us that there is no need for such an error code.

The rationale behind the renaming is that at the moment we do not have a generic error code for refusing connections, even though we have SERVER_BUSY, which indicates a specific reason of refusing a connection. Therefore, we need CONNECTION_REFUSED. We can rename SERVER_BUSY to CONNECTION_REFUSED. SERVER_BUSY does not need to be preserved, since, as stated, the client behavior cannot vary depending on an unauthenticated error code.

WDYT?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633324106
----==_mimepart_5ecb121621527_6f1e3fef058cd960661442
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>As a way of moving forward, I'd propose renaming SERVER_BUSY to CONNECTION_REFUSED, with no recommendation on how the client should react to that.</p>
<p>The rationale behind providing no recommendation is as stated above. QUIC needs to be strong against MITM attacks, at least as TLS over TCP is. TLS over TCP does not have an error code that tells the client to refrain from retrying for some amount of time. To achieve parity, we cannot have that. AFAIK, our experience with HTTPS tells us that there is no need for such an error code.</p>
<p>The rationale behind the renaming is that at the moment we do not have a generic error code for refusing connections, even though we have SERVER_BUSY, which indicates a specific reason of refusing a connection. Therefore, we need CONNECTION_REFUSED. We can rename SERVER_BUSY to CONNECTION_REFUSED. SERVER_BUSY does not need to be preserved, since, as stated, the client behavior cannot vary depending on an unauthenticated error code.</p>
<p>WDYT?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633324106">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6NK2LJPCNTD6CG633RTG4BNANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6GT2ZZ4GPYK3RIXBLRTG4BNA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEW74ESQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633324106",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633324106",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecb121621527_6f1e3fef058cd960661442--


From nobody Sun May 24 20:41:04 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 447943A0A90 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 20:41:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 J72A5UZvinfx for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 20:41:00 -0700 (PDT)
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A4DD13A0A93 for <quic-issues@ietf.org>; Sun, 24 May 2020 20:41:00 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id DD829260199 for <quic-issues@ietf.org>; Sun, 24 May 2020 20:40:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590378059; bh=5H+ZlpKuoxLyTzY8ew7WDKOwh0eoJcnVvzCSbNCODkw=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Lxk2aLQyNNuyiVgC6y5jG2QP6pq4vNz2ZwBpHehsh1Wsup6hYUDTDG88KkFKx6Wso 5UISiVOHyVoIleJWYlhu96gAqAIrH8+9HjarpnwT4ZvTSYvqdeo7wlW/5y6+KFCjCC ncpsQIFOTWMZeG11RY7lvDZ3oUoVhfggm+lfrJuQ=
Date: Sun, 24 May 2020 20:40:59 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6CFCWDXX2MUB3KJYF424PUXEVBNHHCKMO44M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3692@github.com>
Subject: [quicwg/base-drafts] Deduplication window suggested by RFC 4303 is insufficient (#3692)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecb3e4b97f07_7adc3fbc484cd9688867e7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wesHylhHGfZ4KE880SXpT_F00TY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 03:41:02 -0000

----==_mimepart_5ecb3e4b97f07_7adc3fbc484cd9688867e7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

[Section 12.3 of the transport draft](https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#section-12.3-11) requires deduplication, delegating the details to RFC 4303. I am not sure if that is enough.

IIUC, the difference between RFC 4303 and QUIC is that in case of QUIC, packets are sent using multiple paths.

Consider the case of a client connect through Wi-fi, probing a 3G network. The latency of Wi-fi could be much shorter, and the bandwidth could be high. In such case, the requirement on the deduplication window becomes high: the window needs to cover packet numbers across multiple PTOs (where PTO is calculated from the RTT of the Wi-fi).

I do not think that this case is covered by RFC 4303.

IMO, we need to at least clarify this corner case exists, otherwise, we might end up seeing servers not responding to probes sent on cellular networks, and clients failing to migrate due to that failure.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3692
----==_mimepart_5ecb3e4b97f07_7adc3fbc484cd9688867e7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a href="https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#section-12.3-11" rel="nofollow">Section 12.3 of the transport draft</a> requires deduplication, delegating the details to RFC 4303. I am not sure if that is enough.</p>
<p>IIUC, the difference between RFC 4303 and QUIC is that in case of QUIC, packets are sent using multiple paths.</p>
<p>Consider the case of a client connect through Wi-fi, probing a 3G network. The latency of Wi-fi could be much shorter, and the bandwidth could be high. In such case, the requirement on the deduplication window becomes high: the window needs to cover packet numbers across multiple PTOs (where PTO is calculated from the RTT of the Wi-fi).</p>
<p>I do not think that this case is covered by RFC 4303.</p>
<p>IMO, we need to at least clarify this corner case exists, otherwise, we might end up seeing servers not responding to probes sent on cellular networks, and clients failing to migrate due to that failure.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3692">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7CK4D6OXNFZH3HIDDRTHSEXANCNFSM4NJF7H7Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYACQLXFG64RSWLK2DRTHSEXA5CNFSM4NJF7H72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJR3TRQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3692",
"url": "https://github.com/quicwg/base-drafts/issues/3692",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecb3e4b97f07_7adc3fbc484cd9688867e7--


From nobody Sun May 24 21:52:51 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 64BB63A0B4C for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 21:52:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 a-W25BlvTsxo for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 21:52:47 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3F9CC3A0B48 for <quic-issues@ietf.org>; Sun, 24 May 2020 21:52:47 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id B51398C0B76 for <quic-issues@ietf.org>; Sun, 24 May 2020 21:52:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590382365; bh=Ws1TyUPBzzQZ2xoGsH5gtdzr34mtaHOp7OnCYwgk4dA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZIbknTCdl/+k5UpIXC9116kyRirh0frXsztHWIbe5nwhX0Uu6EyLERhpiycJWvd17 TScArt7xykqAXpoJ00SEpICuurYO5jOS+LCM77nqDe8XnjtEs0Ae64r7sBfBwG3h09 vKmvXfG6100W7IV407syWvMJ2ePDWwX9rHYNhZXI=
Date: Sun, 24 May 2020 21:52:45 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK32EZ3ODX5VLX3UKLF424YB3EVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633374942@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecb4f1da3e80_78b63fddebccd96418089c4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mH_z5zhvO1EDdsE68rXF-Ro6RaA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 04:52:50 -0000

----==_mimepart_5ecb4f1da3e80_78b63fddebccd96418089c4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I don't think that renaming an existing error will solve my problem. Otherwise, I would've just used that error...

The point I was trying to make here is that clients will already make decisions about future connection attempts based on unauthenticated information, both sent in CONNECTION_CLOSE error codes as well as in Version Negotiation packets.

Adding one more error doesn't seem to exacerbate that situation, while at the same time enabling a way of blacklisting IP addresses that was possible with TCP and is currently not possible using QUIC.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633374942
----==_mimepart_5ecb4f1da3e80_78b63fddebccd96418089c4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I don't think that renaming an existing error will solve my problem. Otherwise, I would've just used that error...</p>
<p>The point I was trying to make here is that clients will already make decisions about future connection attempts based on unauthenticated information, both sent in CONNECTION_CLOSE error codes as well as in Version Negotiation packets.</p>
<p>Adding one more error doesn't seem to exacerbate that situation, while at the same time enabling a way of blacklisting IP addresses that was possible with TCP and is currently not possible using QUIC.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633374942">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYSJKTEBVIITDABANLRTH2R3ANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5YZSKTPRA2I7JHQNTRTH2R3A5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXAIRXQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633374942",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633374942",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecb4f1da3e80_78b63fddebccd96418089c4--


From nobody Sun May 24 22:34:07 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 D40573A0C3E for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 22:33:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 XaOFBfqJMwaU for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 22:33:55 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 109F43A0BFC for <quic-issues@ietf.org>; Sun, 24 May 2020 22:33:54 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 6A05E1210E1 for <quic-issues@ietf.org>; Sun, 24 May 2020 22:33:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590384834; bh=muA33XUBHoX4vXI50Nwxd3hKkdE1GXH6nwQ2NhSpLGw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=b+kFPdj6ZdkhfrUZZBsG+Jvmqn8NISnvDqPJ7EjpW6lvVyyIURjNPlYkugu8lr1ap +uC6wq/wnqWBYxvJqFWSTJgDez2C2Q+n4At+/MnxfxD/K+FcEeQnrAwSGxA9PirBlC CzrxGA5q6+NGOjMJ9YDGzF7XP3VPUDjL9e24YUmQ=
Date: Sun, 24 May 2020 22:33:54 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYRLMJEODVQPXGDW3F42444FEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633384834@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecb58c223c76_27a53fa93c2cd95c20728b0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aX1Zk8TUrVUvxUPQ1OTwg4TQUtk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 05:34:06 -0000

----==_mimepart_5ecb58c223c76_27a53fa93c2cd95c20728b0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I don't think that renaming an existing error will solve my problem.

As stated, my view is that your problem (of sending a signal that affects future connections) should only be solved by sending something after the handshake succeeds. And for HTTP, we already have that signal (i.e. 503 + Retry-After). Therefore, defining such signal does not have to be done in QUICv1.

> The point I was trying to make here is that clients will already make decisions about future connection attempts based on unauthenticated information, both sent in CONNECTION_CLOSE error codes as well as in Version Negotiation packets.

I disagree with that view. If the specification can be read as such, then I think we need to make changes. A client should refrain from using an unauthenticated signal for determining what to do with future connection attempts. It does not matter what that unauthenticated signal is (e.g., an error code in Initial packet, failed version negotiation).

Any unsuccessful handshake attempt should be considered as an error of that particular attempt. Otherwise, QUIC handshake becomes prone to MITM attacks than TLS over TCP.

> Adding one more error doesn't seem to exacerbate that situation, while at the same time enabling a way of blacklisting IP addresses that was possible with TCP and is currently not possible using QUIC.

If we are to agree that clients should not use an unauthenticated error code in determining what to do in the future, there is no point in having multiple error codes indicating that the server has deliberately refused a handshake. It is sufficient to have just one error code that let's the server say, hey, nothing is wrong with us, but I refuse to accept a connection.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633384834
----==_mimepart_5ecb58c223c76_27a53fa93c2cd95c20728b0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>I don't think that renaming an existing error will solve my problem.</p>
</blockquote>
<p>As stated, my view is that your problem (of sending a signal that affects future connections) should only be solved by sending something after the handshake succeeds. And for HTTP, we already have that signal (i.e. 503 + Retry-After). Therefore, defining such signal does not have to be done in QUICv1.</p>
<blockquote>
<p>The point I was trying to make here is that clients will already make decisions about future connection attempts based on unauthenticated information, both sent in CONNECTION_CLOSE error codes as well as in Version Negotiation packets.</p>
</blockquote>
<p>I disagree with that view. If the specification can be read as such, then I think we need to make changes. A client should refrain from using an unauthenticated signal for determining what to do with future connection attempts. It does not matter what that unauthenticated signal is (e.g., an error code in Initial packet, failed version negotiation).</p>
<p>Any unsuccessful handshake attempt should be considered as an error of that particular attempt. Otherwise, QUIC handshake becomes prone to MITM attacks than TLS over TCP.</p>
<blockquote>
<p>Adding one more error doesn't seem to exacerbate that situation, while at the same time enabling a way of blacklisting IP addresses that was possible with TCP and is currently not possible using QUIC.</p>
</blockquote>
<p>If we are to agree that clients should not use an unauthenticated error code in determining what to do in the future, there is no point in having multiple error codes indicating that the server has deliberately refused a handshake. It is sufficient to have just one error code that let's the server say, hey, nothing is wrong with us, but I refuse to accept a connection.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633384834">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK43D6M5OIHUQSFA5DDRTH7MFANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5EGCEMBBBBZDTJHULRTH7MFA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXAK7AQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633384834",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633384834",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecb58c223c76_27a53fa93c2cd95c20728b0--


From nobody Sun May 24 23:02:03 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 6F3243A0BF0 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 23:02:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Zwid9K1gMDpj for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 23:01:58 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 056EC3A0477 for <quic-issues@ietf.org>; Sun, 24 May 2020 23:01:57 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id CCEF46E01FC for <quic-issues@ietf.org>; Sun, 24 May 2020 23:01:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590386516; bh=eJw/qCo38S20uPWbC03Y+cgHNxRy1t41XE4ZKAixOPg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bEc9wlU+1393yeh9a92aLaB09sECkq3bDusRQcnJzOTJsN163opVimwLY4AlnPBPX /0XBjNhABLhI88hk9PBeqE4ovf/NUfPy6kgE3g6JoWpYrYnnAwqV9e6xybSQK7h3YD XqoWB2kqX2I3B1Dzf8bm3NkqSPDki0+OYcJCra28=
Date: Sun, 24 May 2020 23:01:56 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK26LJI2VEGXPF6XVYV425AFJEVBNHHCKMO44M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3692/633392953@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3692@github.com>
References: <quicwg/base-drafts/issues/3692@github.com>
Subject: Re: [quicwg/base-drafts] Deduplication window suggested by RFC 4303 is insufficient (#3692)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecb5f54bbaf7_44d23f8050acd964404f4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KrTVFtw2XMZTGu1geXjUSngAj6g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 06:02:01 -0000

----==_mimepart_5ecb5f54bbaf7_44d23f8050acd964404f4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

As a fix, I think we should remove reference to RFC 4303, and state that an endpoint SHOULD be capable of deduplicating packets that are received across more than half the largest RTT that the endpoint intends to support.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3692#issuecomment-633392953
----==_mimepart_5ecb5f54bbaf7_44d23f8050acd964404f4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>As a fix, I think we should remove reference to RFC 4303, and state that an endpoint SHOULD be capable of deduplicating packets that are received across more than half the largest RTT that the endpoint intends to support.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3692#issuecomment-633392953">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZRXBTR6EKHAGBLVQDRTICVJANCNFSM4NJF7H7Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4PKBS3AYD2FYV7ZUDRTICVJA5CNFSM4NJF7H72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXAM6OI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3692#issuecomment-633392953",
"url": "https://github.com/quicwg/base-drafts/issues/3692#issuecomment-633392953",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecb5f54bbaf7_44d23f8050acd964404f4--


From nobody Sun May 24 23:36:25 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 626DF3A0C39 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 23:36:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 LmGfVfdSc-3d for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 23:36:20 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 23B2D3A0907 for <quic-issues@ietf.org>; Sun, 24 May 2020 23:36:19 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id B05181C068D for <quic-issues@ietf.org>; Sun, 24 May 2020 23:36:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590388578; bh=UXILjoGBukCLm2deEyo0dhXkRPk2rHMGzolzsMRgfQk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qkY0r39tidl9WEC/jG/kqPUVbVs/uMaTlaeg/AKXANUX0upP89swz4NACH7wh7vY9 8OXL8/y1S0ZiFZQ4jmfx3QIk6UZlQNcMtMOZAEZsdvbB3jSaBtfgEWJo0chTCIOfXG QLgcfO/nN62S1O++rwzywi0tXo/9GOG/ES5j7NN8=
Date: Sun, 24 May 2020 23:36:18 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4GOJ6OPYWRICJBH3F425EGFEVBNHHCKMO44M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3692/633404227@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3692@github.com>
References: <quicwg/base-drafts/issues/3692@github.com>
Subject: Re: [quicwg/base-drafts] Deduplication window suggested by RFC 4303 is insufficient (#3692)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecb6762a0d6f_44f3fe9d6ccd96826475c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9yqnLlmD4FjL-g1qgsNAmA2zz0c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 06:36:23 -0000

----==_mimepart_5ecb6762a0d6f_44f3fe9d6ccd96826475c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree that RFC 4303 is showing its age here.  32 packets is probably woefully inadequate here.  But there is an additional insight that is important: you need to drop all packets older than the oldest packet you are individually tracking or you are vulnerable to duplication attack.  It's a little awkward restating that.

It's not obvious that you need to allow for an increase of half of the difference between the current min_rtt and some maximum value either, so it is worth saying that.  Noting that the collective packet rate on all paths affects any limit is similarly non-intuitive.

The nice thing about this is that the most obvious packet-tracking structures (aside perhaps from those that are subject to DoS) are not susceptible to this problem.  For instance, many people are tracking ranges and limiting the total number of ranges.  If you do that, you only run into problems after the number of slow probes sent within one of these extra-long round trip times exceeds the number of ranges the receiver is tracking.  Most implementations are tracking more ranges than there are packets in an initial congestion window, so you won't get issues.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3692#issuecomment-633404227
----==_mimepart_5ecb6762a0d6f_44f3fe9d6ccd96826475c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I agree that RFC 4303 is showing its age here.  32 packets is probably woefully inadequate here.  But there is an additional insight that is important: you need to drop all packets older than the oldest packet you are individually tracking or you are vulnerable to duplication attack.  It's a little awkward restating that.</p>
<p>It's not obvious that you need to allow for an increase of half of the difference between the current min_rtt and some maximum value either, so it is worth saying that.  Noting that the collective packet rate on all paths affects any limit is similarly non-intuitive.</p>
<p>The nice thing about this is that the most obvious packet-tracking structures (aside perhaps from those that are subject to DoS) are not susceptible to this problem.  For instance, many people are tracking ranges and limiting the total number of ranges.  If you do that, you only run into problems after the number of slow probes sent within one of these extra-long round trip times exceeds the number of ranges the receiver is tracking.  Most implementations are tracking more ranges than there are packets in an initial congestion window, so you won't get issues.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3692#issuecomment-633404227">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYXPNTQH7D6PKIJM4LRTIGWFANCNFSM4NJF7H7Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5SIPHPIABUGAEOCM3RTIGWFA5CNFSM4NJF7H72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXAPWQY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3692#issuecomment-633404227",
"url": "https://github.com/quicwg/base-drafts/issues/3692#issuecomment-633404227",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecb6762a0d6f_44f3fe9d6ccd96826475c--


From nobody Sun May 24 23:50:56 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 32B083A0C54 for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 23:50:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 3uK4hGPRFlky for <quic-issues@ietfa.amsl.com>; Sun, 24 May 2020 23:50:51 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 18AC33A0C53 for <quic-issues@ietf.org>; Sun, 24 May 2020 23:50:51 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id DEF8B2C21C8 for <quic-issues@ietf.org>; Sun, 24 May 2020 23:50:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590389449; bh=+nAiOHDdHDf3Vd5zseTCPq2wjOdhN/rYFUBfEFLzLK8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2cb/vBUAPv3x8JSCDA0egVE/UVgAwj0hzsjvZz3AFGtP3FoEeZyeukTz8At0bAo7Q m6J8N+VATtWIvhvADuA5P8cHvPBkgZvPYCVTnmHGfXBtE/vNhpLYVilkdMqgj8Jd1C o6EzA0u/L13ZLDGXgVSPRdZ7NCKuuFEFREL8wCPo=
Date: Sun, 24 May 2020 23:50:49 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5WMUF6IEQOTJCVRVN425F4TEVBNHHCKMO44M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3692/633409284@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3692@github.com>
References: <quicwg/base-drafts/issues/3692@github.com>
Subject: Re: [quicwg/base-drafts] Deduplication window suggested by RFC 4303 is insufficient (#3692)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecb6ac9cfbb5_2f2b3fecd7acd95c1129f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tCtHUixjncs_pf2aBk7sY6ZcctE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 06:50:54 -0000

----==_mimepart_5ecb6ac9cfbb5_2f2b3fecd7acd95c1129f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I agree that RFC 4303 is showing its age here. 32 packets is probably woefully inadequate here. But there is an additional insight that is important: you need to drop all packets older than the oldest packet you are individually tracking or you are vulnerable to duplication attack. It's a little awkward restating that.

Regarding the insight, I agree that we need to state that. We can site RFC 4303 as part of that attempt, even though we need to refrain from suggesting that the design document in RFC 4303 works for QUIC.

As you state, the practical advice we'd better provide is that an endpoint can retain ranges of packets. The number of ranges that an endpoint should retain is questionable, but hopefully, endpoints would make a sensible choice.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3692#issuecomment-633409284
----==_mimepart_5ecb6ac9cfbb5_2f2b3fecd7acd95c1129f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>I agree that RFC 4303 is showing its age here. 32 packets is probably woefully inadequate here. But there is an additional insight that is important: you need to drop all packets older than the oldest packet you are individually tracking or you are vulnerable to duplication attack. It's a little awkward restating that.</p>
</blockquote>
<p>Regarding the insight, I agree that we need to state that. We can site RFC 4303 as part of that attempt, even though we need to refrain from suggesting that the design document in RFC 4303 works for QUIC.</p>
<p>As you state, the practical advice we'd better provide is that an endpoint can retain ranges of packets. The number of ranges that an endpoint should retain is questionable, but hopefully, endpoints would make a sensible choice.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3692#issuecomment-633409284">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ICI2L2CU5RUNKECLRTIIMTANCNFSM4NJF7H7Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3QJ3T7TLEYSONDX53RTIIMTA5CNFSM4NJF7H72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXAQ6BA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3692#issuecomment-633409284",
"url": "https://github.com/quicwg/base-drafts/issues/3692#issuecomment-633409284",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecb6ac9cfbb5_2f2b3fecd7acd95c1129f--


From nobody Mon May 25 06:31:02 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 AD1823A0BC0 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 06:30:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 dy3pYVDilOnw for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 06:30:57 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 65C663A0BBA for <quic-issues@ietf.org>; Mon, 25 May 2020 06:30:57 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 1C16D8C0033 for <quic-issues@ietf.org>; Mon, 25 May 2020 06:30:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590413456; bh=FcpGdKUTi/hb0R36FWccka+8+yA4WG+4DIq02aE/Y9s=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=rEVQAUmptDnwA0E1EbumtwdxeKBI2wfappO6gDrS6i7iGIG/MWXAgKZm/WCXHJVr8 uyXQIoe6QdfuAQiPWjYpTKJmL9RaHYOWcy8O3DbGraPyYoRvVJbGEQ/vxoXJ9n0FbF YlrqOKlrBub8/HunnkxS1wU0DpvOuvfoVobepsfU=
Date: Mon, 25 May 2020 06:30:56 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6JV66QUNU6K3YT2XN426UZBEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693@github.com>
Subject: [quicwg/base-drafts] Update draft-ietf-quic-transport.md (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecbc890c58a_3e233fa8446cd9608503b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iie_u2W3r59Cgz8ZFxfq2r7_rww>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 13:31:00 -0000

----==_mimepart_5ecbc890c58a_3e233fa8446cd9608503b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This set of changes seeks to:
* Complete the transfer of DPLPMTUD text from the DPLPMTUD-RFC-to-be to this ID.
* Separate PMTUD from DPLPMTUD where they differ.
* Seek consistent language for packet sizes within these sections.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3693

-- Commit Summary --

  * Update draft-ietf-quic-transport.md

-- File Changes --

    M draft-ietf-quic-transport.md (142)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3693.patch
https://github.com/quicwg/base-drafts/pull/3693.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693

----==_mimepart_5ecbc890c58a_3e233fa8446cd9608503b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This set of changes seeks to:</p>
<ul>
<li>Complete the transfer of DPLPMTUD text from the DPLPMTUD-RFC-to-be to this ID.</li>
<li>Separate PMTUD from DPLPMTUD where they differ.</li>
<li>Seek consistent language for packet sizes within these sections.</li>
</ul>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3693'>https://github.com/quicwg/base-drafts/pull/3693</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Update draft-ietf-quic-transport.md</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3693/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (142)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3693.patch'>https://github.com/quicwg/base-drafts/pull/3693.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3693.diff'>https://github.com/quicwg/base-drafts/pull/3693.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3OW43L474MNRTE3EDRTJXJBANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2I36CWN6FWE6OA6YDRTJXJBA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJWDBWQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693",
"url": "https://github.com/quicwg/base-drafts/pull/3693",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecbc890c58a_3e233fa8446cd9608503b--


From nobody Mon May 25 07:42:08 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 B62B83A0CEE for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 07:42:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 d99Tlsc9BIQL for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 07:42:04 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 03B593A0CEA for <quic-issues@ietf.org>; Mon, 25 May 2020 07:42:03 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 198132C102E for <quic-issues@ietf.org>; Mon, 25 May 2020 07:42:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590417723; bh=6VdHRqWcgnJ4IzLSER8mm2ai9Rd/BFWoBVYE06k41nU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=F8bh9DahTiuJgbwfI/nxVG6HKj0ZVKL9ZS6cj9ogf7wfNPWJbD70EV0mX6Mcl/v23 906VCb2Fd/NuaLMavqf38I6HbreXKJ9oBVcGB4NV5fmKqFIA7qCCFus2QjGimZ4e6f qHlgHAwgvB5FrWLAUwsYKmHnzVpMagzCx3MY9Ik8=
Date: Mon, 25 May 2020 07:42:03 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3YFSQ3XXFWVCFB7AN4265DXEVBNHHCHVTIIM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3585/633604014@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3585@github.com>
References: <quicwg/base-drafts/issues/3585@github.com>
Subject: Re: [quicwg/base-drafts] Text on ECN probing (#3585)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecbd93ba909_58903faf3e4cd95c18553a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GgGfvYl4C93fqvpVu1RdymADEVs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 14:42:06 -0000

----==_mimepart_5ecbd93ba909_58903faf3e4cd95c18553a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

MT's proposed editorial change in #3669 appears to clarify the intent of the current draft text. 

Perhaps additional context and discursive text (as proposed in Mirja's #3454) is more suited to the Applicability draft?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3585#issuecomment-633604014
----==_mimepart_5ecbd93ba909_58903faf3e4cd95c18553a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>MT's proposed editorial change in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621329616" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3669" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3669/hovercard" href="https://github.com/quicwg/base-drafts/pull/3669">#3669</a> appears to clarify the intent of the current draft text.</p>
<p>Perhaps additional context and discursive text (as proposed in Mirja's <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="564743456" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3454" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3454/hovercard" href="https://github.com/quicwg/base-drafts/pull/3454">#3454</a>) is more suited to the Applicability draft?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3585#issuecomment-633604014">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZB6DQ27PHXPQXPJFLRTJ7TXANCNFSM4MJ5KMKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2Q5EGKLTJ3FDXLZ53RTJ7TXA5CNFSM4MJ5KMK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXCAPLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-633604014",
"url": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-633604014",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecbd93ba909_58903faf3e4cd95c18553a--


From nobody Mon May 25 10:31:23 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 34E2B3A0E54 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 10:31:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 PoCNM7ksd9J6 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 10:31:17 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F3EFC3A0E49 for <quic-issues@ietf.org>; Mon, 25 May 2020 10:31:16 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 1A66C6E1333 for <quic-issues@ietf.org>; Mon, 25 May 2020 10:31:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590427876; bh=GzcN5XaN4KJZD7eTLX0J8GebBjcSNkyaMrWR7ppOfgY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=whmhpdRNskV1/Kx+sZ1OHKQ7I3eAo6rPBRqR9zYfPbjBlhkZVJIPlQgauZo8d0+gH kMV6lLKVVO9s4wMJG9y2mVm0N5TrZCNPWC4BBWYN18TT31dU4XHDKfONm2ZEDHxUSt z2qOnwjXud1YqdU7sKjjrI4b90cEZdVvMCRxlQeg=
Date: Mon, 25 May 2020 10:31:16 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK74R4DCEO6OAJMTPF5427Q6JEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633662016@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc00e49f57_4bb13fd42a4cd9641638e0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Th3i-yp9N3sfcbODG3667Qo8c_w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 17:31:21 -0000

----==_mimepart_5ecc00e49f57_4bb13fd42a4cd9641638e0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho I believe it's up to the client as to how unauthenticated signals are used.

There are a lot of ways to interrupt a QUIC handshake early on, and this is one of many.

Chrome does exponential backoff with a 5 minute time period anytime the handshake fails, whether it's due to VN, connection close, handshake timeout, etc.  In practice, VN and Alt-Svc typically agree, so VN is very rare and connection closes are more common.

I can't argue Chrome's algorithm is optimal, but if handshakes failed in the recent past, it seems sub-optimal to try QUIC again immediately.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633662016
----==_mimepart_5ecc00e49f57_4bb13fd42a4cd9641638e0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/kazuho/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a> I believe it's up to the client as to how unauthenticated signals are used.</p>
<p>There are a lot of ways to interrupt a QUIC handshake early on, and this is one of many.</p>
<p>Chrome does exponential backoff with a 5 minute time period anytime the handshake fails, whether it's due to VN, connection close, handshake timeout, etc.  In practice, VN and Alt-Svc typically agree, so VN is very rare and connection closes are more common.</p>
<p>I can't argue Chrome's algorithm is optimal, but if handshakes failed in the recent past, it seems sub-optimal to try QUIC again immediately.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633662016">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7ORMIV4GB3CDX4VV3RTKTOJANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY6NUPEDKJP3KTJDFLRTKTOJA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXCOUQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633662016",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633662016",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecc00e49f57_4bb13fd42a4cd9641638e0--


From nobody Mon May 25 10:51:32 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 0D20C3A0E93 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 10:51:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 PPTwbX5fZCSe for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 10:51:28 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0D6BF3A0E8F for <quic-issues@ietf.org>; Mon, 25 May 2020 10:51:24 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id F2D54960790 for <quic-issues@ietf.org>; Mon, 25 May 2020 10:51:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590429082; bh=BqI/HGFPPqB3qFNzmRkZ0oKojjiBKX9Yah1mViZSQS4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=PpD+Wx41pRroa3JtgUmOpzcTdHAfPEC53jcQzYJoH6AeA31tfCPsuA9j+V7ueTy5F da8vHxHmx3It7lgCzowC7/3wA9kBsPjw+iMucefbatifc9ID/hIRHjIHat4FVI6e9F 3RyMc9e4fjziygxx405yuvmlAJ54XJUYQ4cnUC7I=
Date: Mon, 25 May 2020 10:51:22 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK243GT2PW7L6363JWV427TJVEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633667382@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc059ae3a7c_429a3fd5f52cd96c707742"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/j4LgtFpG1RxtXLgCl0ug2eT9bZs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 17:51:30 -0000

----==_mimepart_5ecc059ae3a7c_429a3fd5f52cd96c707742
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett I think that is a fine thing to do as long as Chrome is happy-eyeballing with TLS-over-TCP.

But as a specification, it is my understanding that happy-eyeballing is not a prerequisite. I'd assume that we'd want applications that use QUIC only to be as ignorant against unauthenticated signals as those using TLS-over-TCP is.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633667382
----==_mimepart_5ecc059ae3a7c_429a3fd5f52cd96c707742
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ianswett/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</a> I think that is a fine thing to do as long as Chrome is happy-eyeballing with TLS-over-TCP.</p>
<p>But as a specification, it is my understanding that happy-eyeballing is not a prerequisite. I'd assume that we'd want applications that use QUIC only to be as ignorant against unauthenticated signals as those using TLS-over-TCP is.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633667382">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK47ZMF57WPY7XSRQWTRTKVZVANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK46P76BBRNHKTSTH2LRTKVZVA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXCP6NQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633667382",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633667382",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecc059ae3a7c_429a3fd5f52cd96c707742--


From nobody Mon May 25 10:54:22 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 905053A0E91 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 10:54:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 LjTZbVP-8o1y for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 10:54:18 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7AA503A0E92 for <quic-issues@ietf.org>; Mon, 25 May 2020 10:54:18 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 726A96A05E4 for <quic-issues@ietf.org>; Mon, 25 May 2020 10:54:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590429257; bh=/DBnP3/v4OzLbGrCV2MPtYNeasG/+bxRls/UDLjpfNs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=TItLd5kXE5d9F3m9ZTHmYa2emSynH9m4USqkbODU6URtKTfUccXgPFJeYZErQAwZs VXdMghiiolLk0aaTmz154lYN+oYTBR9Ie/1svQ3iBqC0ajkhPyctJ8PhipieC+wdK9 /PK9PdkQ+kYPF2VqJ18HiR3twi9xqI0REkUGbDOs=
Date: Mon, 25 May 2020 10:54:17 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK73AFYOSZY7UWOBEEF427TUTEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633668248@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc06496247a_5d953fbe842cd968256573"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aXWokGbCOZFvX8rJVUIrxmhwVUk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 17:54:20 -0000

----==_mimepart_5ecc06496247a_5d953fbe842cd968256573
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

If only QUIC is used, then I agree the behavior should match that of TLS over TCP.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633668248
----==_mimepart_5ecc06496247a_5d953fbe842cd968256573
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>If only QUIC is used, then I agree the behavior should match that of TLS over TCP.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633668248">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK47HBWH3CFXFUGG2ADRTKWETANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4522VXVLMFYHLMMFTRTKWETA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXCQFGA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633668248",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633668248",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecc06496247a_5d953fbe842cd968256573--


From nobody Mon May 25 11:29:37 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 493BD3A0F1B for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 11:29:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.099
X-Spam-Level: 
X-Spam-Status: No, score=-3.099 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 Qqo3ZXl7x2bK for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 11:29:33 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 669933A0F19 for <quic-issues@ietf.org>; Mon, 25 May 2020 11:29:33 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 4583B5204D5 for <quic-issues@ietf.org>; Mon, 25 May 2020 11:29:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590431372; bh=Kb9fJRTdr97qxwkzID2MX5UCZEbxdP3kHY128eXPBt0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bJmMHJGF6KCdXtudLIRuhK8gEU+2c6LRbKf3nKnaWujK82XQCHjYRx00ZxMfX9Tov kHlug1cLeErri7b48CbwKSBXupleiuzLdc8Po/UfxcVFIFGL30dSmWN5h2T6TBzMih cS/Lz1nfqJPK+Asc6w4cVM6HeljNJJCMu66WQk5s=
Date: Mon, 25 May 2020 11:29:32 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6LF36DC2RIFSKO3N5427XYZEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/417836536@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Update draft-ietf-quic-transport.md (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc0e8c34a51_72fa3fc3702cd968234090"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EtmsSixiwDEGkuusuS5VzLLfz3k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 18:29:36 -0000

----==_mimepart_5ecc0e8c34a51_72fa3fc3702cd968234090
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.

Thanks for updating this.  I'm worried there are some unintended changes in this PR, I've found a few so far.

> @@ -3797,17 +3797,23 @@ later time in the connection.
 The QUIC packet size includes the QUIC header and protected payload, but not the
 UDP or IP header.
 
+QUIC defines the minimum QUIC packet size as at least 1280 bytes.

```suggestion
QUIC depends upon a minimum packet size as at least 1280 bytes.
```

>  A client MUST expand the payload of all UDP datagrams carrying Initial packets
-to at least 1200 bytes, by adding PADDING frames to the Initial packet or by
+to at least the minimum QUIC packet size, by adding PADDING frames to the Initial packet or by

Keep this as 1200 bytes.

```suggestion
to at least 1200 bytes, by adding PADDING frames to the Initial packet or by
```

>  In the absence of these mechanisms, QUIC endpoints SHOULD NOT send IP packets
-larger than 1280 bytes. Assuming the minimum IP header size, this results in a
-QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4. A QUIC
-implementation MAY be more conservative in computing the QUIC maximum packet
-size to allow for unknown tunnel overheads or IP header options/extensions.
+larger than the minimum QUIC packet size. 
+
+All QUIC
+packets (except for PMTUD/DPLPMTUD probe packets) SHOULD be sized to fit within the
+maximum packet size to avoid the packet being fragmented or dropped
+{{?RFC8085}}.
+
+If a QUIC endpoint determines that the PMTU between any pair of local and remote
+IP addresses has fallen below the minimum QUIC packet size, it MUST immediately 

Please keep the existing wording of "smallest allowed maximum packet size", since that's very different from the minimum QUIC packet size.

```suggestion
IP addresses has fallen below the smallest allowed maximum packet size, it MUST immediately 
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#pullrequestreview-417836536
----==_mimepart_5ecc0e8c34a51_72fa3fc3702cd968234090
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ianswett</b> commented on this pull request.</p>=0D
=0D
<p>Thanks for updating this.  I'm worried there are some unintended chang=
es in this PR, I've found a few so far.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430040274">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3797,17 +3797,23 @@ later time in the =
connection.=0D
 The QUIC packet size includes the QUIC header and protected payload, but=
 not the=0D
 UDP or IP header.=0D
 =0D
+QUIC defines the minimum QUIC packet size as at least 1280 bytes.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-QUIC defines the minimum QUIC packet size as =
at least 1280 bytes.=0D
+QUIC depends upon a minimum packet size as at least 1280 bytes.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430041048">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  A client MUST expand the payload of all U=
DP datagrams carrying Initial packets=0D
-to at least 1200 bytes, by adding PADDING frames to the Initial packet o=
r by=0D
+to at least the minimum QUIC packet size, by adding PADDING frames to th=
e Initial packet or by=0D
</pre>=0D
<p>Keep this as 1200 bytes.</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-to at least the minimum QUIC packet size, by =
adding PADDING frames to the Initial packet or by=0D
+to at least 1200 bytes, by adding PADDING frames to the Initial packet o=
r by=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430041642">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  In the absence of these mechanisms, QUIC =
endpoints SHOULD NOT send IP packets=0D
-larger than 1280 bytes. Assuming the minimum IP header size, this result=
s in a=0D
-QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4.=
 A QUIC=0D
-implementation MAY be more conservative in computing the QUIC maximum pa=
cket=0D
-size to allow for unknown tunnel overheads or IP header options/extensio=
ns.=0D
+larger than the minimum QUIC packet size. =0D
+=0D
+All QUIC=0D
+packets (except for PMTUD/DPLPMTUD probe packets) SHOULD be sized to fit=
 within the=0D
+maximum packet size to avoid the packet being fragmented or dropped=0D
+{{?RFC8085}}.=0D
+=0D
+If a QUIC endpoint determines that the PMTU between any pair of local an=
d remote=0D
+IP addresses has fallen below the minimum QUIC packet size, it MUST imme=
diately =0D
</pre>=0D
<p>Please keep the existing wording of "smallest allowed maximum packet s=
ize", since that's very different from the minimum QUIC packet size.</p>=0D=

=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-IP addresses has fallen below the minimum QUI=
C packet size, it MUST immediately =0D
+IP addresses has fallen below the smallest allowed maximum packet size, =
it MUST immediately =0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3693#pullrequestreview-417836536">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K2J3ZCQICLA5GSMRJLRTK2IZANCNFSM4NJQ432A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKZYXL4GQAIDTIWZUADRTK2IZA5CNFSM4=
NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODDT236A.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3693#pullrequestrev=
iew-417836536",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3693#pullrequestreview=
-417836536",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecc0e8c34a51_72fa3fc3702cd968234090--


From nobody Mon May 25 11:35:08 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 A7D643A0F3C for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 11:35:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.098
X-Spam-Level: 
X-Spam-Status: No, score=-3.098 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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 vo-iJ8tcG5Z3 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 11:35:01 -0700 (PDT)
Received: from out-15.smtp.github.com (out-15.smtp.github.com [192.30.254.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 692513A0F2B for <quic-issues@ietf.org>; Mon, 25 May 2020 11:35:01 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 97AB7260199 for <quic-issues@ietf.org>; Mon, 25 May 2020 11:35:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590431700; bh=wYL2CzfgD7HcW7kM99fYn3A2xizJhsCRaBE25lFaxIA=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Aq7ktLGFQuUVDU1ZD2iCLQba3FYCvG97V1YQQsUS3MJE3CHQQzIGY0gnin/iEdCJ1 X0xhC0ZoWkcV6kI0NCrGlqro/8C8wZEIoT2K97zirNCsIOyj6u8mv5zY8Ws7tGuTsc Wp4BYcztElRqfmRp4VOOiUVWhCAL3OPfFsUBgpn4=
Date: Mon, 25 May 2020 11:35:00 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK422CYKKCOI26JIP6N427YNJEVBNHHCKOBF24@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3694@github.com>
Subject: [quicwg/base-drafts] rename SERVER_BUSY to CONNECTION_REFUSED (#3694)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc0fd451d9d_3f8e3fd2514cd96c2578c5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kpGlgzS9-Hz8-dzHzDpMbxmahnk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 18:35:05 -0000

----==_mimepart_5ecc0fd451d9d_3f8e3fd2514cd96c2578c5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Please see the discussion on #3690 for the rationale, but in short, SERVER_BUSY is renamed as CONNECTION_REFUSED. A server might refuse a connection for various reasons. SERVER_BUSY is one specific reason. Having an error code for that specific case while not having an error code for generic case is awkward. Hence the rename.

Closes #3690.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3694

-- Commit Summary --

  * rename SERVER_BUSY to CONNECTION_REFUSED

-- File Changes --

    M draft-ietf-quic-transport.md (11)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3694.patch
https://github.com/quicwg/base-drafts/pull/3694.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3694

----==_mimepart_5ecc0fd451d9d_3f8e3fd2514cd96c2578c5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Please see the discussion on <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="623535922" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3690" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3690/hovercard" href="https://github.com/quicwg/base-drafts/issues/3690">#3690</a> for the rationale, but in short, SERVER_BUSY is renamed as CONNECTION_REFUSED. A server might refuse a connection for various reasons. SERVER_BUSY is one specific reason. Having an error code for that specific case while not having an error code for generic case is awkward. Hence the rename.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3690.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="623535922" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3690" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3690/hovercard" href="https://github.com/quicwg/base-drafts/issues/3690">#3690</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3694'>https://github.com/quicwg/base-drafts/pull/3694</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>rename SERVER_BUSY to CONNECTION_REFUSED</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3694/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (11)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3694.patch'>https://github.com/quicwg/base-drafts/pull/3694.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3694.diff'>https://github.com/quicwg/base-drafts/pull/3694.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3694">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYFGHAB6IA5JU3O7VDRTK25JANCNFSM4NJWVD7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4ZFVVMMHE2DLARJ63RTK25JA5CNFSM4NJWVD7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJYEXLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3694",
"url": "https://github.com/quicwg/base-drafts/pull/3694",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecc0fd451d9d_3f8e3fd2514cd96c2578c5--


From nobody Mon May 25 12:37:53 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 81CFC3A0997 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 12:37:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 ikXbzT8uSBSO for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 12:37:47 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 191B63A0994 for <quic-issues@ietf.org>; Mon, 25 May 2020 12:37:46 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id E73C51C099A for <quic-issues@ietf.org>; Mon, 25 May 2020 12:37:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590435464; bh=pOKra4wCEcxpPg5mkqMO6XX8jM3u4vimnQCeJAVOrhU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=t8f/pLHph/xJjPqsq5uP+4F/Ftn//+HPa2tf2dJwGiSkK4gJQwSrv17BPmQPhg7sm W8phsVvV/4A+abr4KJfa6wmqEWxp5j5FRLBxjtUSJzImLNARok0JpqRH5cnqHA+HZc y5Jz/XZOhDQDmuELZsErFAEtWjplqokwOyTYpS3Q=
Date: Mon, 25 May 2020 12:37:44 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5125994209@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Update DPLPMTUD and PMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc1e88d8322_6683f8e2b4cd968882884"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FybyAQy8evdUgWGH0dVMAbgbzOg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 19:37:51 -0000

----==_mimepart_5ecc1e88d8322_6683f8e2b4cd968882884
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

ba44ea7b3307f7da99be88c516270b9c008c78e7  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/ec591d1d3b47c75f890cea9ca1dfe521e7ccf912..ba44ea7b3307f7da99be88c516270b9c008c78e7

----==_mimepart_5ecc1e88d8322_6683f8e2b4cd968882884
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/ba44ea7b3307f7da99be88c516270b9c008c78e7">ba44ea7</a>  Update draft-ietf-quic-transport.md
</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/ec591d1d3b47c75f890cea9ca1dfe521e7ccf912..ba44ea7b3307f7da99be88c516270b9c008c78e7">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZQKR4OK3LRXKLS6ULRTLCIRANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4UXJYZPYAV2V2MLZDRTLCIRA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZDKOJZGQZDAOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/ec591d1d3b47c75f890cea9ca1dfe521e7ccf912..ba44ea7b3307f7da99be88c516270b9c008c78e7",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/ec591d1d3b47c75f890cea9ca1dfe521e7ccf912..ba44ea7b3307f7da99be88c516270b9c008c78e7",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecc1e88d8322_6683f8e2b4cd968882884--


From nobody Mon May 25 12:38:36 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 655453A0997 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 12:38:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 qy9UqAEIN1ME for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 12:38:16 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DAAB53A0994 for <quic-issues@ietf.org>; Mon, 25 May 2020 12:38:15 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id CC4609605FC for <quic-issues@ietf.org>; Mon, 25 May 2020 12:38:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590435494; bh=g5elKkF+pys/VM3Hfb5dSOL8Z11R9e/vozHZyyXH19c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YHKXj++EZZh2J3LML4j1hr2wBYg2TRinawuP0V+dQY0zZFNhwTr4V3G84WrhKaqi/ 8lBr7twjFMk23TwuhGwWJSPqXd2P8eSgZCibj1qfdB7dAbtB+YrC82MB2Rxc4qvORv spllqkw+Ifh1g8666RWPl4i69+z2tb/m3Y8mm48g=
Date: Mon, 25 May 2020 12:38:14 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5125995694@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Update DPLPMTUD and PMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc1ea6bbe5c_78063f8aa88cd9685905d2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HWWZ5yzGU3uSQy8MgfINS8Vd65E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 19:38:18 -0000

----==_mimepart_5ecc1ea6bbe5c_78063f8aa88cd9685905d2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

0f338c711ebc8cd40a54410e73938f592a28ab87  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/ba44ea7b3307f7da99be88c516270b9c008c78e7..0f338c711ebc8cd40a54410e73938f592a28ab87

----==_mimepart_5ecc1ea6bbe5c_78063f8aa88cd9685905d2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/0f338c711ebc8cd40a54410e73938f592a28ab87">0f338c7</a>  Update draft-ietf-quic-transport.md
</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/ba44ea7b3307f7da99be88c516270b9c008c78e7..0f338c711ebc8cd40a54410e73938f592a28ab87">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3ZNJU7NUVMCVNZU73RTLCKNANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5VWWP2T7OZRB5QV7TRTLCKNA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZDKOJZGU3DSNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/ba44ea7b3307f7da99be88c516270b9c008c78e7..0f338c711ebc8cd40a54410e73938f592a28ab87",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/ba44ea7b3307f7da99be88c516270b9c008c78e7..0f338c711ebc8cd40a54410e73938f592a28ab87",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecc1ea6bbe5c_78063f8aa88cd9685905d2--


From nobody Mon May 25 12:39:07 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 988043A09AA for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 12:38:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 axmwaPBFpCeI for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 12:38:42 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6516B3A0997 for <quic-issues@ietf.org>; Mon, 25 May 2020 12:38:42 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 496DCE0B7A for <quic-issues@ietf.org>; Mon, 25 May 2020 12:38:41 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590435521; bh=OSCaGhnd2DOD5xG6fQuFQCtchcsv7ov1lrbeSqbTrio=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0rNcSV75FJEQYF8R5gf/hN3l1GF7p2dgFUTlL+PwXKsGNr1eHsPrJMdF1EZO6sGYw xsgfpEAZ3XYvLtN9gxyA/krJvxzm3JA9qJVmptOhn6dCptypf5Y31+nYpXyYLqUEnk Xmk95+5yS+jbMEYJQ4FuPPaR/HuDV04XTtgAQ228=
Date: Mon, 25 May 2020 12:38:41 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7IOEAO6K7FWZGFRBV42774DEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/417855576@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Update DPLPMTUD and PMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc1ec137031_78c43fe579ecd968308985"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wXTQOjjhEORHW2Vo4Zwmk6dLTfE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 19:38:48 -0000

----==_mimepart_5ecc1ec137031_78c43fe579ecd968308985
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



> @@ -3797,17 +3797,23 @@ later time in the connection.
 The QUIC packet size includes the QUIC header and protected payload, but not the
 UDP or IP header.
 
+QUIC defines the minimum QUIC packet size as at least 1280 bytes.

Fine, except shouldn't this be: /as at/of at/

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430056597
----==_mimepart_5ecc1ec137031_78c43fe579ecd968308985
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430056597">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3797,17 +3797,23 @@ later time in the connection.
 The QUIC packet size includes the QUIC header and protected payload, but not the
 UDP or IP header.
 
+QUIC defines the minimum QUIC packet size as at least 1280 bytes.
</pre>
<p>Fine, except shouldn't this be: /as at/of at/</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430056597">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3WMEF2BPQVZ6LDZKLRTLCMDANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4NKLD5VGSNPZ6XPMDRTLCMDA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDT7QWA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430056597",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430056597",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecc1ec137031_78c43fe579ecd968308985--


From nobody Mon May 25 15:06:31 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 D7CB33A0A9B for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 15:06:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 81ay7CR7j2mK for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 15:06:27 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A0AA13A0A92 for <quic-issues@ietf.org>; Mon, 25 May 2020 15:06:27 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 7B898120350 for <quic-issues@ietf.org>; Mon, 25 May 2020 15:06:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590444386; bh=L5iHbm2jBDVH1p6WsFw4T7twe2joqlyuqC5+p37wyE4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Q5eZE5audM9QKbPdtu0fmDaP0LPApWuLxVFq3Xq17eO+MBDV4RGqbvhrBRyZJJaI3 yIIhY3IbM5eqPvfWplIfn2Ds0RpJ/zUj7W+eOGmi/c3L2zg7AXUG8d85B+jWp9JVaT /PCEYzqg6HS54cS4ZZHx+JHrdjszWmtHaP1B6vMA=
Date: Mon, 25 May 2020 15:06:26 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK242UOMA7E7CB7VH5F43ARGFEVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684/review/417887509@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3684@github.com>
References: <quicwg/base-drafts/pull/3684@github.com>
Subject: Re: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc416235002_23193f96b00cd95c663884"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9aCHml1eg-oefgKQnWFcc0S7u-E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 22:06:30 -0000

----==_mimepart_5ecc416235002_23193f96b00cd95c663884
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



>  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.

I think it's a design change. I think this allows for some freedom in the future on the part of endhost stack developers, so I like it, but I'm not sure I can simply justify it with that rationale.

That said, the way I read it, a new version of QUIC _could_ have a packet_len field, but the following packet within the same dgram is then not guaranteed to follow the invariants. This seems to deviate from the previous simple model about packets. Why can this not apply to all packets, even if it cannot be enforced?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417887509
----==_mimepart_5ecc416235002_23193f96b00cd95c663884
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3684#discussion_r430084809">draft-ietf-quic-invariants.md</a>:</p>
<pre style='color:#555'>&gt;  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.
</pre>
<p>I think it's a design change. I think this allows for some freedom in the future on the part of endhost stack developers, so I like it, but I'm not sure I can simply justify it with that rationale.</p>
<p>That said, the way I read it, a new version of QUIC <em>could</em> have a packet_len field, but the following packet within the same dgram is then not guaranteed to follow the invariants. This seems to deviate from the previous simple model about packets. Why can this not apply to all packets, even if it cannot be enforced?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417887509">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6G5IM54773OIUQULDRTLTWFANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2SU4YMV5TY5HWIAPDRTLTWFA5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDUHKFI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417887509",
"url": "https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-417887509",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecc416235002_23193f96b00cd95c663884--


From nobody Mon May 25 16:30:57 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 B41B13A0B59 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 16:30:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 sGw8Osjxk4ow for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 16:30:52 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4DC5C3A0AF4 for <quic-issues@ietf.org>; Mon, 25 May 2020 16:30:45 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 2FD5B8C0E06 for <quic-issues@ietf.org>; Mon, 25 May 2020 16:30:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590449444; bh=sGnklstJdVwY0EyK9weQZG3yAACMregMnW6zX++f7ak=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JyIWUoTWB1at5nZU6BlDuPzu2VjDUSfJT44Ayf5fGn2ZO3AlBxxcwds4IA0WTDlM/ GB5uGNTDr/XKC7ye8bZ6YpXr5Takd6jgJ77abNFMSmirULry7L2AOZbBTerjv6iq0z /KHTkO+TA7982menvILav5eSFdBsLZBHEH+YiiVI=
Date: Mon, 25 May 2020 16:30:44 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2AIVRDBJCIYMHUWIF43A3CJEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/633742003@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc552420072_19eb3f96b10cd96015243a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uSwI5F5NfhTZDk4gmDp45DtWHdo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 25 May 2020 23:30:55 -0000

----==_mimepart_5ecc552420072_19eb3f96b10cd96015243a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I like #3694, but it is a semantic change. It makes the existing code more general, which is appropriate. We would need to make this issue a design issue to do that though.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633742003
----==_mimepart_5ecc552420072_19eb3f96b10cd96015243a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I like <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624436695" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3694" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3694/hovercard" href="https://github.com/quicwg/base-drafts/pull/3694">#3694</a>, but it is a semantic change. It makes the existing code more general, which is appropriate. We would need to make this issue a design issue to do that though.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633742003">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK657SHXLY6RFMJOBC3RTL5SJANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4AFNEBT4SDBXEZL4DRTL5SJA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXDCFMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633742003",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-633742003",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecc552420072_19eb3f96b10cd96015243a--


From nobody Mon May 25 17:30:56 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 084B63A07C3 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 17:30:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 254zM1L5QBJx for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 17:30:52 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2117F3A07B6 for <quic-issues@ietf.org>; Mon, 25 May 2020 17:30:52 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 30A071200E6 for <quic-issues@ietf.org>; Mon, 25 May 2020 17:30:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590453051; bh=TaM+wfXJRmZkeRhdjad3Urvjq4Fm8avJ1dRI0vgfkTY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DBlauMxwI2bMiRQyT3CXN+bDBkAWb67tp0SuHbeqziOhFEvxLmOB7nIhBeIlw7wlx XMzpAJ4kxaIjbtoImQUgDJp4UBavby+euYJ5e+fijSa28qdS4SRLZl0NAeJdJzRXMO 4qL3HfMH8wZBhti39t2d/tkh5zqgCWvkYGAtfdKU=
Date: Mon, 25 May 2020 17:30:50 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYEWUKBT3LXDK7S5IF43BCDVEVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684/review/417909263@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3684@github.com>
References: <quicwg/base-drafts/pull/3684@github.com>
Subject: Re: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc633adb391_4dd3fba3accd95c2491fc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9tpI_3ydZAMmpyJxYVJbyAMWzzg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 00:30:54 -0000

----==_mimepart_5ecc633adb391_4dd3fba3accd95c2491fc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



>  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.

I think that this is far more pragmatic than that.  It says that this document can only talk about the first packet in a datagram because it doesn't have any way of identifying other packets.  That's pure mathematics from my perspective, not a design change.  

I don't see this as anything more than editorial on that basis, but I will pass this to the list.

(BTW, you don't strictly need a length, because you could start from the other end of the datagram payload to find a second packet.)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684#discussion_r430104904
----==_mimepart_5ecc633adb391_4dd3fba3accd95c2491fc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3684#discussion_r430104904">draft-ietf-quic-invariants.md</a>:</p>
<pre style='color:#555'>&gt;  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.
</pre>
<p>I think that this is far more pragmatic than that.  It says that this document can only talk about the first packet in a datagram because it doesn't have any way of identifying other packets.  That's pure mathematics from my perspective, not a design change.</p>
<p>I don't see this as anything more than editorial on that basis, but I will pass this to the list.</p>
<p>(BTW, you don't strictly need a length, because you could start from the other end of the datagram payload to find a second packet.)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684#discussion_r430104904">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3IAO3R5PWZXB2M2STRTMETVANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYQPQISBKML3LDAGHDRTMETVA5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDUMUDY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684#discussion_r430104904",
"url": "https://github.com/quicwg/base-drafts/pull/3684#discussion_r430104904",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecc633adb391_4dd3fba3accd95c2491fc--


From nobody Mon May 25 18:16:49 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 940083A09A2 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 18:16:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 tUIvd48zhma0 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 18:16:38 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 54CD73A09A9 for <quic-issues@ietf.org>; Mon, 25 May 2020 18:16:38 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 43972E1121 for <quic-issues@ietf.org>; Mon, 25 May 2020 18:16:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590455797; bh=PDMGvFQr+W3dRD1rv4Z7jNGsWvynxn7QpufWrloqyXA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IG1BsxlngoZZejI2ocNRpap0Ov2DXgJU/hg3tQ11FFjMDbf4hFgQhewtEfr+LqENl 4EE1jEowJnl/Pj612uyKkfbbX8sHTThGy2N5pSnroi2J52kUKvSVnMuvMWfbiTuEIr LwcrUDuuGWhdClMSj8seOnHgEKojgQ9WHyUdkiuQ=
Date: Mon, 25 May 2020 18:16:37 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2CNITGGPGHVRMJBGN43BHPLEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/417911791@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Update DPLPMTUD and PMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc6df533f9c_5d893fbe842cd968101217a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/O8UlypUu1pQl9KXh2StstlcQlm0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 01:16:47 -0000

----==_mimepart_5ecc6df533f9c_5d893fbe842cd968101217a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

@martinthomson commented on this pull request.=0D
=0D
Thanks for making a concrete proposal.  It really helps to have it writte=
n out.=0D
=0D
I have a bunch of suggestions, but I don't see any real barrier to includ=
ing this text on the basis of this PR.=0D
=0D
Don't worry about the CI build failures.  This will need some cleanup, bu=
t I can do that fairly easily.  Let's get the text right first.=0D
=0D
This is a major change, so I'll be opening an issue to track this.  In a =
sense, it's editorial because we are only taking text that we previously =
normatively referenced, but it's big enough to track properly.  Besides, =
I think that I suggested some substantive changes and I would be sad to s=
ee those not included.=0D
=0D
>  In the absence of these mechanisms, QUIC endpoints SHOULD NOT send IP =
packets=0D
-larger than 1280 bytes. Assuming the minimum IP header size, this result=
s in a=0D
-QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4.=
 A QUIC=0D
-implementation MAY be more conservative in computing the QUIC maximum pa=
cket=0D
-size to allow for unknown tunnel overheads or IP header options/extensio=
ns.=0D
+larger than the minimum QUIC packet size. =0D
+=0D
+All QUIC=0D
+packets (except for PMTUD/DPLPMTUD probe packets) SHOULD be sized to fit=
 within the=0D
=0D
```suggestion=0D
packets other than PMTUD/DPLPMTUD probe packets SHOULD be sized to fit wi=
thin the=0D
```=0D
=0D
>  =0D
 =0D
-## ICMP Packet Too Big Messages {#icmp-pmtud}=0D
+### Handling of ICMP PTB Messages by PMTUD {#icmp-pmtud}=0D
=0D
I would drop PTB from this.  It's already alphabet soup, but this is also=
 accurate:=0D
=0D
```suggestion=0D
### Handling of ICMP Messages by PMTUD {#icmp-pmtud}=0D
```=0D
=0D
If you are looking for a proper parallel construction, then maybe conside=
r just making this the PMTUD section:=0D
=0D
```suggestion=0D
## PMTU Discovery {#icmp-pmtud}=0D
```=0D
=0D
>  (e.g., IPv6 Packet Too Big messages) that indicate when a packet is dr=
opped=0D
 because it is larger than the local router MTU. DPLPMTUD can also option=
ally use=0D
 these messages.  This use of ICMP messages is potentially vulnerable to =
off-path=0D
 attacks that successfully guess the addresses used on the path and reduc=
e the=0D
 PMTU to a bandwidth-inefficient value.=0D
 =0D
 An endpoint MUST ignore an ICMP message that claims the PMTU has decreas=
ed below=0D
-1280 bytes.=0D
+the minimum QUIC packet size bytes.=0D
=0D
```suggestion=0D
the minimum QUIC packet size.=0D
```=0D
=0D
>  as specified in {{!RFC8201}} and Section 5.2 of {{!RFC8085}}. This val=
idation=0D
 SHOULD use the quoted packet supplied in the payload of an ICMP message =
to=0D
-associate the message with a corresponding transport connection {{!DPLPM=
TUD}}.=0D
-=0D
+associate the message with a corresponding transport connection (e.g., {=
{!DPLPMTUD}}).=0D
=0D
I appreciate the correction of the citation here, but I am not getting th=
e connection still.  Do you have a specific citation in DPLPMTUD that wou=
ld support this?  Maybe:=0D
=0D
```suggestion=0D
associate the message with a corresponding transport connection; see Sect=
ion X.X=0D
of {{!DPLPMTUD}}.=0D
```=0D
=0D
or =0D
```suggestion=0D
associate the message with a corresponding transport connection; for inst=
ance,=0D
Section X.X of {{!DPLPMTUD}} describes Y.=0D
```=0D
=0D
> +packet size. The MIN_PLPMTU is the same as the BASE_PMTU.=0D
+=0D
+QUIC endpoints implementing DPLPMTUD maintain a maximum packet size =0D
+(DPLPMTUD MPS) for each combination of local and remote IP=0D
+addresses.=C2=A0=0D
+If a QUIC endpoint determines that the PLPMTU between any pair of local=0D=

+and remote IP addresses has fallen below the size needed to support=0D
+the minimum QUIC packet size (BASE_PLPMTU), it MUST immediately cease=0D=

+sending QUIC packets, except for DPLPMTUD probe packets, on the affected=
=0D
+path. An endpoint MAY terminate the connection if an alternative=0D
+path cannot be found.=0D
+=0D
+###  DPLPMTUD and Initial Connectivity=0D
+=0D
+From the perspective of DPLPMTUD, QUIC transport is an =0D
+acknowledged PL. A sender can therefore enter the DPLPMTUD BASE=0D
=0D
Expand on first use please.  More so because this acronym is used only on=
ce here.=0D
=0D
```suggestion=0D
acknowledged packetization layer (PL). A sender can therefore enter the D=
PLPMTUD BASE=0D
```=0D
=0D
>  =0D
-The considerations for processing ICMP messages in the previous section =
also=0D
+When implementing the algorithm in Section 5 of {{!DPLPMTUD}}, the=0D
+initial value of BASE_PMTU SHOULD be consistent with the minimum QUIC=0D=

+packet size. The MIN_PLPMTU is the same as the BASE_PMTU.=0D
+=0D
+QUIC endpoints implementing DPLPMTUD maintain a maximum packet size =0D
+(DPLPMTUD MPS) for each combination of local and remote IP=0D
+addresses.=C2=A0=0D
=0D
Missing paragraph break.=0D
```suggestion=0D
addresses.=0D
=0D
```=0D
=0D
> +QUIC endpoints implementing DPLPMTUD maintain a maximum packet size =0D=

+(DPLPMTUD MPS) for each combination of local and remote IP=0D
+addresses.=C2=A0=0D
=0D
Is this a path property?  Because this could be "pair of local and remote=
 addresses" (strike the IP) and then it would include port numbers too.  =
That is likely more general.=0D
=0D
> +state when the QUIC connection handshake has been completed and=0D
+the endpoint has established a 1-RTT key.=0D
=0D
Is it necessary for this to happen so late?  I see some implementations p=
robing much earlier than that.  Also, this definition is a new state.  We=
 have "handshake completed", but 1-RTT keys are established earlier than =
that.  I would just say "handshake completed" and leave it at that.=0D
=0D
```suggestion=0D
state when the QUIC connection handshake is complete.=0D
```=0D
=0D
> +DPLPMTU Probe packets consists of a QUIC Header and a payload containi=
ng a=0D
+PING Frame and multiple PADDING Frames, this can implement=0D
+"Probing using padding data" (see section 4.1 of {{!DPLPMTUD}}.=C2=A0=0D=

=0D
This is too narrowly restrictive. I would instead say:=0D
=0D
```suggestion=0D
DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use =
the=0D
PADDING frame therefore implement "Probing using padding data", as define=
d in=0D
Section 4.1 of {{!DPLPMTUD}}.=0D
```=0D
=0D
> +These can be generated without affecting the transfer of other QUIC fr=
ames.=0D
+The PING Frame is used to trigger generation of an acknowledgement.=0D
+Multiple PADDING Frames are used together to control the length of the p=
robe packet.=C2=A0 =0D
=0D
Again, too prescriptive.=0D
=0D
```suggestion=0D
```=0D
=0D
> +These frames might not be retransmitted if a probe packet containing=0D=

+them is lost.  The frames consume congestion window,=0D
+which could delay the transmission of subsequent application data.=0D
=0D
This is incorrect.  PADDING and PING are not retransmitted on loss.  The =
fact that they are ack-eliciting causes them to consume congestion window=
, but this is less of a problem if they include other data.  Which they m=
ay well do (albeit with a higher risk of that data needing retransmission=
).=0D
=0D
```suggestion=0D
=0D
DPLPMTUD probe packets consume congestion window, so they could delay=0D
the transmission of subsequent application.=0D
```=0D
=0D
> +DPLPMTU Probe packets consists of a QUIC Header and a payload containi=
ng a=0D
+PING Frame and multiple PADDING Frames, this can implement=0D
+"Probing using padding data" (see section 4.1 of {{!DPLPMTUD}}.=C2=A0=0D=

+These can be generated without affecting the transfer of other QUIC fram=
es.=0D
+The PING Frame is used to trigger generation of an acknowledgement.=0D
+Multiple PADDING Frames are used together to control the length of the p=
robe packet.=C2=A0 =0D
+These frames might not be retransmitted if a probe packet containing=0D
+them is lost.  The frames consume congestion window,=0D
+which could delay the transmission of subsequent application data.=0D
+=0D
+###  Validating the QUIC Path with DPLPMTUD=0D
+=0D
+QUIC provides an acknowledged PL, therefore a sender does not=0D
+implement the DPLPMTUD CONFIRMATION_TIMER while in the SEARCH_COMPLETE s=
tate.=0D
+=0D
+###  Handling of ICMP PTB Messages by DPLPMTUD=0D
=0D
```suggestion=0D
###  Handling of ICMP Messages by DPLPMTUD=0D
```=0D
=0D
> +which could delay the transmission of subsequent application data.=0D
+=0D
+###  Validating the QUIC Path with DPLPMTUD=0D
+=0D
+QUIC provides an acknowledged PL, therefore a sender does not=0D
+implement the DPLPMTUD CONFIRMATION_TIMER while in the SEARCH_COMPLETE s=
tate.=0D
+=0D
+###  Handling of ICMP PTB Messages by DPLPMTUD=0D
+=0D
+An endpoint using DPLPMTUD requires the validation of any received PTB m=
essage =0D
+before using the PTB information, as defined in section 4.6 of {{!DPLPMT=
UD}}.=0D
+In addition to UDP Port=0D
+validation, QUIC validates an ICMP message by using other PL=0D
+information (e.g., validation of connection identifiers (CIDs) in the=0D=

+quoted packet of any received ICMP message). =0D
+The further considerations for processing ICMP messages described in the=
 previous section also=0D
=0D
```suggestion=0D
=0D
The considerations for processing ICMP messages described in {{icmp-pmtud=
}} also=0D
```=0D
=0D
>  The endpoint SHOULD ignore all ICMP messages that fail validation.=0D
 =0D
 An endpoint MUST NOT increase PMTU based on ICMP messages; see Section 3=
, clause=0D
 6 of {{!DPLPMTUD}}.  Any reduction in the QUIC maximum packet size in re=
sponse=0D
 to ICMP messages MAY be provisional until QUIC's loss detection algorith=
m=0D
 determines that the quoted packet has actually been lost.=0D
 =0D
+### PMTUD Probes with Handshake packets=0D
=0D
Please move this back.  It belongs where it was taken from.=0D
=0D
I realize that you now have a section for PMTUD parallel to the section f=
or PLPMTUD, and this allows you to make the structure cleaner (with two s=
ubsections and not one, which I agree is nice), but this text is relevant=
 to both.=0D
=0D
(I think that this move points out that the specific use of Handshake isn=
't the ideal. Though Initial packets might be a bad idea, using 0-RTT is =
also fine.)=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3693#pullrequestreview-4179117=
91=

----==_mimepart_5ecc6df533f9c_5d893fbe842cd968101217a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<p>Thanks for making a concrete proposal.  It really helps to have it wri=
tten out.</p>=0D
<p>I have a bunch of suggestions, but I don't see any real barrier to inc=
luding this text on the basis of this PR.</p>=0D
<p>Don't worry about the CI build failures.  This will need some cleanup,=
 but I can do that fairly easily.  Let's get the text right first.</p>=0D=

<p>This is a major change, so I'll be opening an issue to track this.  In=
 a sense, it's editorial because we are only taking text that we previous=
ly normatively referenced, but it's big enough to track properly.  Beside=
s, I think that I suggested some substantive changes and I would be sad t=
o see those not included.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430107165">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  In the absence of these mechanisms, QUIC =
endpoints SHOULD NOT send IP packets=0D
-larger than 1280 bytes. Assuming the minimum IP header size, this result=
s in a=0D
-QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4.=
 A QUIC=0D
-implementation MAY be more conservative in computing the QUIC maximum pa=
cket=0D
-size to allow for unknown tunnel overheads or IP header options/extensio=
ns.=0D
+larger than the minimum QUIC packet size. =0D
+=0D
+All QUIC=0D
+packets (except for PMTUD/DPLPMTUD probe packets) SHOULD be sized to fit=
 within the=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-packets (except for PMTUD/DPLPMTUD probe pack=
ets) SHOULD be sized to fit within the=0D
+packets other than PMTUD/DPLPMTUD probe packets SHOULD be sized to fit w=
ithin the=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430107624">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 =0D
-## ICMP Packet Too Big Messages {#icmp-pmtud}=0D
+### Handling of ICMP PTB Messages by PMTUD {#icmp-pmtud}=0D
</pre>=0D
<p>I would drop PTB from this.  It's already alphabet soup, but this is a=
lso accurate:</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-### Handling of ICMP PTB Messages by PMTUD {#=
icmp-pmtud}=0D
+### Handling of ICMP Messages by PMTUD {#icmp-pmtud}=0D
</pre>=0D
=0D
<p>If you are looking for a proper parallel construction, then maybe cons=
ider just making this the PMTUD section:</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-### Handling of ICMP PTB Messages by PMTUD {#=
icmp-pmtud}=0D
+## PMTU Discovery {#icmp-pmtud}=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430107653">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  (e.g., IPv6 Packet Too Big messages) that=
 indicate when a packet is dropped=0D
 because it is larger than the local router MTU. DPLPMTUD can also option=
ally use=0D
 these messages.  This use of ICMP messages is potentially vulnerable to =
off-path=0D
 attacks that successfully guess the addresses used on the path and reduc=
e the=0D
 PMTU to a bandwidth-inefficient value.=0D
 =0D
 An endpoint MUST ignore an ICMP message that claims the PMTU has decreas=
ed below=0D
-1280 bytes.=0D
+the minimum QUIC packet size bytes.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-the minimum QUIC packet size bytes.=0D
+the minimum QUIC packet size.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430107823">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  as specified in {{!RFC8201}} and Section =
5.2 of {{!RFC8085}}. This validation=0D
 SHOULD use the quoted packet supplied in the payload of an ICMP message =
to=0D
-associate the message with a corresponding transport connection {{!DPLPM=
TUD}}.=0D
-=0D
+associate the message with a corresponding transport connection (e.g., {=
{!DPLPMTUD}}).=0D
</pre>=0D
<p>I appreciate the correction of the citation here, but I am not getting=
 the connection still.  Do you have a specific citation in DPLPMTUD that =
would support this?  Maybe:</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-associate the message with a corresponding tr=
ansport connection (e.g., {{!DPLPMTUD}}).=0D
+associate the message with a corresponding transport connection; see Sec=
tion X.X=0D
+of {{!DPLPMTUD}}.=0D
</pre>=0D
=0D
<p>or</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-associate the message with a corresponding tr=
ansport connection (e.g., {{!DPLPMTUD}}).=0D
+associate the message with a corresponding transport connection; for ins=
tance,=0D
+Section X.X of {{!DPLPMTUD}} describes Y.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430108522">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +packet size. The MIN_PLPMTU is the same a=
s the BASE_PMTU.=0D
+=0D
+QUIC endpoints implementing DPLPMTUD maintain a maximum packet size =0D
+(DPLPMTUD MPS) for each combination of local and remote IP=0D
+addresses.=C2=A0=0D
+If a QUIC endpoint determines that the PLPMTU between any pair of local=0D=

+and remote IP addresses has fallen below the size needed to support=0D
+the minimum QUIC packet size (BASE_PLPMTU), it MUST immediately cease=0D=

+sending QUIC packets, except for DPLPMTUD probe packets, on the affected=
=0D
+path. An endpoint MAY terminate the connection if an alternative=0D
+path cannot be found.=0D
+=0D
+###  DPLPMTUD and Initial Connectivity=0D
+=0D
+From the perspective of DPLPMTUD, QUIC transport is an =0D
+acknowledged PL. A sender can therefore enter the DPLPMTUD BASE=0D
</pre>=0D
<p>Expand on first use please.  More so because this acronym is used only=
 once here.</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-acknowledged PL. A sender can therefore enter=
 the DPLPMTUD BASE=0D
+acknowledged packetization layer (PL). A sender can therefore enter the =
DPLPMTUD BASE=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430108759">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
-The considerations for processing ICMP messages in the previous section =
also=0D
+When implementing the algorithm in Section 5 of {{!DPLPMTUD}}, the=0D
+initial value of BASE_PMTU SHOULD be consistent with the minimum QUIC=0D=

+packet size. The MIN_PLPMTU is the same as the BASE_PMTU.=0D
+=0D
+QUIC endpoints implementing DPLPMTUD maintain a maximum packet size =0D
+(DPLPMTUD MPS) for each combination of local and remote IP=0D
+addresses.=C2=A0=0D
</pre>=0D
<p>Missing paragraph break.</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-addresses.=C2=A0=0D
+addresses.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430109009">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +QUIC endpoints implementing DPLPMTUD main=
tain a maximum packet size =0D
+(DPLPMTUD MPS) for each combination of local and remote IP=0D
+addresses.=C2=A0=0D
</pre>=0D
<p>Is this a path property?  Because this could be "pair of local and rem=
ote addresses" (strike the IP) and then it would include port numbers too=
.  That is likely more general.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430109398">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +state when the QUIC connection handshake =
has been completed and=0D
+the endpoint has established a 1-RTT key.=0D
</pre>=0D
<p>Is it necessary for this to happen so late?  I see some implementation=
s probing much earlier than that.  Also, this definition is a new state. =
 We have "handshake completed", but 1-RTT keys are established earlier th=
an that.  I would just say "handshake completed" and leave it at that.</p=
>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-state when the QUIC connection handshake has =
been completed and=0D
-the endpoint has established a 1-RTT key.=0D
+state when the QUIC connection handshake is complete.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430109984">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +DPLPMTU Probe packets consists of a QUIC =
Header and a payload containing a=0D
+PING Frame and multiple PADDING Frames, this can implement=0D
+&quot;Probing using padding data&quot; (see section 4.1 of {{!DPLPMTUD}}=
.=C2=A0=0D
</pre>=0D
<p>This is too narrowly restrictive. I would instead say:</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-DPLPMTU Probe packets consists of a QUIC Head=
er and a payload containing a=0D
-PING Frame and multiple PADDING Frames, this can implement=0D
-"Probing using padding data" (see section 4.1 of {{!DPLPMTUD}}.=C2=A0=0D=

+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use=
 the=0D
+PADDING frame therefore implement "Probing using padding data", as defin=
ed in=0D
+Section 4.1 of {{!DPLPMTUD}}.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430110060">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +These can be generated without affecting =
the transfer of other QUIC frames.=0D
+The PING Frame is used to trigger generation of an acknowledgement.=0D
+Multiple PADDING Frames are used together to control the length of the p=
robe packet.=C2=A0 =0D
</pre>=0D
<p>Again, too prescriptive.</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-These can be generated without affecting the =
transfer of other QUIC frames.=0D
-The PING Frame is used to trigger generation of an acknowledgement.=0D
-Multiple PADDING Frames are used together to control the length of the p=
robe packet.=C2=A0 =0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430110447">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +These frames might not be retransmitted i=
f a probe packet containing=0D
+them is lost.  The frames consume congestion window,=0D
+which could delay the transmission of subsequent application data.=0D
</pre>=0D
<p>This is incorrect.  PADDING and PING are not retransmitted on loss.  T=
he fact that they are ack-eliciting causes them to consume congestion win=
dow, but this is less of a problem if they include other data.  Which the=
y may well do (albeit with a higher risk of that data needing retransmiss=
ion).</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-These frames might not be retransmitted if a =
probe packet containing=0D
-them is lost.  The frames consume congestion window,=0D
-which could delay the transmission of subsequent application data.=0D
+=0D
+DPLPMTUD probe packets consume congestion window, so they could delay=0D=

+the transmission of subsequent application.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430110516">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +DPLPMTU Probe packets consists of a QUIC =
Header and a payload containing a=0D
+PING Frame and multiple PADDING Frames, this can implement=0D
+&quot;Probing using padding data&quot; (see section 4.1 of {{!DPLPMTUD}}=
.=C2=A0=0D
+These can be generated without affecting the transfer of other QUIC fram=
es.=0D
+The PING Frame is used to trigger generation of an acknowledgement.=0D
+Multiple PADDING Frames are used together to control the length of the p=
robe packet.=C2=A0 =0D
+These frames might not be retransmitted if a probe packet containing=0D
+them is lost.  The frames consume congestion window,=0D
+which could delay the transmission of subsequent application data.=0D
+=0D
+###  Validating the QUIC Path with DPLPMTUD=0D
+=0D
+QUIC provides an acknowledged PL, therefore a sender does not=0D
+implement the DPLPMTUD CONFIRMATION_TIMER while in the SEARCH_COMPLETE s=
tate.=0D
+=0D
+###  Handling of ICMP PTB Messages by DPLPMTUD=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-###  Handling of ICMP PTB Messages by DPLPMTU=
D=0D
+###  Handling of ICMP Messages by DPLPMTUD=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430110745">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +which could delay the transmission of sub=
sequent application data.=0D
+=0D
+###  Validating the QUIC Path with DPLPMTUD=0D
+=0D
+QUIC provides an acknowledged PL, therefore a sender does not=0D
+implement the DPLPMTUD CONFIRMATION_TIMER while in the SEARCH_COMPLETE s=
tate.=0D
+=0D
+###  Handling of ICMP PTB Messages by DPLPMTUD=0D
+=0D
+An endpoint using DPLPMTUD requires the validation of any received PTB m=
essage =0D
+before using the PTB information, as defined in section 4.6 of {{!DPLPMT=
UD}}.=0D
+In addition to UDP Port=0D
+validation, QUIC validates an ICMP message by using other PL=0D
+information (e.g., validation of connection identifiers (CIDs) in the=0D=

+quoted packet of any received ICMP message). =0D
+The further considerations for processing ICMP messages described in the=
 previous section also=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-The further considerations for processing ICM=
P messages described in the previous section also=0D
+=0D
+The considerations for processing ICMP messages described in {{icmp-pmtu=
d}} also=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430111278">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  The endpoint SHOULD ignore all ICMP messa=
ges that fail validation.=0D
 =0D
 An endpoint MUST NOT increase PMTU based on ICMP messages; see Section 3=
, clause=0D
 6 of {{!DPLPMTUD}}.  Any reduction in the QUIC maximum packet size in re=
sponse=0D
 to ICMP messages MAY be provisional until QUIC&#39;s loss detection algo=
rithm=0D
 determines that the quoted packet has actually been lost.=0D
 =0D
+### PMTUD Probes with Handshake packets=0D
</pre>=0D
<p>Please move this back.  It belongs where it was taken from.</p>=0D
<p>I realize that you now have a section for PMTUD parallel to the sectio=
n for PLPMTUD, and this allows you to make the structure cleaner (with tw=
o subsections and not one, which I agree is nice), but this text is relev=
ant to both.</p>=0D
<p>(I think that this move points out that the specific use of Handshake =
isn't the ideal. Though Initial packets might be a bad idea, using 0-RTT =
is also fine.)</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3693#pullrequestreview-417911791">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K2LIY45GE3PCDJDU3LRTMJ7LANCNFSM4NJQ432A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKY7YJQNXTQVD273NXLRTMJ7LA5CNFSM4=
NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODDUNH3Y.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3693#pullrequestrev=
iew-417911791",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3693#pullrequestreview=
-417911791",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecc6df533f9c_5d893fbe842cd968101217a--


From nobody Mon May 25 18:21:33 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 5343A3A09EB for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 18:21:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 yGIuT-aWzIc0 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 18:21:28 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 40B513A09B1 for <quic-issues@ietf.org>; Mon, 25 May 2020 18:21:28 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id DEEC0C60B3B for <quic-issues@ietf.org>; Mon, 25 May 2020 18:21:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590456086; bh=1d/T0KelXYbEROavN2aNOYoZ/f7F0PjxSCuQ/mrUmSw=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=X6IHRQS/f+DKVi0U2SmEEPFg9qSnxDfReVfBzLYftemwno6m04I0vwgz7oxEhZlOK y36FTeR+qtfCG/N8AtjZds44fnYsmsQfIFYz4t7PczJk2ohk/Yh7iO5r2BK4+hyCVj QAHonpa+h8htvkbAl6E1qPUrgHlmfR7A83ZWvUuo=
Date: Mon, 25 May 2020 18:21:26 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZNGFSSQKGCXYXXLIV43BIBNEVBNHHCKOOGDI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3695@github.com>
Subject: [quicwg/base-drafts] Integrate QUIC DPLPMTUD text (#3695)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc6f16cff38_5d5e3fbe842cd96812233eb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OurZcFDp-eZps1wky-nuaaL5gEw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 01:21:32 -0000

----==_mimepart_5ecc6f16cff38_5d5e3fbe842cd96812233eb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It turns out that coordinating the publication of all the documents is a real challenge.  Right now, DPLPMTUD depends on QUIC, which is fine, but it turns out that this is a problem for other things that depend on DPLPMTUD who now transitively depend on QUIC.  QUIC could adopt the DPLPMTUD text that is specific to QUIC and loosen this dependency chain.

The text changes are relatively modest, see #3693.

While this could be editorial, I think that this will require a consensus call.  The nature of the changes is such that it should be treated as design.  Also, I think that there are substantive changes required.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3695
----==_mimepart_5ecc6f16cff38_5d5e3fbe842cd96812233eb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>It turns out that coordinating the publication of all the documents is a real challenge.  Right now, DPLPMTUD depends on QUIC, which is fine, but it turns out that this is a problem for other things that depend on DPLPMTUD who now transitively depend on QUIC.  QUIC could adopt the DPLPMTUD text that is specific to QUIC and loosen this dependency chain.</p>
<p>The text changes are relatively modest, see <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624302189" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3693" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3693/hovercard" href="https://github.com/quicwg/base-drafts/pull/3693">#3693</a>.</p>
<p>While this could be editorial, I think that this will require a consensus call.  The nature of the changes is such that it should be treated as design.  Also, I think that there are substantive changes required.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3695">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3S5AW4G26ZDJQRIM3RTMKRNANCNFSM4NJ4JN7Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK54SDQ6NWBHOGXSCK3RTMKRNA5CNFSM4NJ4JN72YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJZYYNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3695",
"url": "https://github.com/quicwg/base-drafts/issues/3695",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecc6f16cff38_5d5e3fbe842cd96812233eb--


From nobody Mon May 25 21:44:07 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 0C4D93A0984 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 21:44:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 r3qSyIAg8FUC for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 21:44:01 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C8B813A0980 for <quic-issues@ietf.org>; Mon, 25 May 2020 21:44:00 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 8EEF76A000A for <quic-issues@ietf.org>; Mon, 25 May 2020 21:43:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590468237; bh=yx1k3T29FCCMqZjQZwfb0zcTAXsFb200BE3a0R57B6k=; h=Date:From:To:Subject:From; b=iqqieCpKOVOC7UBM1YKXZpw/LBUNw1Ydg6GJDiMoGA74KzIH0YlQfZpAlr42mGC/C kpO6xgWLryYsJ/UG4NHEo1AyLg7tl70stYesjp8tbdsKkA1O6nE8uH/BPUCIW2CQdL hrgyTHNlSeZzCA0j9TPnG/rFVSk8AHAJcod+TbZ4=
Date: Mon, 25 May 2020 21:43:57 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dedupe-packets/000000-927fe3@github.com>
Subject: [quicwg/base-drafts] 927fe3: Better duplicate detection
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/A1KKdD9PoCAijTAgbcr59K8rSyY>
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: Tue, 26 May 2020 04:44:04 -0000

  Branch: refs/heads/dedupe-packets
  Home:   https://github.com/quicwg/base-drafts
  Commit: 927fe3957b1930c38fbdf68dd950eec7bdff7db8
      https://github.com/quicwg/base-drafts/commit/927fe3957b1930c38fbdf68dd950eec7bdff7db8
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Better duplicate detection

Including mention of a minimum packet number and the risks in setting
that value.

Closes #3692.



From nobody Mon May 25 21:44:37 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 151D23A0984 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 21:44:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 SXhA7UmmMUEb for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 21:44:24 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BAA583A0980 for <quic-issues@ietf.org>; Mon, 25 May 2020 21:44:24 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 4E079960686 for <quic-issues@ietf.org>; Mon, 25 May 2020 21:44:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590468263; bh=3+teio66hAm+xvmH0ZnM97jXaSDfsLnm8Ckr2OgQ8lQ=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=EGuxTARaOX6phVz7vNZ28vWT/c8qzCOv68zLADPlf6yxggs4t7lEa0Ex5l0HdpVBb IioqFnoTpxIs6h1JGR+dtUH+fEg8q96nQ8Py7SkPRBpoip2LoGLrG3qABIj4xHo5Lf 6ybVO6O0wpcmB2b2346g5Pyxq3x8DPaPSGK2aY88=
Date: Mon, 25 May 2020 21:44:23 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3CKOCDC2F3CT3J45F43B72PEVBNHHCKOUZLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696@github.com>
Subject: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecc9ea73e78e_4ec23fa84f2cd9681116b5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nUfzx1jL7TOUt9xan6YHnDhru3w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 04:44:27 -0000

----==_mimepart_5ecc9ea73e78e_4ec23fa84f2cd9681116b5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Including mention of a minimum packet number and the risks in setting
that value.

Closes #3692.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3696

-- Commit Summary --

  * Better duplicate detection

-- File Changes --

    M draft-ietf-quic-transport.md (12)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3696.patch
https://github.com/quicwg/base-drafts/pull/3696.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696

----==_mimepart_5ecc9ea73e78e_4ec23fa84f2cd9681116b5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Including mention of a minimum packet number and the risks in setting<br>
that value.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3692.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624024803" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3692" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3692/hovercard" href="https://github.com/quicwg/base-drafts/issues/3692">#3692</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3696'>https://github.com/quicwg/base-drafts/pull/3696</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Better duplicate detection</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3696/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (12)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3696.patch'>https://github.com/quicwg/base-drafts/pull/3696.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3696.diff'>https://github.com/quicwg/base-drafts/pull/3696.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3696">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZJXLR5AT5TB2BRFYLRTNCKPANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5MZS6HWYX5I5U4QITRTNCKPA5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJ2TFNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696",
"url": "https://github.com/quicwg/base-drafts/pull/3696",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecc9ea73e78e_4ec23fa84f2cd9681116b5--


From nobody Mon May 25 21:45:41 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 E8F6E3A0993 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 21:45:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 YkeAXD39CaNT for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 21:45:37 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 249543A0936 for <quic-issues@ietf.org>; Mon, 25 May 2020 21:45:37 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 2565B520420 for <quic-issues@ietf.org>; Mon, 25 May 2020 21:45:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590468336; bh=vlaAU3f5uKlfp1sAbWqwjJejk9AEOaTMfC1lY6mAGXU=; h=Date:From:To:Subject:From; b=SLAkNBiooXuTPBDCr5rlnw3HXJxyeojkPg7AcCxfkHWQJf7UNn2CT5sCZv+Zr41jB BDcygbcZ8wly4RSi9Y2ADH6WUOrBUztFCveLzMKSQ+kf12rcuj1Hh6gHixXNRk3aPN UDedi+qiQWiNwnMfjS/taKT+SpC/wFHnzb8CAU2U=
Date: Mon, 25 May 2020 21:45:36 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/fb8058-4ecc58@github.com>
Subject: [quicwg/base-drafts] 4ecc58: Script updating gh-pages from 927fe395. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MVxjFdLtOdMlxMmaUGnbbjVJEaY>
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: Tue, 26 May 2020 04:45:39 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4ecc58e1f11fb32c1441a61f6b3e4917840862d4
      https://github.com/quicwg/base-drafts/commit/4ecc58e1f11fb32c1441a61f6b3e4917840862d4
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    A dedupe-packets/draft-ietf-quic-http.html
    A dedupe-packets/draft-ietf-quic-http.txt
    A dedupe-packets/draft-ietf-quic-invariants.html
    A dedupe-packets/draft-ietf-quic-invariants.txt
    A dedupe-packets/draft-ietf-quic-qpack.html
    A dedupe-packets/draft-ietf-quic-qpack.txt
    A dedupe-packets/draft-ietf-quic-recovery.html
    A dedupe-packets/draft-ietf-quic-recovery.txt
    A dedupe-packets/draft-ietf-quic-tls.html
    A dedupe-packets/draft-ietf-quic-tls.txt
    A dedupe-packets/draft-ietf-quic-transport.html
    A dedupe-packets/draft-ietf-quic-transport.txt
    A dedupe-packets/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 927fe395. [ci skip]



From nobody Mon May 25 21:46:00 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 C15363A0997 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 21:45:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 qGt4SCDS3GLA for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 21:45:50 -0700 (PDT)
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 E15FC3A0936 for <quic-issues@ietf.org>; Mon, 25 May 2020 21:45:49 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 63BA7280367 for <quic-issues@ietf.org>; Mon, 25 May 2020 21:45:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590468348; bh=UAE0S48R6+nOBFcvo/sQBAAUpPBzpmkD4rbu/sIWifM=; h=Date:From:To:Subject:From; b=nHT2cO9aPKFrxwb1vedRKuS6ZFNaPdzxwWpNPo4x3Fjf919Ak/hjZ5jDPvLZnNDrj ddnmr1RGQZqjx5I/C6aY0P/ox2llkf0EGgRI6UCABSepepS3mXe2B7mIwToEGxrr6X ruYL2oI8FkJy8V0QMB+MoK/TUagxMUaFgNB4msZk=
Date: Mon, 25 May 2020 21:45:48 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4ecc58-88fcbb@github.com>
Subject: [quicwg/base-drafts] 88fcbb: Script updating archive at 2020-05-26T04:45:30Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tDpT53udGomX0cswazZK7zOPtB0>
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: Tue, 26 May 2020 04:45:53 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 88fcbbe26eef83dfe41da8da6e73e201dd074e39
      https://github.com/quicwg/base-drafts/commit/88fcbbe26eef83dfe41da8da6e73e201dd074e39
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-26T04:45:30Z. [ci skip]



From nobody Mon May 25 22:16:23 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 E86D83A0A3E for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:16:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 EDDBQKH39NE6 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:16:18 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5280A3A0A3B for <quic-issues@ietf.org>; Mon, 25 May 2020 22:16:18 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 537AC8C0211 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:16:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590470176; bh=6+VMt7/PpDQSYMviv0o/7oICFM1Nr0N8GbqW2wdNwyk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HDIBlRzr/LSbbrrUi85jBbmZfEmXSUOy4qSb4NqW09y8ykNLnC0x3tTUbRbDBbufx Vc0hL/1eWok2J/xB9Ybo0KeizW6rTAeH2tJfa3EbBUAgcI+K0J4k6ha1p5qLwwne1U LRAT5a3dbTFo0d/A//7h/lHFes6WzwN3GpgbPqIg=
Date: Mon, 25 May 2020 22:16:16 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK772FWEAZNBSR46LLN43CDSBEVBNHHCKOUZLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/review/417972533@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecca62042ac7_20d63fb6494cd96837549b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IaUIBpC4GPvq1alNTnNJhUnqcpI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 05:16:22 -0000

----==_mimepart_5ecca62042ac7_20d63fb6494cd96837549b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho commented on this pull request.

Thank you for the PR. Looks mostly good, though I have some comments.

> @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates

Would it be possible for us to recommend tracking ranges? For example, it might be a good idea to state like: _For the purposes of detecting duplicates, endpoints might track individual packets or ranges of consecutive packet numbers, though tracking individual packets might accumulate excessive state._

> @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
+can be limited by maintaining a minimum packet number below which all packets
+are immediately dropped.  In setting a minimum packet number endpoints might
+need to account for large variations in round trip time that could significantly
+delay packets, especially if a peer migrates to or probes a different network
+path; see {{migration}}.

I think it might be a good idea to change this sentence to something like: _In setting a minimum packet number endpoints **have** to account for large variations in round trip time that could significantly delay packets, especially if a peer probes a different network path; see {migration}}._

The changes are use of "have to" rather than "might," and omitting the mention of migration.

Migration is not an issue, because when the peer migrates to a path with higher latency there would be no loss, and because when the peer migrates to a path with lower latency, the loss would be a one-time effect that can be recovered.

In contrast to that, for path migration to work, endpoints have to be capable of deduplicating packets with significant reordering. Without that, the peer cannot reliably probe a path while sending data.

I think this is essentially a requirement regardless of how we phrase it.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-417972533
----==_mimepart_5ecca62042ac7_20d63fb6494cd96837549b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@kazuho</b> commented on this pull request.</p>

<p>Thank you for the PR. Looks mostly good, though I have some comments.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430157789">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
</pre>
<p>Would it be possible for us to recommend tracking ranges? For example, it might be a good idea to state like: <em>For the purposes of detecting duplicates, endpoints might track individual packets or ranges of consecutive packet numbers, though tracking individual packets might accumulate excessive state.</em></p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430159898">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
+can be limited by maintaining a minimum packet number below which all packets
+are immediately dropped.  In setting a minimum packet number endpoints might
+need to account for large variations in round trip time that could significantly
+delay packets, especially if a peer migrates to or probes a different network
+path; see {{migration}}.
</pre>
<p>I think it might be a good idea to change this sentence to something like: <em>In setting a minimum packet number endpoints <strong>have</strong> to account for large variations in round trip time that could significantly delay packets, especially if a peer probes a different network path; see {migration}}.</em></p>
<p>The changes are use of "have to" rather than "might," and omitting the mention of migration.</p>
<p>Migration is not an issue, because when the peer migrates to a path with higher latency there would be no loss, and because when the peer migrates to a path with lower latency, the loss would be a one-time effect that can be recovered.</p>
<p>In contrast to that, for path migration to work, endpoints have to be capable of deduplicating packets with significant reordering. Without that, the peer cannot reliably probe a path while sending data.</p>
<p>I think this is essentially a requirement regardless of how we phrase it.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-417972533">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK26FPZJJBZONGXRURTRTNGCBANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY2EW7LNL62L3J3KRTRTNGCBA5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDU4CNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-417972533",
"url": "https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-417972533",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecca62042ac7_20d63fb6494cd96837549b--


From nobody Mon May 25 22:23:36 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 637EA3A0AA9 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:23:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ymFm_bnQhdsF for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:23:31 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CD5773A0AA2 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:23:31 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id 439DA8C0326 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:23:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590470610; bh=bbLCT1RhwoiC+yp93NfhI3aKJ9LhTJpDtOwVcKyAw6A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tM3MpFM8TvEMggwPH0Nmo8GjaSdqZ92eKqlpDmatbBuzAUtm0b2KCi4bSvWXtJODG LDINMTHjJb0PkF9euVGXGNMKbQJbWmjjdiqwhyTW2i9kWuo9FX2hK9l66wG7N5vt42 aPssDWgDFnIHibFc54FPBypKRLiRO/KNOTfvdUlA=
Date: Mon, 25 May 2020 22:23:30 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYWZINP7TH2OKIB2CV43CENFEVBNHHCKOUZLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/review/417976986@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecca7d233a9b_7a353f99d9ecd96835704b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QouDpSdhHvqXZ6z8ISX5O_GbogM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 05:23:35 -0000

----==_mimepart_5ecca7d233a9b_7a353f99d9ecd96835704b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates

I considered that, but I don't feel like a recommendation is necessary.  It's the natural implementation strategy because of how we structured ACK frames, so there is enough bias there.  But it crosses somewhat over from "here are the pitfalls" into "here is how you build a stack" too much for me.

> @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
+can be limited by maintaining a minimum packet number below which all packets
+are immediately dropped.  In setting a minimum packet number endpoints might
+need to account for large variations in round trip time that could significantly
+delay packets, especially if a peer migrates to or probes a different network
+path; see {{migration}}.

I see how you might pick on probing exclusively.  I'll remove migration and just identify probing.

s/have/need means the same to me.  It's 6919 language of a different form :)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696#discussion_r430161554
----==_mimepart_5ecca7d233a9b_7a353f99d9ecd96835704b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430161554">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
</pre>
<p>I considered that, but I don't feel like a recommendation is necessary.  It's the natural implementation strategy because of how we structured ACK frames, so there is enough bias there.  But it crosses somewhat over from "here are the pitfalls" into "here is how you build a stack" too much for me.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430161913">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
+can be limited by maintaining a minimum packet number below which all packets
+are immediately dropped.  In setting a minimum packet number endpoints might
+need to account for large variations in round trip time that could significantly
+delay packets, especially if a peer migrates to or probes a different network
+path; see {{migration}}.
</pre>
<p>I see how you might pick on probing exclusively.  I'll remove migration and just identify probing.</p>
<p>s/have/need means the same to me.  It's 6919 language of a different form :)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430161554">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5B6FLSJBZO2M425LLRTNG5FANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3LLSWFFUG6SDZ5NILRTNG5FA5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDU5FGQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696#discussion_r430161554",
"url": "https://github.com/quicwg/base-drafts/pull/3696#discussion_r430161554",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecca7d233a9b_7a353f99d9ecd96835704b--


From nobody Mon May 25 22:24:45 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 5C6E13A0AA7 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:24:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 MPLKIG9-Q_8H for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:24:41 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 124613A0AA9 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:24:40 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 2834BC60683 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:24:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590470678; bh=xLzrsVYxC37vqmJJBN4FmyRnOJ+rcOYpdIKqykUEy60=; h=Date:From:To:Subject:From; b=r2tzud+Ueoz/tSqat99NB2XxQQ82TSFVeH9UtZ7w3XrY8Q0y1mFGQfEr8SRwaPhzV qu9ErRLOWacClULyviEyXXSWTtjSBM+SUpIUEhzB9/dwWU9JtRB4ZSZPS2KpIouKbQ cYUEbsZs5XaVBysNk9ykbPn1PzVXOdVCwL8hhduo=
Date: Mon, 25 May 2020 22:24:38 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dedupe-packets/927fe3-9f8038@github.com>
Subject: [quicwg/base-drafts] 9f8038: Remove migration from the example
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XkIpaOHdqwcDO6JKykIZG1QReig>
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: Tue, 26 May 2020 05:24:44 -0000

  Branch: refs/heads/dedupe-packets
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9f8038def838e3d42c1595d35c5ba70bce19ea41
      https://github.com/quicwg/base-drafts/commit/9f8038def838e3d42c1595d35c5ba70bce19ea41
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Remove migration from the example



From nobody Mon May 25 22:25:04 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 44DDB3A0A49 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:24:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 H4oVUoLN59lv for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:24:47 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6AE573A0AE0 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:24:47 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 9AB1F9604FE for <quic-issues@ietf.org>; Mon, 25 May 2020 22:24:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590470686; bh=7rY7xDF8XcBHvPX4THE/g46ik4R8nOwlkOtohWeBh+Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=memCKe9UGaGnPWPG615olWVkxhLcHgFzUMn1tzTtMzGBqAZ2bSd5RG6xIFwB/qTnZ upC8Mj0BNAuCeevivCxvwFkdhhphAq1EqwhdkNiuYvRd6PUMzb/rzSToJdsAjCpi7p igV5spoXuugTycMHpdVIJrLM+JHEyCQU6ornqbX8=
Date: Mon, 25 May 2020 22:24:46 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/push/5127489330@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecca81e8ac91_72343fb28e6cd95c24080"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/T_oSsTEy_5qA4KWrwMd6LKsiv2Q>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 05:24:49 -0000

----==_mimepart_5ecca81e8ac91_72343fb28e6cd95c24080
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

9f8038def838e3d42c1595d35c5ba70bce19ea41  Remove migration from the example


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696/files/927fe3957b1930c38fbdf68dd950eec7bdff7db8..9f8038def838e3d42c1595d35c5ba70bce19ea41

----==_mimepart_5ecca81e8ac91_72343fb28e6cd95c24080
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/9f8038def838e3d42c1595d35c5ba70bce19ea41">9f8038d</a>  Remove migration from the example</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3696/files/927fe3957b1930c38fbdf68dd950eec7bdff7db8..9f8038def838e3d42c1595d35c5ba70bce19ea41">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYV2RSR6IMDSPHEZSDRTNHB5ANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2OI3GDQ2BVDA6ICC3RTNHB5A5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDEOJYGI3TCMSQOVZWQIZVGEZDONBYHEZTGMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696/files/927fe3957b1930c38fbdf68dd950eec7bdff7db8..9f8038def838e3d42c1595d35c5ba70bce19ea41",
"url": "https://github.com/quicwg/base-drafts/pull/3696/files/927fe3957b1930c38fbdf68dd950eec7bdff7db8..9f8038def838e3d42c1595d35c5ba70bce19ea41",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecca81e8ac91_72343fb28e6cd95c24080--


From nobody Mon May 25 22:25:26 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 5CCA73A0AA7 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:25:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 xK2q8LMnU9MF for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:25:23 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0A19A3A0A49 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:25:23 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 3ECF296071E for <quic-issues@ietf.org>; Mon, 25 May 2020 22:25:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590470722; bh=3ENDfIxI44Rt61yzFbmXk+z8LrUBXiw5iF+qbS7kFw0=; h=Date:From:To:Subject:From; b=0QybKNVPBhNRzdNSGKKky9p1xIqfSfzDlvqmJMRn8QkycDMhsOdp21HIwy7fxDPZY l2Tpbd9aaz7u5EpkN8Q3K+9fdPbWDv+kiEpzyq3tZNUgcdXwkZl+t3tME4sS0a8/5m vbzTX5oQc7MsCwo7u2Kxqp4z5td/OMGw/Fqz5BDU=
Date: Mon, 25 May 2020 22:25:22 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/88fcbb-bbb01c@github.com>
Subject: [quicwg/base-drafts] bbb01c: Script updating gh-pages from 9f8038de. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hvm_S-bgdMOCbJjK6D7KoWVA8og>
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: Tue, 26 May 2020 05:25:25 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: bbb01c89e5e7f457b32083f757a102da718ac4a6
      https://github.com/quicwg/base-drafts/commit/bbb01c89e5e7f457b32083f757a102da718ac4a6
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M dedupe-packets/draft-ietf-quic-transport.html
    M dedupe-packets/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 9f8038de. [ci skip]



From nobody Mon May 25 22:25:34 2020
Return-Path: <bounces+848413-a050-quic-issues=ietf.org@sgmail.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 67FDE3A0AA9 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:25:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, UNPARSEABLE_RELAY=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 4cBU469bR8ae for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:25:31 -0700 (PDT)
Received: from o4.sgmail.github.com (o4.sgmail.github.com [192.254.112.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B299C3A0AA7 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:25:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=HimBSJvHR6wZhhDXB0trz2lksZ4W4yVjwEnGzJseo9Y=; b= whL9fwW7JEIiGXEjwLr9F28liJYo8GqZzmwPB7jiwCBdgyowF7ve6gYRJJrrT5Qx hZWPyCv7/J3W2GI0DNLmJeaCCBw5TyTbrXCP2TMB2uIeJ6dS22Z1P4aeP39K79wK zECBTc9mUchw//WLUaylsqyIRrm9HfOL1tdEn/uGlLQ=
Received: by filter2000p1mdw1.sendgrid.net with SMTP id filter2000p1mdw1-1105-5ECCA84A-4 2020-05-26 05:25:30.128526053 +0000 UTC m=+294656.721359902
Received: from out-5.smtp.github.com (unknown) by ismtpd0077p1mdw1.sendgrid.net (SG) with ESMTP id 2c1OQ-PvRvW3NgAO6DzD6A for <quic-issues@ietf.org>; Tue, 26 May 2020 05:25:30.040 +0000 (UTC)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 926F996059E for <quic-issues@ietf.org>; Mon, 25 May 2020 22:25:29 -0700 (PDT)
Date: Tue, 26 May 2020 05:25:30 +0000 (UTC)
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6Y7HTUXD7S5PB7SAN43CEUTEVBNHHCKOUZLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/review/417978004@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecca849838da_24fd3fe5690cd96827819a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak0EUoEVE+Sfm5GSRIYrnLF7yUuEdetpS2VBuI UOu05oyzCqV0Jwu8mbpbxpQl+k6vGc/qVvUI8XLrLgqJnE3mHf2W6IlA10xzl5O/cgOGj+fw6nxj6l X9y9diEO6uwJorhAnbjngniXwXNXliBr5irXsnYiVMdbX4cs1KoPINRdCc717nwOKcszlXQIWAwVO5 0=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/x3iVuD5suS44wlBkQCbbvZQCSco>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 05:25:33 -0000

----==_mimepart_5ecca849838da_24fd3fe5690cd96827819a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho commented on this pull request.



> @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates

Thank you for elaborating. This works for me.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162408
----==_mimepart_5ecca849838da_24fd3fe5690cd96827819a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@kazuho</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162408">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
</pre>
<p>Thank you for elaborating. This works for me.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162408">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6Z4R57EUAOS5FZ72LRTNHETANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK35AZKWXRCYFBVGMS3RTNHETA5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDU5NFA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162408",
"url": "https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162408",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecca849838da_24fd3fe5690cd96827819a--


From nobody Mon May 25 22:26:09 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 BA7983A0AA9 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:26:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 f2RFQODGL3wO for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:26:06 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 364CD3A0AA7 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:26:06 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 785DD2C12F5 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:26:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590470765; bh=Y+CtorNOcn39SWMD4b6o1AX0S/Fr5N3El9uFKNngUyU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eXRX+Qjf1UtYDH5w6z3GpZUf62S2uQj1K4/gVuPJ9bT7XCM4J6G978/TneBW4YJXz br/yNy7JL4myRJxNfXq5OalE0avCgQNQ2o3VGh9KYPaUtfRKcL6a5ykIP5k74XCg+0 ty+KCDYcv68fACcrWF+9DZSJh1n5YavZw+/XUQnY=
Date: Mon, 25 May 2020 22:26:05 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6MQAOVERTS6J3EEGN43CEW3EVBNHHCKOUZLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/review/417978186@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecca86d6a560_24f73fe5690cd96818724a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/l20PFgqKkriAhyUKgmPjO1GJ0OI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 05:26:08 -0000

----==_mimepart_5ecca86d6a560_24f73fe5690cd96818724a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho commented on this pull request.



> @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
+can be limited by maintaining a minimum packet number below which all packets
+are immediately dropped.  In setting a minimum packet number endpoints might
+need to account for large variations in round trip time that could significantly
+delay packets, especially if a peer migrates to or probes a different network
+path; see {{migration}}.

I think I'm advocating for removing "might."

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162587
----==_mimepart_5ecca86d6a560_24f73fe5690cd96818724a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@kazuho</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162587">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
+can be limited by maintaining a minimum packet number below which all packets
+are immediately dropped.  In setting a minimum packet number endpoints might
+need to account for large variations in round trip time that could significantly
+delay packets, especially if a peer migrates to or probes a different network
+path; see {{migration}}.
</pre>
<p>I think I'm advocating for removing "might."</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162587">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYMGAIIICL5GDRZG2DRTNHG3ANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4VEAHG5Q6NXA2ZQQDRTNHG3A5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDU5OSQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162587",
"url": "https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162587",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecca86d6a560_24f73fe5690cd96818724a--


From nobody Mon May 25 22:27:19 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 1CAC73A0ADA for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:27:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Zm8oX_5o3P-e for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:27:16 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3D3953A0AD7 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:27:16 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 69FDF5205E2 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:27:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590470835; bh=iPVhBXmZbSzmU6vhPMWYEYgmWwh2AYJOpQlexX5TyNM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ClnnSCKnoIElMEnu5OYl1zslka/uqtIJYTow863dk7ropfCwE4vvTJTdZiJZM79aU YbLm6FRbQDRa5LVZMrT5/JgZqJJ/12rHe2CjrDewO6mWBXsUj/9NxVMLJffG8RgZpl ll1nWF+n5iuC3x1cWKXT72gTpR3/rHWHIWc8gxGE=
Date: Mon, 25 May 2020 22:27:15 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6HLP3A2FMVKI4WPSF43CE3HEVBNHHCKOUZLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/review/417978522@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecca8b35b1e4_6c7b3fbdb1ccd964188576"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xFqi-yBAwJasw0LtJRyDYgFmIpg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 05:27:18 -0000

----==_mimepart_5ecca8b35b1e4_6c7b3fbdb1ccd964188576
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
+can be limited by maintaining a minimum packet number below which all packets
+are immediately dropped.  In setting a minimum packet number endpoints might
+need to account for large variations in round trip time that could significantly
+delay packets, especially if a peer migrates to or probes a different network
+path; see {{migration}}.

Oh, I see.  I was thinking that you don't need to do this if you disable_active_migration.  Which is why the probing mention is important.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162861
----==_mimepart_5ecca8b35b1e4_6c7b3fbdb1ccd964188576
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162861">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
+can be limited by maintaining a minimum packet number below which all packets
+are immediately dropped.  In setting a minimum packet number endpoints might
+need to account for large variations in round trip time that could significantly
+delay packets, especially if a peer migrates to or probes a different network
+path; see {{migration}}.
</pre>
<p>Oh, I see.  I was thinking that you don't need to do this if you disable_active_migration.  Which is why the probing mention is important.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162861">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4A2HA5Q5ZC4YVCAOTRTNHLHANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYZGGV4UPH2X4JNET3RTNHLHA5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDU5RGQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162861",
"url": "https://github.com/quicwg/base-drafts/pull/3696#discussion_r430162861",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecca8b35b1e4_6c7b3fbdb1ccd964188576--


From nobody Mon May 25 22:39:09 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 137563A0B0E for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:39:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 mPxVoUvhGiXm for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:39:04 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 65E153A0B09 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:39:04 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 8FD531C02F3 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:39:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590471543; bh=CgC1yT24kJSt7cIfBGqRACJXikZXaH6F+L1Q8iQAqEM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CxjPdTMs43vb7OGmATzYXQquopsy+PXxCQ/od+5rEpL9nk14k3RwUMxL0acF7MvBh SaroXHgcDv0Vj27Ao5JsnBmqJxzfNxkDmKe4mkOF33VPTf5sdSygCdDyf63rHLiyb6 4jQAfWazs3NjPadCSZZRuae+nH1PoHb9lLFsSESE=
Date: Mon, 25 May 2020 22:39:03 -0700
From: Mark Nottingham <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4DOW3IAZGZI7XAV3V43CGHPEVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/633817331@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccab7781501_57de3fb1dd8cd95c242664"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: mnot
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2vtx108mA-mwPb-zLtyKg2lUBZU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 05:39:07 -0000

----==_mimepart_5eccab7781501_57de3fb1dd8cd95c242664
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Given that this is an area where there is still obviously experimentation and refinement, @bbriscoe's comment seems on point; baking a specific algorithm as requirements into the specifications doesn't seem like a good idea (although putting constraints on endpoints might make sense).

Can we focus on general guidance rather than documenting a specific algorithm? What would that PR look like?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-633817331
----==_mimepart_5eccab7781501_57de3fb1dd8cd95c242664
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Given that this is an area where there is still obviously experimentation and refinement, <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/bbriscoe/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bbriscoe">@bbriscoe</a>'s comment seems on point; baking a specific algorithm as requirements into the specifications doesn't seem like a good idea (although putting constraints on endpoints might make sense).</p>
<p>Can we focus on general guidance rather than documenting a specific algorithm? What would that PR look like?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3529#issuecomment-633817331">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYDHONRV5SLGNOLITDRTNIXPANCNFSM4LOJ4RQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6P2BIX3CAMU254O5LRTNIXPA5CNFSM4LOJ4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXDUR4Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-633817331",
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-633817331",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eccab7781501_57de3fb1dd8cd95c242664--


From nobody Mon May 25 22:39:33 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 520B03A0B09 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:39:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.1
X-Spam-Level: 
X-Spam-Status: No, score=-7.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, RCVD_IN_DNSWL_HI=-5, 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 RF3fEpo2JFlu for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:39:16 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BE1EF3A0B08 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:39:16 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 4BDC66A0E23 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:39:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590471555; bh=Pg9nuYbdSEjVfaPQOnixgyPx0I/XAplC904cWop745g=; h=Date:From:To:Subject:From; b=yTTFGRMD8DrZeo/TJKDJXWTR0m1U6/QSUz8zFtGGvY5Rw3Yit0SSoDN4Y7M5abvjk OEKLmoUOzbjouw+ikt4CMXzW21CkWuV9PNQkMM/RR6+aQM1eY6ScjvDgM/lwFGMDHm Ceqk1ebGyzlY/8+6SpRHRqYW3n4x7QfOdU+PV200=
Date: Mon, 25 May 2020 22:39:15 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dedupe-packets/9f8038-0f6ca2@github.com>
Subject: [quicwg/base-drafts] 0f6ca2: Rewording to avoid potential confusion
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/P84esLI3Xzgab8gpgZ13PpXy2y4>
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: Tue, 26 May 2020 05:39:19 -0000

  Branch: refs/heads/dedupe-packets
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7
      https://github.com/quicwg/base-drafts/commit/0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Rewording to avoid potential confusion



From nobody Mon May 25 22:39:36 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 7D3A93A0B09 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:39:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 piJ_86iY2oue for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:39:24 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3487D3A0B08 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:39:24 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 830A72C0EF3 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:39:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590471563; bh=8YH9uxNCjztzfHe2cdMLg3jx4jXgjZ625fYITeXQlSk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GqghqY2SibB9fbtXBTRmFd2GqYUTR0b16ND1M8DQub85iD9YKtjIPlFEu1QtNoC6v CwTS1zb1p3Ers0lIEuIeQiBKxVEyl3K43uMN2RA5r36hOy+36ky/J4EOETjyTS8Nup RACUqGY/1Uq68L9bUUT+Ii5aOGMDZ/C89SWnl8Wo=
Date: Mon, 25 May 2020 22:39:23 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/push/5127529680@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccab8b736b4_61173fd6888cd9642825a6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sRhs55PkkP9Nal7RwMCfP6YRIts>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 05:39:26 -0000

----==_mimepart_5eccab8b736b4_61173fd6888cd9642825a6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7  Rewording to avoid potential confusion


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696/files/9f8038def838e3d42c1595d35c5ba70bce19ea41..0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7

----==_mimepart_5eccab8b736b4_61173fd6888cd9642825a6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7">0f6ca28</a>  Rewording to avoid potential confusion</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3696/files/9f8038def838e3d42c1595d35c5ba70bce19ea41..0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYMGANHCZPU2R2CRGLRTNIYXANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZSFAYJR2L4BNSNVHTRTNIYXA5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDEOJYGI3TCMSQOVZWQIZVGEZDONJSHE3DQMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696/files/9f8038def838e3d42c1595d35c5ba70bce19ea41..0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7",
"url": "https://github.com/quicwg/base-drafts/pull/3696/files/9f8038def838e3d42c1595d35c5ba70bce19ea41..0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eccab8b736b4_61173fd6888cd9642825a6--


From nobody Mon May 25 22:40:26 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 506863A0B09 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:40:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 xvZshOBog8rL for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:40:23 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 397003A0B08 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:40:23 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 4B09C520045 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:40:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590471622; bh=Yxp7M4U2/N2/1t+9UaNwMStLs2rnpmhRtvRJqIrxC5U=; h=Date:From:To:Subject:From; b=nSxeaEN+8kzcyWZyJoqVAEXcrX9YT+aG/MrAnrox8FiAP/C9InWEOLEDt7qmXsnSW OSahwxfZbExTJxkkFYs3+TOxxMjX762+6Ncf6Yxini8y3T7oMw1SNaqaxl5/25a2i+ 0fn3h5GGvlgxEj6Sf1qD+xy4wZnstgr9mGVGhgvg=
Date: Mon, 25 May 2020 22:40:22 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/bbb01c-bd9663@github.com>
Subject: [quicwg/base-drafts] bd9663: Script updating gh-pages from 0f6ca28b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/drw0rkthAGYJxfU7gppssUZjjxk>
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: Tue, 26 May 2020 05:40:24 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: bd96639a60fa35bd50274191924d820e9038a57e
      https://github.com/quicwg/base-drafts/commit/bd96639a60fa35bd50274191924d820e9038a57e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M dedupe-packets/draft-ietf-quic-transport.html
    M dedupe-packets/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 0f6ca28b. [ci skip]



From nobody Mon May 25 22:42:01 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 129023A0B10 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:41:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 m2JZZ7I-WWBu for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 22:41:57 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 590CC3A0B0F for <quic-issues@ietf.org>; Mon, 25 May 2020 22:41:57 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 4CC776604D1 for <quic-issues@ietf.org>; Mon, 25 May 2020 22:41:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590471716; bh=NBI79OXHSXKM3SO/SWQIWvaHAoUOAJimal4vxsCBGJo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZMvUlbVC/Nyl0Cv/xmA4wGNHJv8FhXcW7qERr4TKLwQoFit/cY98nF4U62UoFtnRe Vs6Rms1jKvgtXyY3VPX/wt52S6V2Xbw1oUi82Fql6t3P1TK823c+5XiTJ58+qEWuY8 x/mDsYvnL8PXKcq09pBmwYwKAssQT3JFnvC9VvA0=
Date: Mon, 25 May 2020 22:41:56 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5DGPIDTBTJ3I3CDUV43CGSJEVBNHHCKOUZLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/review/417983259@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccac243cef0_58a73ff15e8cd9643385da"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KQTvbOMVJYG8MffqI0EjPvINEn0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 05:41:59 -0000

----==_mimepart_5eccac243cef0_58a73ff15e8cd9643385da
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho approved this pull request.

Thank you! Looks good to me.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-417983259
----==_mimepart_5eccac243cef0_58a73ff15e8cd9643385da
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@kazuho</b> approved this pull request.</p>

<p>Thank you! Looks good to me.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-417983259">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2BW7XBF44WGZ2LQV3RTNJCJANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK636QRFOYZCU727EGTRTNJCJA5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDU6WGY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-417983259",
"url": "https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-417983259",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eccac243cef0_58a73ff15e8cd9643385da--


From nobody Mon May 25 23:26:12 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 538503A0B5C for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 23:26:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 RxpTFHLAqdpq for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 23:26:09 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1A46C3A0B58 for <quic-issues@ietf.org>; Mon, 25 May 2020 23:26:09 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id B29C58C011A for <quic-issues@ietf.org>; Mon, 25 May 2020 23:26:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590474367; bh=vKB7PsUl2if6fCpnvoJaa0XE1NNwPgLdzJkmHyqrxxE=; h=Date:From:To:Subject:From; b=G6n0SOxYNOUfB9poONOv51a3GeVc2twe8SEEfmxjIN76SKY+dTvw5Ux3u+/410c0+ 2igW6saps4AFib76h0m+5L+zfva/vf8jWWavrHfJsJ1GcyKXm9tkb9GgAHkfvDztAP +A5On4gEIswIMqJok0Y+J6eWHLNZgeadzxeod99A=
Date: Mon, 25 May 2020 23:26:07 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/cite-this/000000-4a060d@github.com>
Subject: [quicwg/base-drafts] 4a060d: Citation rules FTW
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FwDXc2xCJ_4ZLA5xx5Ne1YBHgDg>
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: Tue, 26 May 2020 06:26:11 -0000

  Branch: refs/heads/cite-this
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4a060d25fb1f99f520a676571dda60f85f8e8cd5
      https://github.com/quicwg/base-drafts/commit/4a060d25fb1f99f520a676571dda60f85f8e8cd5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Citation rules FTW

Closes #3687.



From nobody Mon May 25 23:27:09 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 446743A0B5F for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 23:27:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 fNitPUOhDN2d for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 23:27:07 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EA6163A0B5D for <quic-issues@ietf.org>; Mon, 25 May 2020 23:27:06 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 002FFC6099B for <quic-issues@ietf.org>; Mon, 25 May 2020 23:27:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590474425; bh=1Z6ydXIGKxY8j5xaxhmiBGT9CgNXt2Q+gLIZDZzagns=; h=Date:From:To:Subject:From; b=f6WlwEJ7bkGNg1yd71UidpjWUh4O8uqo2pNezHL0KFqLv7YxYD0oVb40B0Z3jkCcz jTBATSYCkwcjT4MSoBxtJqjl7iroF/9RKVnFZzy/7K+wag6KJWMfnuTIOsJgydTkz1 /SoYV8Vzh3acG2J1p7dRGEVt1W0r7iG2M0/Kp6Bs=
Date: Mon, 25 May 2020 23:27:05 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/bd9663-812bb8@github.com>
Subject: [quicwg/base-drafts] 812bb8: Script updating gh-pages from 4a060d25. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OxdUEysReZYhdmMsxC3uNtih0WM>
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: Tue, 26 May 2020 06:27:08 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 812bb86855ada743342bde1663c73d4d153f857f
      https://github.com/quicwg/base-drafts/commit/812bb86855ada743342bde1663c73d4d153f857f
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    A cite-this/draft-ietf-quic-http.html
    A cite-this/draft-ietf-quic-http.txt
    A cite-this/draft-ietf-quic-invariants.html
    A cite-this/draft-ietf-quic-invariants.txt
    A cite-this/draft-ietf-quic-qpack.html
    A cite-this/draft-ietf-quic-qpack.txt
    A cite-this/draft-ietf-quic-recovery.html
    A cite-this/draft-ietf-quic-recovery.txt
    A cite-this/draft-ietf-quic-tls.html
    A cite-this/draft-ietf-quic-tls.txt
    A cite-this/draft-ietf-quic-transport.html
    A cite-this/draft-ietf-quic-transport.txt
    A cite-this/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 4a060d25. [ci skip]



From nobody Mon May 25 23:27:23 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 DEF173A0B62 for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 23:27:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.696
X-Spam-Level: 
X-Spam-Status: No, score=-1.696 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 U2L-PV8HyrDU for <quic-issues@ietfa.amsl.com>; Mon, 25 May 2020 23:27:18 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 69FCD3A0B5E for <quic-issues@ietf.org>; Mon, 25 May 2020 23:27:18 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 9F0C9520045 for <quic-issues@ietf.org>; Mon, 25 May 2020 23:27:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590474437; bh=ImGjcmQ5mVOTNiPOAtAReK80Ff+P+VV3rOey9Iz4PcY=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=1RApOVWC9O4YSBOMrU5eTr0sK4XL3BIDangWkiUxNn8V1D+C29lMvcOtMePk+e6e/ qo0v2kiweVw3XQr9j38IzBPDny6+tEttP5vRmTPtRweijs/j05YqNw2aAeDpONgoPe W9CtSN2n8d9bxXwhOPTbIBuAeSiNHYqIbIGnjfPE=
Date: Mon, 25 May 2020 23:27:17 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY44VADAAUJXSIQ6JV43CL4LEVBNHHCKOY5XA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3697@github.com>
Subject: [quicwg/base-drafts] Citation rules for QUIC (#3697)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccb6c58fc58_6e983fb5beacd95c3391bb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KQoNSBEiiWO-FvjdU5WuJS_a2zk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 06:27:20 -0000

----==_mimepart_5eccb6c58fc58_6e983fb5beacd95c3391bb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I don&#39;t see much point in doing the same for invariants, but I&#39;m willing to take input on that choice.

Closes #3687.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3697

-- Commit Summary --

  * Citation rules FTW

-- File Changes --

    M draft-ietf-quic-transport.md (3)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3697.patch
https://github.com/quicwg/base-drafts/pull/3697.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3697

----==_mimepart_5eccb6c58fc58_6e983fb5beacd95c3391bb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I don't see much point in doing the same for invariants, but I'm willing to take input on that choice.</p>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3687.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="623011175" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3687" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3687/hovercard" href="https://github.com/quicwg/base-drafts/issues/3687">#3687</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3697'>https://github.com/quicwg/base-drafts/pull/3697</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Citation rules FTW</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3697/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (3)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3697.patch'>https://github.com/quicwg/base-drafts/pull/3697.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3697.diff'>https://github.com/quicwg/base-drafts/pull/3697.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3697">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6W3ULHY55OZE5QIO3RTNOMLANCNFSM4NKAMVEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5NLTG6OKLL2UUY7YDRTNOMLA5CNFSM4NKAMVEKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJ3DW4A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3697",
"url": "https://github.com/quicwg/base-drafts/pull/3697",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eccb6c58fc58_6e983fb5beacd95c3391bb--


From nobody Tue May 26 00:10:26 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 A95D33A0C03 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:10:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 GXxpZWB9F63P for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:10:23 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DB8FA3A0B94 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:10:22 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 01874A0AA5 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:10:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590477022; bh=MMDjkPCQ/vx7ZyutHbSsK7/ZaBDzynPAkdB+GiF14aw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0Q0VBHNE182qh+qLCAnE+6PSfJbXpq35XnzZa6jUCpsmUxvqU0gwZpm8VUKUpzeOk 7wlF8cHAHkQumsZ5gUuUHVh+tVBi+0QsLQ0ocaJAXeTq+AgXJJXJEDG9EZ9/iM6c8n BeES4BMP9LOpUawpu6VbKnDFAuneTQpXWCosJXEk=
Date: Tue, 26 May 2020 00:10:21 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5127841029@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc0dde6008_47dd3fc38d2cd9648339a9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sgQ3ZLiyRAjYL0IkjO8GO6HYvYY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:10:25 -0000

----==_mimepart_5eccc0dde6008_47dd3fc38d2cd9648339a9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

c24e763e0616a78737f90f0d79ba6f347e932267  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/0f338c711ebc8cd40a54410e73938f592a28ab87..c24e763e0616a78737f90f0d79ba6f347e932267

----==_mimepart_5eccc0dde6008_47dd3fc38d2cd9648339a9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/c24e763e0616a78737f90f0d79ba6f347e932267">c24e763</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/0f338c711ebc8cd40a54410e73938f592a28ab87..c24e763e0616a78737f90f0d79ba6f347e932267">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6Z2EUNJ4TZXG65WUDRTNTN3ANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYTS5EOUA4ULZRPYCTRTNTN3A5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZDOOBUGEYDEOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/0f338c711ebc8cd40a54410e73938f592a28ab87..c24e763e0616a78737f90f0d79ba6f347e932267",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/0f338c711ebc8cd40a54410e73938f592a28ab87..c24e763e0616a78737f90f0d79ba6f347e932267",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eccc0dde6008_47dd3fc38d2cd9648339a9--


From nobody Tue May 26 00:10:53 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 C0A013A0C45 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:10:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 0TLlArkvniMn for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:10:50 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 26DA23A0C03 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:10:50 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 2634EE1199 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:10:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590477049; bh=g6GrJ+YXoo9MlJAPqKON4jRwBUpgmyJjnQxJmDunbAk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=R1j8v9enLGoZT+spVmC6UouNwcbtC7Nvr7z8hqHJ/HUwIy4YADYWubgSCh72tUxpq 6scEZBoJICQTlBUZDZiEZ1PcABg2jSjfot9jCar05zTAZAq35GdBA2rFaPqpr2mvOb my2fcn7lUlehDIWKMrzKtewz+eUJssxcHlBCRC4M=
Date: Tue, 26 May 2020 00:10:49 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5127843245@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc0f917be1_75a63f7e718cd9608134e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/it2wiBnhcw8H61VzterZFfZpByI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:10:52 -0000

----==_mimepart_5eccc0f917be1_75a63f7e718cd9608134e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

230e1f862eb346465fa1fd40fb5ce633f7bccb86  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/c24e763e0616a78737f90f0d79ba6f347e932267..230e1f862eb346465fa1fd40fb5ce633f7bccb86

----==_mimepart_5eccc0f917be1_75a63f7e718cd9608134e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/230e1f862eb346465fa1fd40fb5ce633f7bccb86">230e1f8</a>  Update draft-ietf-quic-transport.md
</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/c24e763e0616a78737f90f0d79ba6f347e932267..230e1f862eb346465fa1fd40fb5ce633f7bccb86">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3JNGZVYQ45QHEVJ4LRTNTPTANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2GZ2SDPORMLCJ34E3RTNTPTA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZDOOBUGMZDINI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/c24e763e0616a78737f90f0d79ba6f347e932267..230e1f862eb346465fa1fd40fb5ce633f7bccb86",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/c24e763e0616a78737f90f0d79ba6f347e932267..230e1f862eb346465fa1fd40fb5ce633f7bccb86",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eccc0f917be1_75a63f7e718cd9608134e--


From nobody Tue May 26 00:11:24 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 A04BF3A0C4A for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:11:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 e94UBXhUdSfu for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:11:14 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EDAB83A0C80 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:11:11 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 02BA88C00AE for <quic-issues@ietf.org>; Tue, 26 May 2020 00:11:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590477071; bh=o3zsLpx3DrHnhiXrlP47suBGNAqaU5Rsy6n4i7QmQXk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JGjclB0kxjVwd4crdigQn1dY6LRY9D0z1CdmP2bBv4Rv+zctwokFz/zmfYSXKJabJ yDXDgq8DaZJfhOt2SEzn6qvGzg6gkC+2uYFus4Q0ell8quHgZhEx4msacJATz+Xd3j eULmTewSOSlBDN+07IFgaDwCj8XGj1v91vWDb4Hw=
Date: Tue, 26 May 2020 00:11:10 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5127845085@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc10ee68c2_19d03fdc68ccd95c7447eb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LC8xt30wVnnmL2OvkXekS-FxdVU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:11:22 -0000

----==_mimepart_5eccc10ee68c2_19d03fdc68ccd95c7447eb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

0fb311b06a096670e11a8cf0db1e41e2c6a68b4c  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/230e1f862eb346465fa1fd40fb5ce633f7bccb86..0fb311b06a096670e11a8cf0db1e41e2c6a68b4c

----==_mimepart_5eccc10ee68c2_19d03fdc68ccd95c7447eb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/0fb311b06a096670e11a8cf0db1e41e2c6a68b4c">0fb311b</a>  Update draft-ietf-quic-transport.md
</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/230e1f862eb346465fa1fd40fb5ce633f7bccb86..0fb311b06a096670e11a8cf0db1e41e2c6a68b4c">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ2H433DYUL3K64Q3TRTNTQ5ANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5DNUPS7LFTLZTHNADRTNTQ5A5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZDOOBUGUYDQNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/230e1f862eb346465fa1fd40fb5ce633f7bccb86..0fb311b06a096670e11a8cf0db1e41e2c6a68b4c",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/230e1f862eb346465fa1fd40fb5ce633f7bccb86..0fb311b06a096670e11a8cf0db1e41e2c6a68b4c",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eccc10ee68c2_19d03fdc68ccd95c7447eb--


From nobody Tue May 26 00:12:03 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 6C2DE3A0C03 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:12:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 VvBgDfSo0pIe for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:11:59 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6EE623A0B94 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:11:59 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id BF01A1C03CE for <quic-issues@ietf.org>; Tue, 26 May 2020 00:11:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590477118; bh=dpbTcNwWy8i7OPYUudGS+oWEGuqYeyu21sD9XFOoDTI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ijokqRKh4RkyiEwV2Ks87wVRSrkqwtk6MbBx3H6SzS6120IQZOR7F9QlrLouR4Hug l9s5n/OfgbqOfZB0UGJDsD0fQQ079vhKq0qYrQFP4l1B29f5RAZ+38h1fCZvVeopjK Ul7pzjTkl3nYpFORdVNzjYWWo2jvi7TVhfDlZ0xY=
Date: Tue, 26 May 2020 00:11:58 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5127848503@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc13eb07ab_39583fb828acd9681015937"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GsK0kl5j_9hczKjgVRkDhl-XvkQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:12:02 -0000

----==_mimepart_5eccc13eb07ab_39583fb828acd9681015937
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

02ff34d3a97eaea87dbe9a181d7a6896b276f014  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/0fb311b06a096670e11a8cf0db1e41e2c6a68b4c..02ff34d3a97eaea87dbe9a181d7a6896b276f014

----==_mimepart_5eccc13eb07ab_39583fb828acd9681015937
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/02ff34d3a97eaea87dbe9a181d7a6896b276f014">02ff34d</a>  Update draft-ietf-quic-transport.md
</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/0fb311b06a096670e11a8cf0db1e41e2c6a68b4c..02ff34d3a97eaea87dbe9a181d7a6896b276f014">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5J2B4FDRHBKUKDOK3RTNTT5ANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZTDQPFEVDZK7OUDHLRTNTT5A5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZDOOBUHA2TAMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/0fb311b06a096670e11a8cf0db1e41e2c6a68b4c..02ff34d3a97eaea87dbe9a181d7a6896b276f014",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/0fb311b06a096670e11a8cf0db1e41e2c6a68b4c..02ff34d3a97eaea87dbe9a181d7a6896b276f014",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eccc13eb07ab_39583fb828acd9681015937--


From nobody Tue May 26 00:12:32 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 5B0A43A0C3E for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:12:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 w2oHTz4Ii5P3 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:12:24 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 576683A0B94 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:12:24 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 6BD5D2C0B18 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:12:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590477143; bh=pv4JmVRHK469HDZmPnPK6nKGeIM/AB1EYruc6+MVXEk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IEl1axCb4S2GFLsmnjiNYEEq7tl13HlA6b9knEF7lpCj4C3rb3+z0dwxj5z4T03+E 90LwXbah5DHDuyEY/WtZORvNZvai4mnREZ+dcWMSeFlG7mzwMbp1CJ4wEdyB2P7+kP RSyfbQcHqwm5kiPesQxw21yhA9tMwsxi6vlTzoCk=
Date: Tue, 26 May 2020 00:12:23 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5127850414@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc1575ba01_1c663f8376acd9683319e2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/y7skLnPF01tn7igS2ezCPFwB9XA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:12:31 -0000

----==_mimepart_5eccc1575ba01_1c663f8376acd9683319e2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

74b760e7799b0d73a770e830a1fe52b80924f9e7  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/02ff34d3a97eaea87dbe9a181d7a6896b276f014..74b760e7799b0d73a770e830a1fe52b80924f9e7

----==_mimepart_5eccc1575ba01_1c663f8376acd9683319e2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/74b760e7799b0d73a770e830a1fe52b80924f9e7">74b760e</a>  Update draft-ietf-quic-transport.md
</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/02ff34d3a97eaea87dbe9a181d7a6896b276f014..74b760e7799b0d73a770e830a1fe52b80924f9e7">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7SICTTTI2KGN4ENGLRTNTVPANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7LOH2QV7EVFBTD44LRTNTVPA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZDOOBVGA2DCNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/02ff34d3a97eaea87dbe9a181d7a6896b276f014..74b760e7799b0d73a770e830a1fe52b80924f9e7",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/02ff34d3a97eaea87dbe9a181d7a6896b276f014..74b760e7799b0d73a770e830a1fe52b80924f9e7",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eccc1575ba01_1c663f8376acd9683319e2--


From nobody Tue May 26 00:16:51 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 7D62B3A0C4A for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:16:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 PjqmeGSJPSGP for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:16:47 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F2CDA3A0C49 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:16:46 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 4012CC602AF for <quic-issues@ietf.org>; Tue, 26 May 2020 00:16:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590477406; bh=99rej8wuF6p3LRdSROHUGdmaaRzedIcg5qCud5pRfg0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1+ohX/TbnqfDwwqCt01RuhOU9Hr2w31MCtFYcNF9LkPLl9TS/+butlEhVQsoRKe13 /EdI4zCt+Gn1aIlPEOy+mDcRnSt5zOBpczj1iSjuB03LfHeNV5H6dvEJ6Db3ckDyoF U8Tb4UTDiNpnKiH/GC3cXfi/A6z5PUAdnb/V4nfE=
Date: Tue, 26 May 2020 00:16:46 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5127869229@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc25e3218f_3ddd3fcdc10cd964785474"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GGLOZSQPUcnImU7p8tXcENPXOb8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:16:49 -0000

----==_mimepart_5eccc25e3218f_3ddd3fcdc10cd964785474
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

a2cb752e4d5c75dfa4a452c06f5bdb19e66fe891  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/74b760e7799b0d73a770e830a1fe52b80924f9e7..a2cb752e4d5c75dfa4a452c06f5bdb19e66fe891

----==_mimepart_5eccc25e3218f_3ddd3fcdc10cd964785474
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/a2cb752e4d5c75dfa4a452c06f5bdb19e66fe891">a2cb752</a>  Update draft-ietf-quic-transport.md
</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/74b760e7799b0d73a770e830a1fe52b80924f9e7..a2cb752e4d5c75dfa4a452c06f5bdb19e66fe891">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6OYMCUWQAQ7EZ633LRTNUF5ANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2SRO326Z4OPJGRDV3RTNUF5A5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZDOOBWHEZDEOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/74b760e7799b0d73a770e830a1fe52b80924f9e7..a2cb752e4d5c75dfa4a452c06f5bdb19e66fe891",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/74b760e7799b0d73a770e830a1fe52b80924f9e7..a2cb752e4d5c75dfa4a452c06f5bdb19e66fe891",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eccc25e3218f_3ddd3fcdc10cd964785474--


From nobody Tue May 26 00:21:16 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 86E213A0C60 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:21:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Qs5qHvrY61PG for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:21:08 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C2A043A0C34 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:20:08 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 16E44960C13 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:20:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590477608; bh=nBjVHgvmUAlNE165X9NF9TwP15F7wHFWjqKjb8smD94=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=btukTa86Y1XD7ahywDYrtVZYTfu7eDIMIJOtYyYS6D/RXS/tpBESuI+xIjvuEboZ5 n8ROsN6QeA+mJLBaFC/mGvapuSmiatXZHtpOP/JtyJ8QBswYpdEOGxRbnl1aYV8GO1 zhgflr63uhLRp+Nr+T5iFSCrkui1cz2L4MWSeZAw=
Date: Tue, 26 May 2020 00:20:08 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2JX3MSC6AH74VGD2543CSCREVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418030177@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc3287931_66c3fededecd964513388"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xZN2iT9Uzjo16OPD_f8C5f6ACO8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:21:15 -0000

----==_mimepart_5eccc3287931_66c3fededecd964513388
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



> +These frames might not be retransmitted if a probe packet containing
+them is lost.  The frames consume congestion window,
+which could delay the transmission of subsequent application data.

The initial sentence was already there - I thought it added nothing, so happy to see that removed. 
The fix to the second sentence is broken, but I think this might be /could delay subsequent transmission by the application/?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430204334
----==_mimepart_5eccc3287931_66c3fededecd964513388
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430204334">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +These frames might not be retransmitted if a probe packet containing
+them is lost.  The frames consume congestion window,
+which could delay the transmission of subsequent application data.
</pre>
<p>The initial sentence was already there - I thought it added nothing, so happy to see that removed.<br>
The fix to the second sentence is broken, but I think this might be /could delay subsequent transmission by the application/?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430204334">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6KZUQOBFSVKBJGWKTRTNUSRANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4STVNHHVKU5NRZUNDRTNUSRA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDVKEYI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430204334",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430204334",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eccc3287931_66c3fededecd964513388--


From nobody Tue May 26 00:28:13 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 3146D3A0C5C for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:28:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 3zCfzc4REHBr for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:28:08 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E28C43A0C5A for <quic-issues@ietf.org>; Tue, 26 May 2020 00:28:08 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 61802120350 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:28:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590478088; bh=V1bwpfMwuqSQqrPjBTN1pBIqliSR4SEpcTX7V6prYWQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1/OlkgUQHGpJUOjEYGTzR7pqsjZ5kJZeiSX3tEPxRN8MqaBwnYkPCsp2K4BJRJ+ar oGr7kOlgx/OyiobrqDMEM+P8MmhcMJbZk9OdDQulp/mjwEfGZjoqP2h24cBxru1oFG R8R5/bdWKb9PlekNWcB5tcZmzlPSz6dN2wGVR8sU=
Date: Tue, 26 May 2020 00:28:08 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ5624ZL2OITERWSGN43CTAREVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418035353@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc5081b105_1f5f3fb5abccd9686657ec"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AS7XyT02DZ9c6-QOcnXTTpIjmFg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:28:10 -0000

----==_mimepart_5eccc5081b105_1f5f3fb5abccd9686657ec
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



>  The endpoint SHOULD ignore all ICMP messages that fail validation.
 
 An endpoint MUST NOT increase PMTU based on ICMP messages; see Section 3, clause
 6 of {{!DPLPMTUD}}.  Any reduction in the QUIC maximum packet size in response
 to ICMP messages MAY be provisional until QUIC's loss detection algorithm
 determines that the quoted packet has actually been lost.
 
+### PMTUD Probes with Handshake packets

So, the idea of sending a larger probe before the connection is established is something that probably needs more discussion for both cases.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430208324
----==_mimepart_5eccc5081b105_1f5f3fb5abccd9686657ec
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430208324">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  The endpoint SHOULD ignore all ICMP messages that fail validation.
 
 An endpoint MUST NOT increase PMTU based on ICMP messages; see Section 3, clause
 6 of {{!DPLPMTUD}}.  Any reduction in the QUIC maximum packet size in response
 to ICMP messages MAY be provisional until QUIC&#39;s loss detection algorithm
 determines that the quoted packet has actually been lost.
 
+### PMTUD Probes with Handshake packets
</pre>
<p>So, the idea of sending a larger probe before the connection is established is something that probably needs more discussion for both cases.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430208324">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYA4GCSQ744IRWT5ILRTNVQRANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYCYFC27ZILQGD5CGLRTNVQRA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDVLNGI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430208324",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430208324",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eccc5081b105_1f5f3fb5abccd9686657ec--


From nobody Tue May 26 00:29:08 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 88BEE3A0C5F for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:29:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 H8pnq8Z_aiza for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:29:03 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8836E3A0C5E for <quic-issues@ietf.org>; Tue, 26 May 2020 00:29:03 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 89C4DC6027F for <quic-issues@ietf.org>; Tue, 26 May 2020 00:29:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590478142; bh=GrezL+oN7gscTVIz48d4C1pgpXMgwBPQHVhDAvwqXHY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hY4F2eae3G8PC+scy5C6iDbmHlA6dVXJGY/3F2XfscNiYqxPegBYDKNmSrG3+GXe/ lW+DuOV+XTZaxDseRMxSB/aMo6aZUMkYRL7kNyL0hvsRE/i5QpPWHxRp/rVU3wb6k9 uhO/uoTvcrB+TdXnN65A9cPVF8EZ+gPiY+a4b9AY=
Date: Tue, 26 May 2020 00:29:02 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5127920404@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc53e7a679_64f13f924accd960648992"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4e-N6bcDdSn8BNq84zgKKs5wD2U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:29:06 -0000

----==_mimepart_5eccc53e7a679_64f13f924accd960648992
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

7040f72f466e1bf371a1c47c63a427ad34ccbd38  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/a2cb752e4d5c75dfa4a452c06f5bdb19e66fe891..7040f72f466e1bf371a1c47c63a427ad34ccbd38

----==_mimepart_5eccc53e7a679_64f13f924accd960648992
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/7040f72f466e1bf371a1c47c63a427ad34ccbd38">7040f72</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/a2cb752e4d5c75dfa4a452c06f5bdb19e66fe891..7040f72f466e1bf371a1c47c63a427ad34ccbd38">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7KY742VP2QBLY3U6DRTNVT5ANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2RFQ4MDHSDIO3K46LRTNVT5A5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZDOOJSGA2DANA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/a2cb752e4d5c75dfa4a452c06f5bdb19e66fe891..7040f72f466e1bf371a1c47c63a427ad34ccbd38",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/a2cb752e4d5c75dfa4a452c06f5bdb19e66fe891..7040f72f466e1bf371a1c47c63a427ad34ccbd38",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eccc53e7a679_64f13f924accd960648992--


From nobody Tue May 26 00:29:37 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 E56913A0C60 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:29:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 vjINf_oSMutK for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:29:30 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 247E33A0C5F for <quic-issues@ietf.org>; Tue, 26 May 2020 00:29:30 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 733C8282D2B for <quic-issues@ietf.org>; Tue, 26 May 2020 00:29:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590478169; bh=aIKtxbZYJ1Wx7ERua4WoIyW/+f9tBT7DS5zRYGkSND0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Y3Q+IVMCC+eypAawkydFhskbV2aJD0Ny6u8Xpz67FGJmSX/VedLibwRNmK1aC5okB 6O+1YEig1WVWaRcMnVRSvD0ikUz+PdarUze/UAYD2b7Wa9cpdJa3tAT9YPo8j1oftx 8WURxf+bPn7LAAdX03UTk1uytV3lf5byObm2vMwM=
Date: Tue, 26 May 2020 00:29:29 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4BE664OE6LIFRKFLF43CTFTEVBNHHCKOY5XA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3697/review/418036259@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3697@github.com>
References: <quicwg/base-drafts/pull/3697@github.com>
Subject: Re: [quicwg/base-drafts] Citation rules for QUIC (#3697)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc5596256c_60063fe55f2cd95c749049"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yRjkOt3HsOmSc52PcqP6xZaMtvk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:29:36 -0000

----==_mimepart_5eccc5596256c_60063fe55f2cd95c749049
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418036259
----==_mimepart_5eccc5596256c_60063fe55f2cd95c749049
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418036259">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK63CYDOV3E7RCUSZRTRTNVVTANCNFSM4NKAMVEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3M3V62G4G7YWPV5UTRTNVVTA5CNFSM4NKAMVEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDVLUIY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418036259",
"url": "https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418036259",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eccc5596256c_60063fe55f2cd95c749049--


From nobody Tue May 26 00:43:24 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 F23D53A0C7C for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:43:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 1560dMezrISk for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:43:19 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A7C693A0C7B for <quic-issues@ietf.org>; Tue, 26 May 2020 00:43:19 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id DB5428C012B for <quic-issues@ietf.org>; Tue, 26 May 2020 00:43:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590478998; bh=ARq3lddepqGXfT7uV8bWS+t7cOXcTNNiV8W2/y3IGBA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=l6Xgt+addC2Djc21OARBe+Dr6VGfgcb4+LvYDdxo4IHiopQr35ATY24ADY3fRdcA3 skgNYUmNnLjx1/+GU0Wxp/ATqQ7/IL5JqyuczxREBn9X5H1PhHvUF0xTTW/hGj9gDx n0P+afWJ2vYoH+aBL0KywkfvUUXHvHZ5NR+9PphE=
Date: Tue, 26 May 2020 00:43:18 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ3DNJUHGHNFOVYIPV43CUZNEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418045381@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc896cbeef_57083fe6bf0cd95c74149"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jqZem_IH-mUATc3xuWt3eZ9veq8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:43:23 -0000

----==_mimepart_5eccc896cbeef_57083fe6bf0cd95c74149
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



>  as specified in {{!RFC8201}} and Section 5.2 of {{!RFC8085}}. This validation
 SHOULD use the quoted packet supplied in the payload of an ICMP message to
-associate the message with a corresponding transport connection {{!DPLPMTUD}}.
-
+associate the message with a corresponding transport connection (e.g., {{!DPLPMTUD}}).

I'd prefer "see Section 4.6.1 of {{!DPLPMTUD}}."

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430216051
----==_mimepart_5eccc896cbeef_57083fe6bf0cd95c74149
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430216051">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  as specified in {{!RFC8201}} and Section 5.2 of {{!RFC8085}}. This validation
 SHOULD use the quoted packet supplied in the payload of an ICMP message to
-associate the message with a corresponding transport connection {{!DPLPMTUD}}.
-
+associate the message with a corresponding transport connection (e.g., {{!DPLPMTUD}}).
</pre>
<p>I'd prefer "see Section 4.6.1 of {{!DPLPMTUD}}."</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430216051">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYYE3GSIR6CH2YPXILRTNXJNANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK34D2ZFR4T4KBNKW3DRTNXJNA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDVN3RI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430216051",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430216051",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eccc896cbeef_57083fe6bf0cd95c74149--


From nobody Tue May 26 00:44:19 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 E73B83A0C80 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:44:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 gSoOcD1dkPoR for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:44:15 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 343AD3A0C7D for <quic-issues@ietf.org>; Tue, 26 May 2020 00:44:15 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 75F51960B66 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:44:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590479054; bh=QB6oB52+WK4vOfVCDPym8hFbK9ba64GIh14ZcpI/wmY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UXEw26Gofj5M+J6qPclKe/4k1qBNX15xei0GCaUSQndIojufsbgyPnMdu366jcnXD m8lhFNnptlkznf3QOdaQR9xy1OUZp0CrFoUah+Drc66TnFMzfZwQ078ME3OqKpt0pr xkhVKwxXMlBY9XfuErPma/5K49zw8CdZv5kUTWuk=
Date: Tue, 26 May 2020 00:44:14 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5127987884@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc8ce67325_55273fcc384cd968646e8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ASOV8jhDhp5et3pKSk9KhygImzw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:44:17 -0000

----==_mimepart_5eccc8ce67325_55273fcc384cd968646e8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

a12dfdf2da7ab759a3866ac0d2a82f4ad8eea650  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/7040f72f466e1bf371a1c47c63a427ad34ccbd38..a12dfdf2da7ab759a3866ac0d2a82f4ad8eea650

----==_mimepart_5eccc8ce67325_55273fcc384cd968646e8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/a12dfdf2da7ab759a3866ac0d2a82f4ad8eea650">a12dfdf</a>  Update draft-ietf-quic-transport.md
</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/7040f72f466e1bf371a1c47c63a427ad34ccbd38..a12dfdf2da7ab759a3866ac0d2a82f4ad8eea650">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK43FWEVEMHDYDGHAHLRTNXM5ANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK47M2BVSKTJVRAR5PDRTNXM5A5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZDOOJYG44DQNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/7040f72f466e1bf371a1c47c63a427ad34ccbd38..a12dfdf2da7ab759a3866ac0d2a82f4ad8eea650",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/7040f72f466e1bf371a1c47c63a427ad34ccbd38..a12dfdf2da7ab759a3866ac0d2a82f4ad8eea650",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eccc8ce67325_55273fcc384cd968646e8--


From nobody Tue May 26 00:45:35 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 E6F143A0BEB for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:45:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Lk5ggRYXXEBJ for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:45:32 -0700 (PDT)
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 889963A0C6F for <quic-issues@ietf.org>; Tue, 26 May 2020 00:45:32 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id C91B6282D59 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:45:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590479131; bh=RugAz/DUv6+qB3dG1q+YenRy99HgXZRDVtW8713Ho8I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=asBZClLFmasYA/O185utNrrXqrOI0emJGURv6H+KMGXGX7fFrNRZdz2avdnbpa97Z vZ9cQUbt4T0KyJgaq4lJ++5ARTJAM5mPT8+PqyjNEBG5GuseOhBMIdnyEyAJiKJ4Nj Ac19n93/V8k9ywP978NLhjUWZ0dfTsbbaARCBT5Q=
Date: Tue, 26 May 2020 00:45:31 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4TWBYTC4I3OZZX3VN43CVBXEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418047005@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc91bb9489_2a353fdaf52cd96c592f0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kZE5jrxCOZAe0AomYH_0DcCbhcw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:45:34 -0000

----==_mimepart_5eccc91bb9489_2a353fdaf52cd96c592f0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



> +state when the QUIC connection handshake has been completed and
+the endpoint has established a 1-RTT key.

This text was proposed by Magnus in a tsvwg thread. We should discuss this.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430217317
----==_mimepart_5eccc91bb9489_2a353fdaf52cd96c592f0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430217317">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +state when the QUIC connection handshake has been completed and
+the endpoint has established a 1-RTT key.
</pre>
<p>This text was proposed by Magnus in a tsvwg thread. We should discuss this.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430217317">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ASF52QOK4DDMTDJ3RTNXRXANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZR5Q44VNLYQNELWODRTNXRXA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDVOIHI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430217317",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430217317",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eccc91bb9489_2a353fdaf52cd96c592f0--


From nobody Tue May 26 00:48:00 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 800503A0C83 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:47:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 UPs46v42W6Yw for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 00:47:56 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B24FB3A0C81 for <quic-issues@ietf.org>; Tue, 26 May 2020 00:47:56 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id C5D4C2C0F6F for <quic-issues@ietf.org>; Tue, 26 May 2020 00:47:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590479275; bh=AQq+9vzHleUFBqD3BIgmRGk4Q8ZS9XduaqLL+oYQLjc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Aler1TZgXF5Y3WcYQIhKc0egfLkZPhhR48M13oR1yhiO+QZTsZT/AWvVmJnZHKonH cdbpsDhE4BfEzubRTeB230O2w8YVwfSKgoWfUD3fL8vank4g1g0eb7gUvMFVu+NvLA mEWPiaBj0A2UeXHU4ThRHbKbmhAxlPgM93B4bovc=
Date: Tue, 26 May 2020 00:47:55 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7QGBAPBBX75NFVCIF43CVKXEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418048566@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccc9abb754b_7b5f3f94780cd9641678f4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wRmuABzan9GsD4cU5clpFanHvRs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 07:47:59 -0000

----==_mimepart_5eccc9abb754b_7b5f3f94780cd9641678f4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

@gorryfair commented on this pull request.=0D
=0D
=0D
=0D
> +DPLPMTU Probe packets consists of a QUIC Header and a payload containi=
ng a=0D
+PING Frame and multiple PADDING Frames, this can implement=0D
+"Probing using padding data" (see section 4.1 of {{!DPLPMTUD}}.=C2=A0=0D=

=0D
Looks OK, the text needs at least to =0D
(1) describe how to construct a probe packet=0D
(2) explain if the probe packet can carry data or only padding.=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430218654=

----==_mimepart_5eccc9abb754b_7b5f3f94780cd9641678f4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@gorryfair</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430218654">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +DPLPMTU Probe packets consists of a QUIC =
Header and a payload containing a=0D
+PING Frame and multiple PADDING Frames, this can implement=0D
+&quot;Probing using padding data&quot; (see section 4.1 of {{!DPLPMTUD}}=
.=C2=A0=0D
</pre>=0D
<p>Looks OK, the text needs at least to<br>=0D
(1) describe how to construct a probe packet<br>=0D
(2) explain if the probe packet can carry data or only padding.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3693#discussion_r430218654">view it on GitHub</a>, or=
 <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK64L2B=
RMCBX2IGOGXTRTNX2XANCNFSM4NJQ432A">unsubscribe</a>.<img src=3D"https://gi=
thub.com/notifications/beacon/AFTOJK3NRQN4TFIJIVROBB3RTNX2XA5CNFSM4NJQ432=
KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDVO=
UNQ.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r43=
0218654",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r43021=
8654",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5eccc9abb754b_7b5f3f94780cd9641678f4--


From nobody Tue May 26 02:14:46 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 B022E3A0D56 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 02:14:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 BpiCLgKQ_94g for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 02:14:42 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7FF1B3A0D62 for <quic-issues@ietf.org>; Tue, 26 May 2020 02:14:39 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 2D89528221F for <quic-issues@ietf.org>; Tue, 26 May 2020 02:14:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590484477; bh=5ZjepQqyvjmR4uG0JwVw8TOOwKxoeEXrKdgS4fDZvAI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SrW+DhKPRgmsUNjh9gPNsI4SB8XY1ybkMNwgN63E3MofEIspqTUUl0R4QIaHIqO4h nRxmNh8fF4MLhDIY7hjd6u7d9BXmGkN/n54jWOxcaOyXUIslA3sEeDCHVbIHbz7rAo IA7GN1UWFxm2vBocAUAiy7G0HF+0IwU2ttKhaFdc=
Date: Tue, 26 May 2020 02:14:37 -0700
From: Magnus Westerlund <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6PUUR3ES6AMTLCKDF43C7P3EVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418084163@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccddfd1d588_5df13fd90aecd95c1760fa"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gloinul
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tje6AbWnW8Vj1c4s0Q8Ffum60Xg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 09:14:45 -0000

----==_mimepart_5eccddfd1d588_5df13fd90aecd95c1760fa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gloinul commented on this pull request.

Some feedback on the text. 

> @@ -3797,17 +3797,23 @@ later time in the connection.
 The QUIC packet size includes the QUIC header and protected payload, but not the
 UDP or IP header.
 
+QUIC depends upon a minimum packet size of at least 1280 bytes.
+This is the IPv6 minimum size
+{{?RFC8200}} and is also supported by most modern IPv4 networks.
+Assuming the minimum IP header size, this results in a
+QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4. 

Should there be an addition to the "QUIC maximum packet size" like initial or base line to indicate that the QUIC maximum packet size is actually a variable that can be changed by the PMTUD/DPLPMTUD? 

>  In the absence of these mechanisms, QUIC endpoints SHOULD NOT send IP packets
-larger than 1280 bytes. Assuming the minimum IP header size, this results in a
-QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4. A QUIC
-implementation MAY be more conservative in computing the QUIC maximum packet
-size to allow for unknown tunnel overheads or IP header options/extensions.
+larger than the minimum QUIC packet size. 
+
+All QUIC
+packets other than PMTUD/DPLPMTUD probe packets SHOULD be sized to fit within the
+maximum packet size to avoid the packet being fragmented or dropped
+{{?RFC8085}}.
+
+If a QUIC endpoint determines that the PMTU between any pair of local and remote
+IP addresses has fallen below the smallest allowed maximum packet size, it MUST immediately 

Isn't the "smallest allowed maximum packt size" equal to the "minimum QUIC packet size"? I guess strictly not, as smallest allowed maximum packet size is on IP level which is 1280. While "minimum QUIC packet size" based on the initial requirement is 1200 bytes and results in a IP level value that is slightly less than 1280. I think this needs some alignment. Maybe basing it on the 1200 bytes minimum QUIC packet size and say that smallest supported Maximum Packet Size is then 1200 plus overhead for IP/UDP. 

> +state when the QUIC connection handshake has been completed and
+the endpoint has established a 1-RTT key.

So, this was an attempt from me to correct something that looked even more broken in the earlier text in the TSVWG document. If handshake is complete is a good term lets use it. 

So I think it is relevant to at least go through the implication of sending DPLPMTUD probes prior to handshake complete. So one possible implementation here could be to first send your initial packet with 1280 as MPS. Then you use the rest of your IW=10 to send a broad side of Path MTU probes of various sizes checking a number of common sizes up to the client's local interface's MPS. So in relation to recovery that defines the initial window to 10*max_datagram_size with a limit of max (14720, 2*max_datagram_size). I make an assumption that one will in this case start with max_datagram_size=1200. Thus one can fit some number of probes. So allow DPLPMTUD to use 0-RTT keys to send probes I think is likely to result that the client to server handshake flight will often contain 10-12k of data even if there are no 0-RTT application data. That might be a good investment, but I are we certain of the DoS properties of this? 

So my though was simply to be a bit conservative here and ensure that both endpoints know there are someone there that will report delivery of the probes before sending them. But, this is clearly something the QUIC WG can discuss and change. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#pullrequestreview-418084163
----==_mimepart_5eccddfd1d588_5df13fd90aecd95c1760fa
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gloinul</b> commented on this pull request.</p>

<p>Some feedback on the text.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430246749">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3797,17 +3797,23 @@ later time in the connection.
 The QUIC packet size includes the QUIC header and protected payload, but not the
 UDP or IP header.
 
+QUIC depends upon a minimum packet size of at least 1280 bytes.
+This is the IPv6 minimum size
+{{?RFC8200}} and is also supported by most modern IPv4 networks.
+Assuming the minimum IP header size, this results in a
+QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4. 
</pre>
<p>Should there be an addition to the "QUIC maximum packet size" like initial or base line to indicate that the QUIC maximum packet size is actually a variable that can be changed by the PMTUD/DPLPMTUD?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430255170">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  In the absence of these mechanisms, QUIC endpoints SHOULD NOT send IP packets
-larger than 1280 bytes. Assuming the minimum IP header size, this results in a
-QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4. A QUIC
-implementation MAY be more conservative in computing the QUIC maximum packet
-size to allow for unknown tunnel overheads or IP header options/extensions.
+larger than the minimum QUIC packet size. 
+
+All QUIC
+packets other than PMTUD/DPLPMTUD probe packets SHOULD be sized to fit within the
+maximum packet size to avoid the packet being fragmented or dropped
+{{?RFC8085}}.
+
+If a QUIC endpoint determines that the PMTU between any pair of local and remote
+IP addresses has fallen below the smallest allowed maximum packet size, it MUST immediately 
</pre>
<p>Isn't the "smallest allowed maximum packt size" equal to the "minimum QUIC packet size"? I guess strictly not, as smallest allowed maximum packet size is on IP level which is 1280. While "minimum QUIC packet size" based on the initial requirement is 1200 bytes and results in a IP level value that is slightly less than 1280. I think this needs some alignment. Maybe basing it on the 1200 bytes minimum QUIC packet size and say that smallest supported Maximum Packet Size is then 1200 plus overhead for IP/UDP.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430269451">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +state when the QUIC connection handshake has been completed and
+the endpoint has established a 1-RTT key.
</pre>
<p>So, this was an attempt from me to correct something that looked even more broken in the earlier text in the TSVWG document. If handshake is complete is a good term lets use it.</p>
<p>So I think it is relevant to at least go through the implication of sending DPLPMTUD probes prior to handshake complete. So one possible implementation here could be to first send your initial packet with 1280 as MPS. Then you use the rest of your IW=10 to send a broad side of Path MTU probes of various sizes checking a number of common sizes up to the client's local interface's MPS. So in relation to recovery that defines the initial window to 10<em>max_datagram_size with a limit of max (14720, 2</em>max_datagram_size). I make an assumption that one will in this case start with max_datagram_size=1200. Thus one can fit some number of probes. So allow DPLPMTUD to use 0-RTT keys to send probes I think is likely to result that the client to server handshake flight will often contain 10-12k of data even if there are no 0-RTT application data. That might be a good investment, but I are we certain of the DoS properties of this?</p>
<p>So my though was simply to be a bit conservative here and ensure that both endpoints know there are someone there that will report delivery of the probes before sending them. But, this is clearly something the QUIC WG can discuss and change.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#pullrequestreview-418084163">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK25P65R5PEVXM4NHOLRTOB73ANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYFWW76T5TFNWFBX5DRTOB73A5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDVXKQY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#pullrequestreview-418084163",
"url": "https://github.com/quicwg/base-drafts/pull/3693#pullrequestreview-418084163",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eccddfd1d588_5df13fd90aecd95c1760fa--


From nobody Tue May 26 02:24:54 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 5CA693A0D6D for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 02:24:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 T1BgH_P2uqd2 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 02:24:52 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DBE733A0D6B for <quic-issues@ietf.org>; Tue, 26 May 2020 02:24:51 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id E3A84520774 for <quic-issues@ietf.org>; Tue, 26 May 2020 02:24:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590485089; bh=FFCrCwhYsjMf5H6TieDtRq71PYH+CfZQBNHUrm1K4MU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KIzdEy6G+oY7MYREf6idGoDpGgK84AiBnbznfnW/H1aGdY0uF3hQE3E7YhnFbi1yy XkKw9YhmV4WLhmtAG12XWybk7sIzDPxdd1YtqqmpRw9QiW/V91/52QKIwW0cgTO6p3 tZy2Td8rbJqLtY4hUrb7Cpl8lDZpDtRPnhhbd/lU=
Date: Tue, 26 May 2020 02:24:49 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7U4QWPLK66YNUYVUN43DAWDEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418121855@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecce061d4f11_28ea3faf4d4cd95c258727"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ykE92X3NizINtBh07Ns8sSTxsKo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 09:24:53 -0000

----==_mimepart_5ecce061d4f11_28ea3faf4d4cd95c258727
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



> @@ -3797,17 +3797,23 @@ later time in the connection.
 The QUIC packet size includes the QUIC header and protected payload, but not the
 UDP or IP header.
 
+QUIC depends upon a minimum packet size of at least 1280 bytes.
+This is the IPv6 minimum size
+{{?RFC8200}} and is also supported by most modern IPv4 networks.
+Assuming the minimum IP header size, this results in a
+QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4. 

I like clarity about constants and variables, the text in DPLPMTUD says: "The Maximum Packet Size (MPS) is the largest size of application data block that can be sent across a network path by a PL using a single Datagram.", so for QUIC, maybe this could read: 
"The QUIC maximum packet size is the largest size of QUIC packet that can be sent across a network path using a single packet. This is discovered using PMTUD/DPLPMTUD"?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430276044
----==_mimepart_5ecce061d4f11_28ea3faf4d4cd95c258727
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430276044">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3797,17 +3797,23 @@ later time in the connection.
 The QUIC packet size includes the QUIC header and protected payload, but not the
 UDP or IP header.
 
+QUIC depends upon a minimum packet size of at least 1280 bytes.
+This is the IPv6 minimum size
+{{?RFC8200}} and is also supported by most modern IPv4 networks.
+Assuming the minimum IP header size, this results in a
+QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4. 
</pre>
<p>I like clarity about constants and variables, the text in DPLPMTUD says: "The Maximum Packet Size (MPS) is the largest size of application data block that can be sent across a network path by a PL using a single Datagram.", so for QUIC, maybe this could read:<br>
"The QUIC maximum packet size is the largest size of QUIC packet that can be sent across a network path using a single packet. This is discovered using PMTUD/DPLPMTUD"?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430276044">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5DHBIA7EIVVV6MQETRTODGDANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZIKTACOM7P53O76DDRTODGDA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDWAQ7Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430276044",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430276044",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecce061d4f11_28ea3faf4d4cd95c258727--


From nobody Tue May 26 02:32:46 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 4301F3A0D72 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 02:32:43 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 2xNcYjdxLHtH for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 02:32:41 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 01F4D3A088F for <quic-issues@ietf.org>; Tue, 26 May 2020 02:32:40 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 5141B8C0070 for <quic-issues@ietf.org>; Tue, 26 May 2020 02:32:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590485560; bh=sUIjCiEweqUMbklbnBUrh2kQbLpnGWiae6P7QnZJado=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=L9JCDcnFeEvkpb+LYzTXeyLDWs7Zbv0ytTOuX2Q68TPtQ26WOcwI8TFHs2qPE5jxH pSyLcTJWCF0fc9jB4TbuX2wj7Uc8gtumaC11iyXGiwAyKeodUjARwB32XpFDfItyFT L9lYWffZ3wRSweD7efPLukBxAGm5fcr0rAklcifc=
Date: Tue, 26 May 2020 02:32:40 -0700
From: Magnus Westerlund <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYQO3PL2ARU54GQBG543DBTREVBNHHCKOOGDI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3695/633917393@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3695@github.com>
References: <quicwg/base-drafts/issues/3695@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC DPLPMTUD text (#3695)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecce23841cd0_48183fd6fe8cd95c3298ca"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gloinul
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/o3PoX4arHTJaylaM42CbMmZriiA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 09:32:44 -0000

----==_mimepart_5ecce23841cd0_48183fd6fe8cd95c3298ca
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

So from an AD perspective, draft-ietf-tsvwg-datagram-plpmtud is currently blocking another document (https://datatracker.ietf.org/doc/draft-ietf-intarea-frag-fragile/) from being published that has a missref on it. Except for this question of QUIC I am ready to approve draft-ietf-tsvwg-datagram-plpmtud. 

To me it is also clear that integration of DPLPMTUD done in the QUIC WG will result in less editorial clarity issues that potentially could make an future implementer uncertain. As can already been seen in the PR there a few question that potentially can improve the operation and not unnecessary restrict the operation of DPLPMTUD. 

>From my perspective it looks like the core is a set of minor editorial issues to resolve that will make the DPLPMTUD be clearer and resolve the missref issue and function as well as keeping it in the TSVWG document would. If a little bit more effort is invested after the first step then there is potential for additional improvements. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3695#issuecomment-633917393
----==_mimepart_5ecce23841cd0_48183fd6fe8cd95c3298ca
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>So from an AD perspective, draft-ietf-tsvwg-datagram-plpmtud is currently blocking another document (<a href="https://datatracker.ietf.org/doc/draft-ietf-intarea-frag-fragile/" rel="nofollow">https://datatracker.ietf.org/doc/draft-ietf-intarea-frag-fragile/</a>) from being published that has a missref on it. Except for this question of QUIC I am ready to approve draft-ietf-tsvwg-datagram-plpmtud.</p>
<p>To me it is also clear that integration of DPLPMTUD done in the QUIC WG will result in less editorial clarity issues that potentially could make an future implementer uncertain. As can already been seen in the PR there a few question that potentially can improve the operation and not unnecessary restrict the operation of DPLPMTUD.</p>
<p>From my perspective it looks like the core is a set of minor editorial issues to resolve that will make the DPLPMTUD be clearer and resolve the missref issue and function as well as keeping it in the TSVWG document would. If a little bit more effort is invested after the first step then there is potential for additional improvements.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3695#issuecomment-633917393">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3WXH5EUXKJ4LUUQFTRTOEDRANCNFSM4NJ4JN7Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3BOPZ5JIBCFJHRYJ3RTOEDRA5CNFSM4NJ4JN72YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXEM7UI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3695#issuecomment-633917393",
"url": "https://github.com/quicwg/base-drafts/issues/3695#issuecomment-633917393",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecce23841cd0_48183fd6fe8cd95c3298ca--


From nobody Tue May 26 02:40:54 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 7C68F3A0811 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 02:40:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 ZHtqnOs7YPIN for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 02:40:49 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7B4563A0794 for <quic-issues@ietf.org>; Tue, 26 May 2020 02:40:49 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id AD6CE8C0070 for <quic-issues@ietf.org>; Tue, 26 May 2020 02:40:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590486048; bh=VA5PInMnM1CSAIIM86vItv7IZwyHPB5yc9vRLBS6A9Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0lNlj2zXOblcour8RRlirgcGvxkxpfYJXZZQ2TDWSbcQFUQxxI4VuWhnWy5iMpjlR ZqHm8bGC97NBQypRHoKy6qBkk8T7QBIdvYcfoKgmEc2IOB1IIKQt5hjcxRWbpnZyYr czf6rktk4irI/lBZ+XiFvHwkRUwyOkF8xvIjyjLo=
Date: Tue, 26 May 2020 02:40:48 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4STRLAN3QTCOJAEQ543DCSBEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/c633921344@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecce4209e449_16b43ff38cacd964274017"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-3CwSLVt-6DXpdxpwqu_SzvK37E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 09:40:52 -0000

----==_mimepart_5ecce4209e449_16b43ff38cacd964274017
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

See later.=0D
=0D
On 26/05/2020 10:14, Magnus Westerlund wrote:=0D
>=0D
> *@gloinul* commented on this pull request.=0D
>=0D
> Some feedback on the text.=0D
>=0D
> -----------------------------------------------------------------------=
-=0D
>=0D
> In draft-ietf-quic-transport.md =0D
> <https://github.com/quicwg/base-drafts/pull/3693#discussion_r430246749>=
:=0D
>=0D
> > @@ -3797,17 +3797,23 @@ later time in the connection.=0D
>   The QUIC packet size includes the QUIC header and protected payload, =
but not the=0D
>   UDP or IP header.=0D
>   =0D
> +QUIC depends upon a minimum packet size of at least 1280 bytes.=0D
> +This is the IPv6 minimum size=0D
> +{{?RFC8200}} and is also supported by most modern IPv4 networks.=0D
> +Assuming the minimum IP header size, this results in a=0D
> +QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv=
4.=0D
>=0D
> Should there be an addition to the "QUIC maximum packet size" like =0D
> initial or base line to indicate that the QUIC maximum packet size is =0D=

> actually a variable that can be changed by the PMTUD/DPLPMTUD?=0D
>=0D
> -----------------------------------------------------------------------=
-=0D
>=0D
> In draft-ietf-quic-transport.md =0D
> <https://github.com/quicwg/base-drafts/pull/3693#discussion_r430255170>=
:=0D
>=0D
> >  In the absence of these mechanisms, QUIC endpoints SHOULD NOT send I=
P packets=0D
> -larger than 1280 bytes. Assuming the minimum IP header size, this resu=
lts in a=0D
> -QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv=
4. A QUIC=0D
> -implementation MAY be more conservative in computing the QUIC maximum =
packet=0D
> -size to allow for unknown tunnel overheads or IP header options/extens=
ions.=0D
> +larger than the minimum QUIC packet size.=0D
> +=0D
> +All QUIC=0D
> +packets other than PMTUD/DPLPMTUD probe packets SHOULD be sized to fit=
 within the=0D
> +maximum packet size to avoid the packet being fragmented or dropped=0D=

> +{{?RFC8085}}.=0D
> +=0D
> +If a QUIC endpoint determines that the PMTU between any pair of local =
and remote=0D
> +IP addresses has fallen below the smallest allowed maximum packet size=
, it MUST immediately=0D
>=0D
> Isn't the "smallest allowed maximum packt size" equal to the "minimum =0D=

> QUIC packet size"? I guess strictly not, as smallest allowed maximum =0D=

> packet size is on IP level which is 1280. While "minimum QUIC packet =0D=

> size" based on the initial requirement is 1200 bytes and results in a =0D=

> IP level value that is slightly less than 1280. I think this needs =0D
> some alignment. Maybe basing it on the 1200 bytes minimum QUIC packet =0D=

> size and say that smallest supported Maximum Packet Size is then 1200 =0D=

> plus overhead for IP/UDP.=0D
>=0D
> -----------------------------------------------------------------------=
-=0D
>=0D
> In draft-ietf-quic-transport.md =0D
> <https://github.com/quicwg/base-drafts/pull/3693#discussion_r430269451>=
:=0D
>=0D
> > +state when the QUIC connection handshake has been completed and=0D
> +the endpoint has established a 1-RTT key.=0D
>=0D
> So, this was an attempt from me to correct something that looked even =0D=

> more broken in the earlier text in the TSVWG document. If handshake is =
=0D
> complete is a good term lets use it.=0D
>=0D
> So I think it is relevant to at least go through the implication of =0D=

> sending DPLPMTUD probes prior to handshake complete. So one possible =0D=

> implementation here could be to first send your initial packet with =0D=

> 1280 as MPS. Then you use the rest of your IW=3D10 to send a broad side=
 =0D
> of Path MTU probes of various sizes checking a number of common sizes =0D=

> up to the client's local interface's MPS. So in relation to recovery =0D=

> that defines the initial window to 10/max_datagram_size with a limit =0D=

> of max (14720, 2/max_datagram_size). I make an assumption that one =0D
> will in this case start with max_datagram_size=3D1200. Thus one can fit=
 =0D
> some number of probes. So allow DPLPMTUD to use 0-RTT keys to send =0D
> probes I think is likely to result that the client to server handshake =
=0D
> flight will often contain 10-12k of data even if there are no 0-RTT =0D=

> application data. That might be a good investment, but are we certain =0D=

> of the DoS properties of this?=0D
>=0D
> So my though was simply to be a bit conservative here and ensure that =0D=

> both endpoints know there are someone there that will report delivery =0D=

> of the probes before sending them. But, this is clearly something the =0D=

> QUIC WG can discuss and change.=0D
>=0D
> =E2=80=94=0D
> You are receiving this because you authored the thread.=0D
> Reply to this email directly, view it on GitHub =0D
> <https://github.com/quicwg/base-drafts/pull/3693#pullrequestreview-4180=
84163>, =0D
> or unsubscribe =0D
> <https://github.com/notifications/unsubscribe-auth/ABYLLESDHHRZ3EADW6P2=
ODLRTOB7JANCNFSM4NJQ432A>.=0D
>=0D
The reason why we didn't suggest this within DPLPMTUD, was two things:=0D=

=0D
* Using the limited for IW for packet probes rapidly consumes the =0D
current IW space in bytes, and we were unconvinced of the importance to =0D=

tenatively try a large PMTU during the first RTT.=0D
=0D
* I was not aware of measurement data about how changing the initial =0D
flight of data would impact congestion collapse, since at this point =0D
there is no feedback from the receiver, and it seems, at least to me, to =
=0D
raise questions regarding stability with large numbers of flows and also =
=0D
as you note, the potential DoS opportunities.=0D
=0D
So, I'd be interested in what people think about this, and see any =0D
analysis and experience.=0D
=0D
Gorry=0D
=0D
=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3693#issuecomment-633921344=

----==_mimepart_5ecce4209e449_16b43ff38cacd964274017
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
See later.<br>=0D
<br>=0D
On 26/05/2020 10:14, Magnus Westerlund wrote:<br>=0D
&gt;<br>=0D
&gt; *@gloinul* commented on this pull request.<br>=0D
&gt;<br>=0D
&gt; Some feedback on the text.<br>=0D
&gt;<br>=0D
&gt; --------------------------------------------------------------------=
----<br>=0D
&gt;<br>=0D
&gt; In draft-ietf-quic-transport.md <br>=0D
&gt; &lt;https://github.com/quicwg/base-drafts/pull/3693#discussion_r4302=
46749&gt;:<br>=0D
&gt;<br>=0D
&gt; &gt; @@ -3797,17 +3797,23 @@ later time in the connection.<br>=0D
&gt;   The QUIC packet size includes the QUIC header and protected payloa=
d, but not the<br>=0D
&gt;   UDP or IP header.<br>=0D
&gt;   <br>=0D
&gt; +QUIC depends upon a minimum packet size of at least 1280 bytes.<br>=
=0D
&gt; +This is the IPv6 minimum size<br>=0D
&gt; +{{?RFC8200}} and is also supported by most modern IPv4 networks.<br=
>=0D
&gt; +Assuming the minimum IP header size, this results in a<br>=0D
&gt; +QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for =
IPv4.<br>=0D
&gt;<br>=0D
&gt; Should there be an addition to the &quot;QUIC maximum packet size&qu=
ot; like <br>=0D
&gt; initial or base line to indicate that the QUIC maximum packet size i=
s <br>=0D
&gt; actually a variable that can be changed by the PMTUD/DPLPMTUD?<br>=0D=

&gt;<br>=0D
&gt; --------------------------------------------------------------------=
----<br>=0D
&gt;<br>=0D
&gt; In draft-ietf-quic-transport.md <br>=0D
&gt; &lt;https://github.com/quicwg/base-drafts/pull/3693#discussion_r4302=
55170&gt;:<br>=0D
&gt;<br>=0D
&gt; &gt;  In the absence of these mechanisms, QUIC endpoints SHOULD NOT =
send IP packets<br>=0D
&gt; -larger than 1280 bytes. Assuming the minimum IP header size, this r=
esults in a<br>=0D
&gt; -QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for =
IPv4. A QUIC<br>=0D
&gt; -implementation MAY be more conservative in computing the QUIC maxim=
um packet<br>=0D
&gt; -size to allow for unknown tunnel overheads or IP header options/ext=
ensions.<br>=0D
&gt; +larger than the minimum QUIC packet size.<br>=0D
&gt; +<br>=0D
&gt; +All QUIC<br>=0D
&gt; +packets other than PMTUD/DPLPMTUD probe packets SHOULD be sized to =
fit within the<br>=0D
&gt; +maximum packet size to avoid the packet being fragmented or dropped=
<br>=0D
&gt; +{{?RFC8085}}.<br>=0D
&gt; +<br>=0D
&gt; +If a QUIC endpoint determines that the PMTU between any pair of loc=
al and remote<br>=0D
&gt; +IP addresses has fallen below the smallest allowed maximum packet s=
ize, it MUST immediately<br>=0D
&gt;<br>=0D
&gt; Isn&#39;t the &quot;smallest allowed maximum packt size&quot; equal =
to the &quot;minimum <br>=0D
&gt; QUIC packet size&quot;? I guess strictly not, as smallest allowed ma=
ximum <br>=0D
&gt; packet size is on IP level which is 1280. While &quot;minimum QUIC p=
acket <br>=0D
&gt; size&quot; based on the initial requirement is 1200 bytes and result=
s in a <br>=0D
&gt; IP level value that is slightly less than 1280. I think this needs <=
br>=0D
&gt; some alignment. Maybe basing it on the 1200 bytes minimum QUIC packe=
t <br>=0D
&gt; size and say that smallest supported Maximum Packet Size is then 120=
0 <br>=0D
&gt; plus overhead for IP/UDP.<br>=0D
&gt;<br>=0D
&gt; --------------------------------------------------------------------=
----<br>=0D
&gt;<br>=0D
&gt; In draft-ietf-quic-transport.md <br>=0D
&gt; &lt;https://github.com/quicwg/base-drafts/pull/3693#discussion_r4302=
69451&gt;:<br>=0D
&gt;<br>=0D
&gt; &gt; +state when the QUIC connection handshake has been completed an=
d<br>=0D
&gt; +the endpoint has established a 1-RTT key.<br>=0D
&gt;<br>=0D
&gt; So, this was an attempt from me to correct something that looked eve=
n <br>=0D
&gt; more broken in the earlier text in the TSVWG document. If handshake =
is <br>=0D
&gt; complete is a good term lets use it.<br>=0D
&gt;<br>=0D
&gt; So I think it is relevant to at least go through the implication of =
<br>=0D
&gt; sending DPLPMTUD probes prior to handshake complete. So one possible=
 <br>=0D
&gt; implementation here could be to first send your initial packet with =
<br>=0D
&gt; 1280 as MPS. Then you use the rest of your IW=3D10 to send a broad s=
ide <br>=0D
&gt; of Path MTU probes of various sizes checking a number of common size=
s <br>=0D
&gt; up to the client&#39;s local interface&#39;s MPS. So in relation to =
recovery <br>=0D
&gt; that defines the initial window to 10/max_datagram_size with a limit=
 <br>=0D
&gt; of max (14720, 2/max_datagram_size). I make an assumption that one <=
br>=0D
&gt; will in this case start with max_datagram_size=3D1200. Thus one can =
fit <br>=0D
&gt; some number of probes. So allow DPLPMTUD to use 0-RTT keys to send <=
br>=0D
&gt; probes I think is likely to result that the client to server handsha=
ke <br>=0D
&gt; flight will often contain 10-12k of data even if there are no 0-RTT =
<br>=0D
&gt; application data. That might be a good investment, but are we certai=
n <br>=0D
&gt; of the DoS properties of this?<br>=0D
&gt;<br>=0D
&gt; So my though was simply to be a bit conservative here and ensure tha=
t <br>=0D
&gt; both endpoints know there are someone there that will report deliver=
y <br>=0D
&gt; of the probes before sending them. But, this is clearly something th=
e <br>=0D
&gt; QUIC WG can discuss and change.<br>=0D
&gt;<br>=0D
&gt; =E2=80=94<br>=0D
&gt; You are receiving this because you authored the thread.<br>=0D
&gt; Reply to this email directly, view it on GitHub <br>=0D
&gt; &lt;https://github.com/quicwg/base-drafts/pull/3693#pullrequestrevie=
w-418084163&gt;, <br>=0D
&gt; or unsubscribe <br>=0D
&gt; &lt;https://github.com/notifications/unsubscribe-auth/ABYLLESDHHRZ3E=
ADW6P2ODLRTOB7JANCNFSM4NJQ432A&gt;.<br>=0D
&gt;<br>=0D
The reason why we didn&#39;t suggest this within DPLPMTUD, was two things=
:<br>=0D
<br>=0D
* Using the limited for IW for packet probes rapidly consumes the <br>=0D=

current IW space in bytes, and we were unconvinced of the importance to <=
br>=0D
tenatively try a large PMTU during the first RTT.<br>=0D
<br>=0D
* I was not aware of measurement data about how changing the initial <br>=
=0D
flight of data would impact congestion collapse, since at this point <br>=
=0D
there is no feedback from the receiver, and it seems, at least to me, to =
<br>=0D
raise questions regarding stability with large numbers of flows and also =
<br>=0D
as you note, the potential DoS opportunities.<br>=0D
<br>=0D
So, I&#39;d be interested in what people think about this, and see any <b=
r>=0D
analysis and experience.<br>=0D
<br>=0D
Gorry<br>=0D
<br>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3693#issuecomment-633921344">view it on GitHub</a>, o=
r <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK475R=
3CUIT6ICJ7F63RTOFCBANCNFSM4NJQ432A">unsubscribe</a>.<img src=3D"https://g=
ithub.com/notifications/beacon/AFTOJK2RDSGG6FMOHIKBC3DRTOFCBA5CNFSM4NJQ43=
2KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXEN6QA.gif=
" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3693#issuecomment-6=
33921344",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3693#issuecomment-6339=
21344",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecce4209e449_16b43ff38cacd964274017--


From nobody Tue May 26 03:20:40 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 8C9CA3A0DCB for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 03:20:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.696
X-Spam-Level: 
X-Spam-Status: No, score=-1.696 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 TDH0AH89a6Vt for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 03:20:37 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 45B593A0DBC for <quic-issues@ietf.org>; Tue, 26 May 2020 03:20:37 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 059ECE003E for <quic-issues@ietf.org>; Tue, 26 May 2020 03:20:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590488436; bh=b/Sw2itTciHfhqfZWpJkihbBqWqXM3P3HvyVe5NIqSs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=T0qEd0R3kHyqoQDlNxnVvWtHs3fm026fFp+/X6I0Df24IrE63iGEtqxvl0vgDlKzu EH3TrEcMQhssWhUySMLlGm/QrOmT6QrV3fMEGDKE+9LCG3DZ768YXHEYaFC00HVQaR BHgKRSnLNGEuG3r00MhbCWztBFsp9pCh4IWhwa2Q=
Date: Tue, 26 May 2020 03:20:35 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2L7IYMZLUWXJ5G5KF43DHHHEVBNHHCKOUZLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/review/418162483@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecced73e91d2_daf3f84ce2cd96c628486"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fW-TQlOLNAxZsRKp0wpM1_by9cQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 10:20:39 -0000

----==_mimepart_5ecced73e91d2_daf3f84ce2cd96c628486
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann commented on this pull request.



> @@ -3204,9 +3204,16 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
+can be limited by maintaining a minimum packet number below which all packets
+are immediately dropped.  Endpoints that use a minimum packet number need to
+ensure that any value does not cause delayed packets to be dropped.  Any minimum

This doesn't apply to arbitrarily delayed packets, otherwise every minimum value will be too high.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-418162483
----==_mimepart_5ecced73e91d2_daf3f84ce2cd96c628486
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430308096">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3204,9 +3204,16 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
+can be limited by maintaining a minimum packet number below which all packets
+are immediately dropped.  Endpoints that use a minimum packet number need to
+ensure that any value does not cause delayed packets to be dropped.  Any minimum
</pre>
<p>This doesn't apply to arbitrarily delayed packets, otherwise every minimum value will be too high.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-418162483">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2IPEI2YLGMLBZZLIDRTOJXHANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7FLQ75DJXJTW2VMS3RTOJXHA5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDWKOMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-418162483",
"url": "https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-418162483",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecced73e91d2_daf3f84ce2cd96c628486--


From nobody Tue May 26 03:39:38 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 9B2DA3A0DC3 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 03:39:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 b5JGiOCASNws for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 03:39:35 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5EA563A0BA9 for <quic-issues@ietf.org>; Tue, 26 May 2020 03:39:35 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 5A13066011A for <quic-issues@ietf.org>; Tue, 26 May 2020 03:39:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590489574; bh=KCz1W9AE+nPk5ZVkvwsx0WMW4ZWvm/1/9h92AJ7D20w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qSMo32/FXkmVJdvvM+AzlM7S4x3wR90BrNiLypAWK0xdSDYUjXRXhnhjSHG3d4g4i 9lg+sJBo4+3wVtHphQ6bR71d8Kly6rwp7tfN8Y4oWMobjmn57l3pFUd+BSZ9Sz2cSM FO9ZQoWcC//FIpvo6l6+XLZXRBC8KRXqaU9pZJSU=
Date: Tue, 26 May 2020 03:39:34 -0700
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4V4RJRIAXF6O4QY2V43DJONEVBNHHCKOY5XA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3697/review/418175049@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3697@github.com>
References: <quicwg/base-drafts/pull/3697@github.com>
Subject: Re: [quicwg/base-drafts] Citation rules for QUIC (#3697)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccf1e64a5f9_42643fa46a6cd95c9823d7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: larseggert
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/27tDW67P2zpIcH-CAuo0VXXUVSU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 10:39:37 -0000

----==_mimepart_5eccf1e64a5f9_42643fa46a6cd95c9823d7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@larseggert approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418175049
----==_mimepart_5eccf1e64a5f9_42643fa46a6cd95c9823d7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@larseggert</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418175049">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZ7MF2JZHZNOW3T4TRTOL6NANCNFSM4NKAMVEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4P7HFL4HIJ44AUDFLRTOL6NA5CNFSM4NKAMVEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDWNQSI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418175049",
"url": "https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418175049",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eccf1e64a5f9_42643fa46a6cd95c9823d7--


From nobody Tue May 26 03:45:09 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 036CB3A0AC3 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 03:45:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 mF4tA24VaKoY for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 03:45:06 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 333883A0AC2 for <quic-issues@ietf.org>; Tue, 26 May 2020 03:45:06 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id CEBDC260D70 for <quic-issues@ietf.org>; Tue, 26 May 2020 03:45:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590489904; bh=5fOfoK/gW3FBbPqlWQkAMDMos2LzKVKzvKwvbvI8WIA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vvYCq4iTFM5fXc7x0vmqjiSTnCyLsov53yIIGxOw2gyOBQPxXqT67DYQa3MY61L3j JiIuslbhoUBMA6IphQ7wtUsm9e4EUIF8muumLNYvDbRiCdiMvyoa3lHaQkmotsd1hw DKgbNWCaZnKkurOpWga9FpN3d1c5UM+zuoAlxuH8=
Date: Tue, 26 May 2020 03:45:04 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6E64CK4SBS627MDH543DKDBEVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684/review/418178595@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3684@github.com>
References: <quicwg/base-drafts/pull/3684@github.com>
Subject: Re: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eccf330872c5_45a3f86ef0cd9646659fc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5wlqMfzjyxdOiVzTK3kgIzk32ig>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 10:45:08 -0000

----==_mimepart_5eccf330872c5_45a3f86ef0cd9646659fc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



>  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.

So if we go down this path I think we need carefully to consider each transport mechanism. And the fate of multiplexed flows start to become entangled, such as when a sender chooses a smaller size or DSCP marking because that endpoint expects a characteristic treatment; the unit of loss can be different to the unit of retransmission; PMTUD will need tighter language; pacing may be impacted;  - basically it makes the transport more complex, if that's needed let's try and explain why and understand the constraints - e.g. do we need rules to say when not to multiplex multiple QUIC packets into one IP packet? 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684#discussion_r430320716
----==_mimepart_5eccf330872c5_45a3f86ef0cd9646659fc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3684#discussion_r430320716">draft-ietf-quic-invariants.md</a>:</p>
<pre style='color:#555'>&gt;  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.
</pre>
<p>So if we go down this path I think we need carefully to consider each transport mechanism. And the fate of multiplexed flows start to become entangled, such as when a sender chooses a smaller size or DSCP marking because that endpoint expects a characteristic treatment; the unit of loss can be different to the unit of retransmission; PMTUD will need tighter language; pacing may be impacted;  - basically it makes the transport more complex, if that's needed let's try and explain why and understand the constraints - e.g. do we need rules to say when not to multiplex multiple QUIC packets into one IP packet?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684#discussion_r430320716">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK72OB4QYMCRALTITMTRTOMTBANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6BAYIDJ7X4HVWS6EDRTOMTBA5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDWOMIY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684#discussion_r430320716",
"url": "https://github.com/quicwg/base-drafts/pull/3684#discussion_r430320716",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5eccf330872c5_45a3f86ef0cd9646659fc--


From nobody Tue May 26 05:03:16 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 9E7963A0E85 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 05:03:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Jm8k7aFZGZYa for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 05:03:11 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0C7C33A0E83 for <quic-issues@ietf.org>; Tue, 26 May 2020 05:03:11 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 21CF82C2182 for <quic-issues@ietf.org>; Tue, 26 May 2020 05:03:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590494590; bh=Zj9OhMZDoasK+jGVRlE2h3rZYo0AEl50kJzYzMSUvSo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GFaY/Oe57WnK1corzM0OwbI7AfW/RjLoRwCb5usFKgjpO77j79tFCK7JixfgJA+kT bx7trPRBB9/2VKAzt4ne6XfYJxCkpDxf9/eBwtj4amWaFXjM/8wFaodQBTQDZw1KlT to0o27I8qb8yA+Ku+8sxBrl7F0Btha3/1oNKI19M=
Date: Tue, 26 May 2020 05:03:10 -0700
From: Magnus Westerlund <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK23TD7JF72I2H3G3CN43DTH5EVBNHHCKCF42A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3669/review/418228913@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3669@github.com>
References: <quicwg/base-drafts/pull/3669@github.com>
Subject: Re: [quicwg/base-drafts] ECN probing needs to imply that you stop (#3669)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd057e12a76_4c7b3f872aecd95c3663a3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gloinul
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qLuj4_nJdwivEzDKqlcgzkG2bas>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 12:03:13 -0000

----==_mimepart_5ecd057e12a76_4c7b3f872aecd95c3663a3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gloinul commented on this pull request.

Looks good to me. 



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview-418228913
----==_mimepart_5ecd057e12a76_4c7b3f872aecd95c3663a3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gloinul</b> commented on this pull request.</p>

<p>Looks good to me.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview-418228913">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6P55R6LOECNYSMA63RTOVX5ANCNFSM4NFNAW4Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ5F24DAZTEEBQGZFTRTOVX5A5CNFSM4NFNAW42YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDW2VMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview-418228913",
"url": "https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview-418228913",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd057e12a76_4c7b3f872aecd95c3663a3--


From nobody Tue May 26 05:08:56 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 734D53A0E8D for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 05:08:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 fttFQBPkYu-I for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 05:08:53 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A7D4A3A0E89 for <quic-issues@ietf.org>; Tue, 26 May 2020 05:08:53 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 079511C048A for <quic-issues@ietf.org>; Tue, 26 May 2020 05:08:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590494933; bh=ZZXchPaLnC/ENYkik/XFP/dWUafEhLFqGN7i9HUu5hY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KqiURHzbljx772+tZkiNsdsHBV47xqs3Fv47uBApNHnmXTUn0iyr+/QJc2zrJDrXV 7ksmk86ZspgjekCtMVaPCqIEoNJ3CqGqOyt0uLSXmnS06aQtp/ItSyeq8j/ZOz2CMw FcvaGOje92XUchebDq0hNFoLU2264W4JKO6HxTuM=
Date: Tue, 26 May 2020 05:08:52 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK37ORRNAGK3COIKKPN43DT5JEVBNHHCKCF42A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3669/review/418232735@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3669@github.com>
References: <quicwg/base-drafts/pull/3669@github.com>
Subject: Re: [quicwg/base-drafts] ECN probing needs to imply that you stop (#3669)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd06d4eaf1f_39fd3fd2e4ccd96c5413c8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4UcpPUa80omphlzyla4wCLmYjrw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 12:08:54 -0000

----==_mimepart_5ecd06d4eaf1f_39fd3fd2e4ccd96c5413c8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview-418232735
----==_mimepart_5ecd06d4eaf1f_39fd3fd2e4ccd96c5413c8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview-418232735">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6J7DSXS4EAPZU332DRTOWNJANCNFSM4NFNAW4Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6RA6RUMU25PGA3OKTRTOWNJA5CNFSM4NFNAW42YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDW3THY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview-418232735",
"url": "https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview-418232735",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd06d4eaf1f_39fd3fd2e4ccd96c5413c8--


From nobody Tue May 26 07:03:09 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 4B4E93A0F1D for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:03:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 EWkEWZhPlK_d for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:03:00 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 28F5C3A0F6C for <quic-issues@ietf.org>; Tue, 26 May 2020 07:02:59 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id B27C78C0F43 for <quic-issues@ietf.org>; Tue, 26 May 2020 07:02:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590501777; bh=MAFz3Yqc6ARSnghWHslUajLG0Q62zjSQLfSglfRpuow=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=aBjr2O9Pf65uegTDcSSvWrfeWXatabQn0WqTSh3CNkCw15G+YwpKkym/cWagxIaqy s4A3V8jcIdyPA1Z62wX6fmV0gAdwSe2NQ3G5fTLKZv2PSxwlVtenElgi4w5OkJslrd 7otEQhc4hreJmT/rhSv7J4HLoNwqRBO0Abq6q93M=
Date: Tue, 26 May 2020 07:02:57 -0700
From: Dragana Damjanovic <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZGDL7DRH7I2JIBIGN43EBJDEVBNHHCKP2YWE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3698@github.com>
Subject: [quicwg/base-drafts] Issue when a server cancels a push stream (#3698)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd2191a3880_324b3fa0f3acd964181316"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ddragana
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8RtujRaNyBo0VQOzygFPJnIHgCU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 14:03:05 -0000

----==_mimepart_5ecd2191a3880_324b3fa0f3acd964181316
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The spec suggest that a server should send a CANCEL_PUSH to notify a client that it will not fulfill a PUSH_PROMISE. The server should send CANCEL_PUSH before a push stream has been open.

The server still can cancel a push stream after it has been created and that will have a similar effect as a CANCEL_PUSH frame. There is a small problem with that. If the server resets a push stream before client starts reading, the client may have not read the push_id from the stream and that push_id will never be fulfill or cancel for the client point of view.
Should there be a sentence in the spec explaining this? Probably suggesting not to cancel a push stream until server is certain that client has read it, which is difficult.
Should the spec suggest ot send CANCEL_PUSH even after a push stream has been created? 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3698
----==_mimepart_5ecd2191a3880_324b3fa0f3acd964181316
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The spec suggest that a server should send a CANCEL_PUSH to notify a client that it will not fulfill a PUSH_PROMISE. The server should send CANCEL_PUSH before a push stream has been open.</p>
<p>The server still can cancel a push stream after it has been created and that will have a similar effect as a CANCEL_PUSH frame. There is a small problem with that. If the server resets a push stream before client starts reading, the client may have not read the push_id from the stream and that push_id will never be fulfill or cancel for the client point of view.<br>
Should there be a sentence in the spec explaining this? Probably suggesting not to cancel a push stream until server is certain that client has read it, which is difficult.<br>
Should the spec suggest ot send CANCEL_PUSH even after a push stream has been created?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3698">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZELTRNJK5MGHWXGALRTPDZDANCNFSM4NKKX2YQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK665PDSLGKIJSDCTV3RTPDZDA5CNFSM4NKKX2Y2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJ7LCYQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3698",
"url": "https://github.com/quicwg/base-drafts/issues/3698",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd2191a3880_324b3fa0f3acd964181316--


From nobody Tue May 26 07:26:17 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 B946C3A1043 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:24:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 hEmMTWyoPA9i for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:24:14 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 009A43A1006 for <quic-issues@ietf.org>; Tue, 26 May 2020 07:24:11 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id E38541C050A for <quic-issues@ietf.org>; Tue, 26 May 2020 07:24:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590503050; bh=8/kFJqK5uWDubjdTpYypsDNAm0+W3yN/iCjj9XmNSrk=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=ZnO22UjAWFFJmOROw7fBwUshZ+aDBlzNB6AHbKQuY69mLnAbp/+unmg15Gbz4UQtR e8Qb0S7aysqFD0nsqvu4zkpGtnhXoWZvfg6gKlNPrS1W1CoeJeeQ8KWFjjW2XCMlN7 w+t4y032G7JxVJJ+E7J3tnVyyRlMcpUCpQSSW1YQ=
Date: Tue, 26 May 2020 07:24:10 -0700
From: Dragana Damjanovic <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZVM2IXQFMXLUNISLF43EDYVEVBNHHCKP4UYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3699@github.com>
Subject: [quicwg/base-drafts] A suggested text about a push stream after a CANCEL_PUSH (#3699)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd268ad3852_6c0f3fb3050cd9681244a5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ddragana
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fFW4DGGxPN1OoGSy4QRLMTeCZDc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 14:24:30 -0000

----==_mimepart_5ecd268ad3852_6c0f3fb3050cd9681244a5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I found this while reading the draft. I think the text is a bit misleading. The current test suggests that this is a server error, but it may not be a server error:

&gt; If a push stream arrives after a client has sent CANCEL_PUSH, this MAY be treated as a stream error of type H3_STREAM_CREATION_ERROR.

This PR is just a propose text that make this more clear and changes the error code.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3699

-- Commit Summary --

  * A suggested text about a push stream after a CANCEL_PUSH

-- File Changes --

    M draft-ietf-quic-http.md (7)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3699.patch
https://github.com/quicwg/base-drafts/pull/3699.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3699

----==_mimepart_5ecd268ad3852_6c0f3fb3050cd9681244a5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>I found this while reading the draft. I think the text is a bit misleading. The current test suggests that this is a server error, but it may not be a server error:</p>
<blockquote>
<p>If a push stream arrives after a client has sent CANCEL_PUSH, this MAY be treated as a stream error of type H3_STREAM_CREATION_ERROR.</p>
</blockquote>
<p>This PR is just a propose text that make this more clear and changes the error code.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3699'>https://github.com/quicwg/base-drafts/pull/3699</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>A suggested text about a push stream after a CANCEL_PUSH</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3699/files#diff-3d2f9fd0738589657498f2c06ee02f2f">draft-ietf-quic-http.md</a>
    (7)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3699.patch'>https://github.com/quicwg/base-drafts/pull/3699.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3699.diff'>https://github.com/quicwg/base-drafts/pull/3699.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3699">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5ZPLGUJIOGO4JQAQTRTPGIVANCNFSM4NKLLZRA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3YQ3QXPONGGQ5ZOSDRTPGIVA5CNFSM4NKLLZRKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JJ7STDA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3699",
"url": "https://github.com/quicwg/base-drafts/pull/3699",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecd268ad3852_6c0f3fb3050cd9681244a5--


From nobody Tue May 26 07:38:54 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 C2D383A12B9 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:33:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=unavailable 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 GXvLFJNajFGP for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:33:06 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 65E4F3A1107 for <quic-issues@ietf.org>; Tue, 26 May 2020 07:32:06 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id DB247A0345 for <quic-issues@ietf.org>; Tue, 26 May 2020 07:32:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590503524; bh=SeKo8XO7gRJg10Ut+9FI6xgVfMOB7h8EmbrRpzRt2tw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DhfCmoz5giw/HD0JRHPpxg8Oi0m8VzMul+ys7T3aspEjpmWBmVFF7kB56ADdHJwnz ytBXKdv2RVVEdfmzLMG89LwDnK9a5+xOn2VzkpFARTPclKf9TPa8OuFDX5dTUvFoWa SKLRbX1Z3UfCDcxS7FWPguyqSj6owTHsBz//c8aA=
Date: Tue, 26 May 2020 07:32:04 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5130047128@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd2864c9870_30173faea66cd95c2006a8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LuncdeQcSFBR3z0fKoOpwIS36Pk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 14:33:33 -0000

----==_mimepart_5ecd2864c9870_30173faea66cd95c2006a8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

a020020e5944ff9a73d3b69ca3bfef65898660b7  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/a12dfdf2da7ab759a3866ac0d2a82f4ad8eea650..a020020e5944ff9a73d3b69ca3bfef65898660b7

----==_mimepart_5ecd2864c9870_30173faea66cd95c2006a8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/a020020e5944ff9a73d3b69ca3bfef65898660b7">a020020</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/a12dfdf2da7ab759a3866ac0d2a82f4ad8eea650..a020020e5944ff9a73d3b69ca3bfef65898660b7">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6QRIDL6YW4ALMLNNDRTPHGJANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZSCJZQP3Z2LJPL3MDRTPHGJA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZTAMBUG4YTEOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/a12dfdf2da7ab759a3866ac0d2a82f4ad8eea650..a020020e5944ff9a73d3b69ca3bfef65898660b7",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/a12dfdf2da7ab759a3866ac0d2a82f4ad8eea650..a020020e5944ff9a73d3b69ca3bfef65898660b7",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecd2864c9870_30173faea66cd95c2006a8--


From nobody Tue May 26 07:39:15 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 D247B3A0FB3 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:36:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.553
X-Spam-Level: 
X-Spam-Status: No, score=-1.553 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 Y7SQ_XZ2IVYZ for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:35:59 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6160D3A1067 for <quic-issues@ietf.org>; Tue, 26 May 2020 07:34:44 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id A0FE7E008E for <quic-issues@ietf.org>; Tue, 26 May 2020 07:34:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590503683; bh=qHzuZ1SpomIpEsQscFIIEj88KFFK1v6fWRTdwj1kYw4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IgF+ltbeYpO+X9d7l9ZMahkfE8gd70UFQgPTBikj7tDfrEDVv47mQTHee/WOBV4+g /qIrOgQE6QwtTIMZHDVYrS9MdwKZVLhmUAoZMDBkP3d4/4g0vNcuJDyhjKHZLanfuN /MZqxS4VogcdwFl8Z4+OYRS4tofORsIh0qiIOyqs=
Date: Tue, 26 May 2020 07:34:43 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5130063543@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd2903919a0_2b143f89f32cd96017812c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UIM5sLP3Qzb8uZ3a8X_1QL1xq0c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 14:36:16 -0000

----==_mimepart_5ecd2903919a0_2b143f89f32cd96017812c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

8cf8a460a958032861b5d04bec80585759eb8633  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/a020020e5944ff9a73d3b69ca3bfef65898660b7..8cf8a460a958032861b5d04bec80585759eb8633

----==_mimepart_5ecd2903919a0_2b143f89f32cd96017812c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/8cf8a460a958032861b5d04bec80585759eb8633">8cf8a46</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/a020020e5944ff9a73d3b69ca3bfef65898660b7..8cf8a460a958032861b5d04bec80585759eb8633">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK54VWRYZX4SEQDO253RTPHQHANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK45FCRPO3YTFSPI6QDRTPHQHA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZTAMBWGM2TIMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/a020020e5944ff9a73d3b69ca3bfef65898660b7..8cf8a460a958032861b5d04bec80585759eb8633",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/a020020e5944ff9a73d3b69ca3bfef65898660b7..8cf8a460a958032861b5d04bec80585759eb8633",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecd2903919a0_2b143f89f32cd96017812c--


From nobody Tue May 26 07:39:23 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 784143A1042 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:37:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 KwZsWzQs9SjO for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:37:53 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 18B8D3A0FF2 for <quic-issues@ietf.org>; Tue, 26 May 2020 07:37:46 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 2E702E00A2 for <quic-issues@ietf.org>; Tue, 26 May 2020 07:37:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590503865; bh=EOGS5re1pB5xOCOHkf8/2r9RH29mYNcjDwZLckACC3U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Zq/VqQzNNf3y6m8CWIjXyWJ9MH07aO1AX/BySYJAgJ4JZ81WeN25+iBEjPxwikYyz 2kmklCP8XEdHiTn+hZO/kbM6Sz+L/USYnrRoAlTsTp9HfzhWAYWC5lJuZjm8cZWuAI 5PlmMFK5+kwH66jdQE8EGXL38lkx/w9vhGa/r81A=
Date: Tue, 26 May 2020 07:37:45 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4VWJQDS5VB2ZKGBWF43EFLTEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418364350@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd29b91fbc7_5e6a3fcf976cd9683550bb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/29zXvWq4tLg9gKBqPWg3K-f4Dc4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 14:38:02 -0000

----==_mimepart_5ecd29b91fbc7_5e6a3fcf976cd9683550bb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

@gorryfair commented on this pull request.=0D
=0D
=0D
=0D
> +These can be generated without affecting the transfer of other QUIC fr=
ames.=0D
+The PING Frame is used to trigger generation of an acknowledgement.=0D
+Multiple PADDING Frames are used together to control the length of the p=
robe packet.=C2=A0 =0D
=0D
Would you be happy replacing this with /A PING Frame can be used to trigg=
er generation of an acknowledgement to the packet probe./=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430462604=

----==_mimepart_5ecd29b91fbc7_5e6a3fcf976cd9683550bb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@gorryfair</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430462604">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +These can be generated without affecting =
the transfer of other QUIC frames.=0D
+The PING Frame is used to trigger generation of an acknowledgement.=0D
+Multiple PADDING Frames are used together to control the length of the p=
robe packet.=C2=A0 =0D
</pre>=0D
<p>Would you be happy replacing this with /A PING Frame can be used to tr=
igger generation of an acknowledgement to the packet probe./</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3693#discussion_r430462604">view it on GitHub</a>, or=
 <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK5SMEG=
IZ6HUXEDKWSLRTPH3TANCNFSM4NJQ432A">unsubscribe</a>.<img src=3D"https://gi=
thub.com/notifications/beacon/AFTOJK6GZDABPM2PWRLET3LRTPH3TA5CNFSM4NJQ432=
KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDX3=
XPQ.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r43=
0462604",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r43046=
2604",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecd29b91fbc7_5e6a3fcf976cd9683550bb--


From nobody Tue May 26 07:43:13 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 234D23A0F93 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:43:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 bUXflcXEED0t for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:43:07 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DAE633A0FE8 for <quic-issues@ietf.org>; Tue, 26 May 2020 07:42:45 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 126E79621EE for <quic-issues@ietf.org>; Tue, 26 May 2020 07:42:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590504165; bh=PTpbuBlKkgb9mQWEQzCeahXSstCywq2MANOlMyT8an8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wMtAyTp4r+V/nKGWV7PAB6JN/lVIc4LrTVxLMaeZyBPxZVFezxH5OjTbWTekT9Zl6 2JLjqww8Gsni6nZ6nhp+MyxxO95EdTY1fnBAIyix2AtGoNE91emW18CRVZFLIbQ1E0 yHbkMsCaYvOP3spSVheIpokzNIjv3Li/ZVvTixLo=
Date: Tue, 26 May 2020 07:42:45 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4PUKOH6WA3TQONA4F43EF6LEVBNHHCKKKFHA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3689/c634069186@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3689@github.com>
References: <quicwg/base-drafts/pull/3689@github.com>
Subject: Re: [quicwg/base-drafts] Improve HTTP draft wording: frames carry identifier values (#3689)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd2ae52d54_5e7a3fcf976cd968333169"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0LUeA2tdBjA_-Xj1b5dFRFr8vdA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 14:43:10 -0000

----==_mimepart_5ecd2ae52d54_5e7a3fcf976cd968333169
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

OK.  I have no preference how this sentence is fixed -- as long as it's fixed.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634069186
----==_mimepart_5ecd2ae52d54_5e7a3fcf976cd968333169
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>OK.  I have no preference how this sentence is fixed -- as long as it's fixed.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634069186">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5JGZBZRD6AQPMWWM3RTPIOLANCNFSM4NIDL3PQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5ZJYIWXKIK6RLONT3RTPIOLA5CNFSM4NIDL3P2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXFSBQQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634069186",
"url": "https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634069186",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd2ae52d54_5e7a3fcf976cd968333169--


From nobody Tue May 26 07:55:13 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 12F043A0C1C for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:55:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 zP7XHytwhE-h for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:55:05 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 86FB43A0C17 for <quic-issues@ietf.org>; Tue, 26 May 2020 07:55:05 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 8DBD98C0B73 for <quic-issues@ietf.org>; Tue, 26 May 2020 07:55:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590504904; bh=qKCes3djx/dAfg4BvzH0pbJLlgz1YbhOvruR1XvGK+I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xZoCQowt18b3r8wtCKE+hUQHoj9ybnw7255oy2c9gaSKYrLKyTeEgQzKdYLd5Ims4 MA0S7XW5UUgPiSJLuPke4O6dD9OX3o+Xt5Qn0VJ4T01RwpYg70tzHzdNqh0CTP1Pme QWHzKl1srmjZkaIeaNjeIMNa7rNE8yzHzDJACEpk=
Date: Tue, 26 May 2020 07:55:04 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5130188133@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd2dc87e19d_325d3fbd656cd95c926ce"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4nRpTCPvpN7nDpmLV5GWVehYdS4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 14:55:11 -0000

----==_mimepart_5ecd2dc87e19d_325d3fbd656cd95c926ce
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

8c185a83bdf3a07328737c231f2420480444f9bf  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/8cf8a460a958032861b5d04bec80585759eb8633..8c185a83bdf3a07328737c231f2420480444f9bf

----==_mimepart_5ecd2dc87e19d_325d3fbd656cd95c926ce
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/8c185a83bdf3a07328737c231f2420480444f9bf">8c185a8</a>  Update draft-ietf-quic-transport.md
</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/8cf8a460a958032861b5d04bec80585759eb8633..8c185a83bdf3a07328737c231f2420480444f9bf">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7OF7I5QJ32EHF4OF3RTPJ4RANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK56ET66XZ2HOPK4OGDRTPJ4RA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZTAMJYHAYTGMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/8cf8a460a958032861b5d04bec80585759eb8633..8c185a83bdf3a07328737c231f2420480444f9bf",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/8cf8a460a958032861b5d04bec80585759eb8633..8c185a83bdf3a07328737c231f2420480444f9bf",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecd2dc87e19d_325d3fbd656cd95c926ce--


From nobody Tue May 26 07:56:45 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 718043A0CCA for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:56:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 j79y4ko5mWEj for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 07:56:38 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 70EDD3A0C1F for <quic-issues@ietf.org>; Tue, 26 May 2020 07:56:38 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id C4A0AE08D0 for <quic-issues@ietf.org>; Tue, 26 May 2020 07:56:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590504997; bh=f8N2IlTXDpq9IqXa8w+Cigl+JY4dFjnzXbhSE8MkAVE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=W6ciiWp3uyfQC6g6kfiXReNe84CaSq3tn7jiOjcRvdEP9Gd+onYy0nywaTDfQuB2S PpJKGvtSIW/SD+4yjx8PS0MUf1dlAkIPcrLB5L5kHDNLL+X9Y69ed/PoYJFmdmYcl7 lhj0xEtiPNRBC8du79JiY9RJTsb5QLCEC5DXiS3U=
Date: Tue, 26 May 2020 07:56:37 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5130197931@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd2e25b5044_94c3ff982ecd9641450e1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CoV5gIePPtjZformIq10omq9IWw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 14:56:42 -0000

----==_mimepart_5ecd2e25b5044_94c3ff982ecd9641450e1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

acda596362122e5239713c1d3d24531f20d6ef5a  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/8c185a83bdf3a07328737c231f2420480444f9bf..acda596362122e5239713c1d3d24531f20d6ef5a

----==_mimepart_5ecd2e25b5044_94c3ff982ecd9641450e1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/acda596362122e5239713c1d3d24531f20d6ef5a">acda596</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/8c185a83bdf3a07328737c231f2420480444f9bf..acda596362122e5239713c1d3d24531f20d6ef5a">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6DUCNB33ALIHZMPE3RTPKCLANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2GNCHL2D22TRNV2WTRTPKCLA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZTAMJZG44TGMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/8c185a83bdf3a07328737c231f2420480444f9bf..acda596362122e5239713c1d3d24531f20d6ef5a",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/8c185a83bdf3a07328737c231f2420480444f9bf..acda596362122e5239713c1d3d24531f20d6ef5a",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecd2e25b5044_94c3ff982ecd9641450e1--


From nobody Tue May 26 09:42:49 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 91FCD3A0A78 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 09:42:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 2Wx9ESxtyp2X for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 09:42:45 -0700 (PDT)
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D85DF3A0A62 for <quic-issues@ietf.org>; Tue, 26 May 2020 09:42:45 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 5880A26047E for <quic-issues@ietf.org>; Tue, 26 May 2020 09:42:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590511365; bh=60bQh1jxrsMyFYIRXzkDJSXi6fgKeaAiDUHAvWJbp+c=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IB/fVMQP1I6Yx+Zpz+IcO1vk3DBz2ou48IHYu1TjJYrRGFH86MTthS78Y4OcovxZZ u9/OtXMbAIwrJAxlhJ56CG+VgqUoEa9YqMxgzDxsBGoMoTXZRawx1UHDNhqixBNL5m BTjp/T5yE9NOnxEACYO3t4q/4gvbUwtY6viVezS4=
Date: Tue, 26 May 2020 09:42:45 -0700
From: mjoras <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ZIB4JXBSPOKQ27JV43EUALEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/634140828@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd47059a4e_2a913fd241acd96c401171"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: mjoras
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RTebXEwAck6zWdCjwrco1Ij3koQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 16:42:48 -0000

----==_mimepart_5ecd47059a4e_2a913fd241acd96c401171
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I disagree with that view. If the specification can be read as such, then I think we need to make changes. A client should refrain from using an unauthenticated signal for determining what to do with future connection attempts. It does not matter what that unauthenticated signal is (e.g., an error code in Initial packet, failed version negotiation).

This is practically impossible. To function reliably on the internet a client _has_ to use heuristics and unauthenticated information in order to provide a good user experience and not overwhelm server resources.

As a trivial example, if I wrote a client which completely ignores things like VN and immediately retries a QUIC connection, I am locked into supporting that version on my server indefinitely. Since my client will now effectively DOS me if I remove support for this version from the server. This is unacceptable for internet scale. Additionally, rejecting a connection post-handshake makes fallback to TCP more complicated -- it is much simpler to use a happy eyeballs mechanism and "race" TCP and QUIC, stopping the TCP connection once the handshake is successful.

I am highly sympathetic to @marten-seemann's point here. As has been said already, we already have 100% reliable and trivially implementable way to interrupt the handshake in v1with version negotiation. Having an additional signal which is more explicit can only help clients making new connection decisions. We don't necessarily have to prescribe what the client does, but we can say why a server may issue certain errors during the handshake.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634140828
----==_mimepart_5ecd47059a4e_2a913fd241acd96c401171
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>I disagree with that view. If the specification can be read as such, then I think we need to make changes. A client should refrain from using an unauthenticated signal for determining what to do with future connection attempts. It does not matter what that unauthenticated signal is (e.g., an error code in Initial packet, failed version negotiation).</p>
</blockquote>
<p>This is practically impossible. To function reliably on the internet a client <em>has</em> to use heuristics and unauthenticated information in order to provide a good user experience and not overwhelm server resources.</p>
<p>As a trivial example, if I wrote a client which completely ignores things like VN and immediately retries a QUIC connection, I am locked into supporting that version on my server indefinitely. Since my client will now effectively DOS me if I remove support for this version from the server. This is unacceptable for internet scale. Additionally, rejecting a connection post-handshake makes fallback to TCP more complicated -- it is much simpler to use a happy eyeballs mechanism and "race" TCP and QUIC, stopping the TCP connection once the handshake is successful.</p>
<p>I am highly sympathetic to <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/marten-seemann/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/marten-seemann">@marten-seemann</a>'s point here. As has been said already, we already have 100% reliable and trivially implementable way to interrupt the handshake in v1with version negotiation. Having an additional signal which is more explicit can only help clients making new connection decisions. We don't necessarily have to prescribe what the client does, but we can say why a server may issue certain errors during the handshake.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634140828">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZKJAK6I255K2MPSUDRTPWQLANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7TJUIWPNCFQJEUMALRTPWQLA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXGDRHA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634140828",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634140828",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd47059a4e_2a913fd241acd96c401171--


From nobody Tue May 26 10:32:52 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 2EB9E3A0AF1 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 10:32:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 2gexsmqII-Zj for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 10:32:49 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3FFE13A0AF7 for <quic-issues@ietf.org>; Tue, 26 May 2020 10:32:49 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 67ADCE15B8 for <quic-issues@ietf.org>; Tue, 26 May 2020 10:32:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590514368; bh=0vYa7eBoI91XaV0D3kmI0PJJia5WSJj5JmbU9iw90aA=; h=Date:From:To:Subject:From; b=AEbO/0bCll6uKct9qEIHmPaO63DMv0HAAIC1BwFtVYsTNqQim2ksFNG6NgomMw4bj LN2TwuxojfmhzpJnRAk8ERvkuE3pj9TQvlWCnTM+jervPNHhIhAwFOSgxnm1bCTlVS Z9nFPmtl9svJbb0iVnWLlDxR5bp1+KngK/5jrnYI=
Date: Tue, 26 May 2020 10:32:48 -0700
From: martinduke <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/fig3-4/000000-97382e@github.com>
Subject: [quicwg/load-balancers] 97382e: fix figures
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QwIyO-boB_afiRRtBJ9qtoYjl10>
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: Tue, 26 May 2020 17:32:51 -0000

  Branch: refs/heads/fig3-4
  Home:   https://github.com/quicwg/load-balancers
  Commit: 97382eaae28603339133f6169aab9f40356f03e9
      https://github.com/quicwg/load-balancers/commit/97382eaae28603339133f6169aab9f40356f03e9
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  fix figures



From nobody Tue May 26 10:33:28 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 06AD63A0B0E for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 10:33:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Nut7UmWi-QWX for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 10:33:24 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D47543A0AEB for <quic-issues@ietf.org>; Tue, 26 May 2020 10:33:24 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 64FB81C1688 for <quic-issues@ietf.org>; Tue, 26 May 2020 10:33:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590514403; bh=y8QOIUIBW1oOUaTJAGKG/X5goFoxdZQlkerBqaVrbtw=; h=Date:From:To:Subject:From; b=SIo8kTrYvAV0ivi6iCzhD9oMLIZRueE4+F/YTbFsyTkr4McdHpikOhBqSACL4OHcS PUwCyksVzpyYPzwEdhxaSt0KNc+pbhqJzVXZLYRrk2Hqx/zA1PlYRmZGDxdajy5F9l OwzImYdyXEDWGwrlTUtj5iCjMRZJcrsDYvooq1VU=
Date: Tue, 26 May 2020 10:33:23 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/gh-pages/e464e9-637423@github.com>
Subject: [quicwg/load-balancers] 637423: Script updating gh-pages from 97382ea. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2vtCUDER4ys1erW7wDGayWmUjck>
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: Tue, 26 May 2020 17:33:26 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/load-balancers
  Commit: 6374234ade77693ea9632f8230bc5282c05758a6
      https://github.com/quicwg/load-balancers/commit/6374234ade77693ea9632f8230bc5282c05758a6
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    A fig3-4/draft-ietf-quic-load-balancers.html
    A fig3-4/draft-ietf-quic-load-balancers.txt
    A fig3-4/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 97382ea. [ci skip]



From nobody Tue May 26 10:33:33 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 779423A0AE6 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 10:33:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 cA8VYOlmfKjv for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 10:33:31 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 721663A0B05 for <quic-issues@ietf.org>; Tue, 26 May 2020 10:33:31 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 767666E110D for <quic-issues@ietf.org>; Tue, 26 May 2020 10:33:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590514408; bh=0Oza6Ixz9eht76upf/ohboi6hvKxfhbPSm9+Pn4dfsY=; h=Date:From:To:Subject:From; b=vHJNqWLJEvrisbhXsaiXc4Ump2/wRuXgiZdUDWtV7maG09yqK8LbgEhLSJgGjVuHV s0RXnMoQj6hOyfbI6MZbxi/CeIJNIl4Lzeq6pcaCTWhdfEmtKrOJs4m6xsMYisS/x9 q1ZKxITTodsyqemqpDVVVvxyj33CdglklL6bz/Xs=
Date: Tue, 26 May 2020 10:33:28 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/gh-pages/637423-8003e8@github.com>
Subject: [quicwg/load-balancers] 8003e8: Script updating archive at 2020-05-26T17:33:04Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ypJdJ-ZbNuCbf9TvKB-iSYlvdog>
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: Tue, 26 May 2020 17:33:33 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/load-balancers
  Commit: 8003e88022f5096f4315f4af837513ee57e3e057
      https://github.com/quicwg/load-balancers/commit/8003e88022f5096f4315f4af837513ee57e3e057
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M archive.json
    M issues.js

  Log Message:
  -----------
  Script updating archive at 2020-05-26T17:33:04Z. [ci skip]



From nobody Tue May 26 10:58:27 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 BD5643A084D for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 10:58:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 3-FYYc3vV_Qz for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 10:58:24 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A35013A0881 for <quic-issues@ietf.org>; Tue, 26 May 2020 10:58:24 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 6A31E2C0FFD for <quic-issues@ietf.org>; Tue, 26 May 2020 10:58:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590515903; bh=q2eO9zn8YYqUd25bzeMQheNAnr4eIntleMU4hpqEsGs=; h=Date:From:To:Subject:From; b=nvHs91dIUaMkSd9eiyHww6hkJgKKFr9UsAimWZt1RTDz+iblOdpT19Z16SfqcuYeW 6BuW+9gIPOExFnHsUlzRE8hFU3EP2wUsqu1NNzQSaZfD+uEzrSqNgC0vlns+FW8Hk7 4qWTm2VsCjM3ZzcKTzq4UuymGfF46+S9zdTgrPGQ=
Date: Tue, 26 May 2020 10:58:23 -0700
From: martinduke <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/noncompliant/000000-bc1b63@github.com>
Subject: [quicwg/load-balancers] bc1b63: tweaked recommended non-compliance hash fields
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SlzCWE_i5y52zuqyako7Q-4ayzw>
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: Tue, 26 May 2020 17:58:26 -0000

  Branch: refs/heads/noncompliant
  Home:   https://github.com/quicwg/load-balancers
  Commit: bc1b63801fb1b2102c100d34619b5df29b99158b
      https://github.com/quicwg/load-balancers/commit/bc1b63801fb1b2102c100d34619b5df29b99158b
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  tweaked recommended non-compliance hash fields



From nobody Tue May 26 10:58:50 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 0C2CA3A089D for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 10:58:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 nvTEVWyeht8l for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 10:58:48 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E43153A0881 for <quic-issues@ietf.org>; Tue, 26 May 2020 10:58:47 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 4785AE1616 for <quic-issues@ietf.org>; Tue, 26 May 2020 10:58:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590515927; bh=ejGzOo+dT5qfxiIWCAoVsH9Xb/yC8s+lPlNoFyXiuxs=; h=Date:From:To:Subject:From; b=k9ZgY45Ls3E/nZnk7Vzz4gxIwas8CVgN1D5EYCkj9cX5JuyHvhfGjn5wGMy6NFyJu 5YdbFW6GkAQo3Op8tPgdn8loDi1Kw3+yz30y83rbYJoW3GGD7j3vNdXL56FDRdPUV1 Rkt+xDFlW4/0QEVUWNWBUFrrFeCINon4MV/X88Jk=
Date: Tue, 26 May 2020 10:58:47 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/gh-pages/8003e8-5951b1@github.com>
Subject: [quicwg/load-balancers] 5951b1: Script updating gh-pages from bc1b638. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/J7bhSddkHcX2dqQPZyue6N2sgfM>
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: Tue, 26 May 2020 17:58:49 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/load-balancers
  Commit: 5951b14277640fcef4ef9394c94a812b54867b9a
      https://github.com/quicwg/load-balancers/commit/5951b14277640fcef4ef9394c94a812b54867b9a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M index.html
    A noncompliant/draft-ietf-quic-load-balancers.html
    A noncompliant/draft-ietf-quic-load-balancers.txt
    A noncompliant/index.html

  Log Message:
  -----------
  Script updating gh-pages from bc1b638. [ci skip]



From nobody Tue May 26 11:07:37 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 944083A0C8B for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 11:07:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 fElQdWlV7wf2 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 11:07:35 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 512AD3A0C89 for <quic-issues@ietf.org>; Tue, 26 May 2020 11:07:35 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 0D8546A1ECE for <quic-issues@ietf.org>; Tue, 26 May 2020 11:07:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590516454; bh=kUntBmSZfBCSw2wT7/WKoHO92sc9ud0kRg3TA0Ud9hw=; h=Date:From:To:Subject:From; b=yjr1c01YrIAVfKL3LXyZiHUktDjUtaqiBzr+A2Brddkt891x+tkWxkZNEWd8+YRON Z24/Fe+ydBb06NwwKkXlkPDG7FQWWg+g4aLV0a43mz7TiWALL4VeF+y+aree75rUvV shteLfOb3twcQpwF9SDJupWQAeQ9Cod9Z7i2F4X4=
Date: Tue, 26 May 2020 11:07:33 -0700
From: martinduke <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/new-acronym/000000-a257b6@github.com>
Subject: [quicwg/load-balancers] a257b6: got rid of SCID acronym
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/togtyfX9ibgMBVGvAQfj0kl8Qkc>
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: Tue, 26 May 2020 18:07:37 -0000

  Branch: refs/heads/new-acronym
  Home:   https://github.com/quicwg/load-balancers
  Commit: a257b65356790128948bccbb26496d6dc7be33be
      https://github.com/quicwg/load-balancers/commit/a257b65356790128948bccbb26496d6dc7be33be
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  got rid of SCID acronym



From nobody Tue May 26 11:07:59 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 A107B3A0CA0 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 11:07:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 LGcMuSv8D21n for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 11:07:57 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4BCC93A0C9D for <quic-issues@ietf.org>; Tue, 26 May 2020 11:07:57 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 7FDD8A1023 for <quic-issues@ietf.org>; Tue, 26 May 2020 11:07:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590516476; bh=w9aICO5S0fe8jNs+JQRifh8ke4x5u8nmL2CM0zFwjXQ=; h=Date:From:To:Subject:From; b=bzPjKedfYKYCXWcd2U0noVf35R4MswgBVfdmvpzwPE0ZVAicxSLVDIY8panW61P8e gGX8bEXApzrjL37bEJNjWoZvE5rskR20eLsoVQiCs3Hgs/+NFREzVO7l82J7XF17J0 4rjlOgLHaC7U/BhBWxTeKyCvZXUgwKSvDZQaKZm0=
Date: Tue, 26 May 2020 11:07:56 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/gh-pages/5951b1-8b777a@github.com>
Subject: [quicwg/load-balancers] 8b777a: Script updating gh-pages from a257b65. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HPHkzWPOrR_c37q9UMPsvT1eoew>
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: Tue, 26 May 2020 18:07:59 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/load-balancers
  Commit: 8b777a636f793a88fdcbf382c4522b64f2f2f589
      https://github.com/quicwg/load-balancers/commit/8b777a636f793a88fdcbf382c4522b64f2f2f589
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M index.html
    A new-acronym/draft-ietf-quic-load-balancers.html
    A new-acronym/draft-ietf-quic-load-balancers.txt
    A new-acronym/index.html

  Log Message:
  -----------
  Script updating gh-pages from a257b65. [ci skip]



From nobody Tue May 26 11:14:33 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 3FE473A0E8B for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 11:14:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 110ifwKTcDkv for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 11:14:30 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1A94F3A0E78 for <quic-issues@ietf.org>; Tue, 26 May 2020 11:14:30 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 3CB25660E4C for <quic-issues@ietf.org>; Tue, 26 May 2020 11:14:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590516869; bh=oIAOTT0JT2TM+8Ne6zrc7xRiL6foFsGCeh8CSJyXvNM=; h=Date:From:To:Subject:From; b=W7289jjcFRh+jtTYIPMuTWG3tgPpC46S19cCVO3ezAmOENaCIo0EGCdqn5BwFEt7T WPDR30Bmf/ddMYzWgigwwEUIZA40OnKah2Ll7CDk3HvfUoKb+N4dJJWS34fDarOB0k 7c5OyQWhJLZbXYD7gr+IDjMsitqNHW0VRsKLTzSY=
Date: Tue, 26 May 2020 11:14:29 -0700
From: martinduke <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/master/6b5ff6-5b6034@github.com>
Subject: [quicwg/load-balancers] 97382e: fix figures
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SbHCBbexSkqO_lOGXOTluFW4vSA>
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: Tue, 26 May 2020 18:14:31 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/load-balancers
  Commit: 97382eaae28603339133f6169aab9f40356f03e9
      https://github.com/quicwg/load-balancers/commit/97382eaae28603339133f6169aab9f40356f03e9
  Author: Martin Duke <martin.h.duke@gmail.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  fix figures


  Commit: 5b6034235feebcf92c64c8aef1a56760f5329996
      https://github.com/quicwg/load-balancers/commit/5b6034235feebcf92c64c8aef1a56760f5329996
  Author: martinduke <martin.h.duke@gmail.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.md

  Log Message:
  -----------
  Merge pull request #24 from quicwg/fig3-4

fix figures


Compare: https://github.com/quicwg/load-balancers/compare/6b5ff625a094...5b6034235fee


From nobody Tue May 26 11:14:37 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 CE3CB3A0E78 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 11:14:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 2dGTXXJ6a2Pa for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 11:14:30 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9A1293A0E89 for <quic-issues@ietf.org>; Tue, 26 May 2020 11:14:30 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id F008D66043E for <quic-issues@ietf.org>; Tue, 26 May 2020 11:14:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590516869; bh=LszjUs8tglZ78W8MqACHtl3M9drjucHP2I4/Z0hSs6A=; h=Date:From:To:Subject:From; b=ftqRK4BsIkL1eDaTy+Wi14z14EIimIbiBe29FpQCNjg68b/D/dg22GZ8pDs2ZA+S6 fuxxkPRszDIbVX8DCXMFBa5gaTk7HTBDWxavcPPcn22uUJhqbMrD/qrVbggwvETqz/ m5sd3CUmg48Ls9riUdQq1aHXekFGXR9Q3aV2FWCo=
Date: Tue, 26 May 2020 11:14:29 -0700
From: martinduke <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/fig3-4/97382e-000000@github.com>
Subject: [quicwg/load-balancers]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ShFBbizhe_Jaf5W7v7OY5ZnFPQo>
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: Tue, 26 May 2020 18:14:32 -0000

  Branch: refs/heads/fig3-4
  Home:   https://github.com/quicwg/load-balancers


From nobody Tue May 26 11:15:05 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 59FE03A0C75 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 11:15:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 P0cwQDGubd05 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 11:15:03 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 242023A0D08 for <quic-issues@ietf.org>; Tue, 26 May 2020 11:15:03 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 70E779602DF for <quic-issues@ietf.org>; Tue, 26 May 2020 11:15:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590516902; bh=25mugReO8SIaLjtvpKA/JgVw6kdPf1JHpjA6HxTZjC8=; h=Date:From:To:Subject:From; b=FBgXTdTOlQSZ5C48yGnlLwmL0EYx5Fk9Leb/v6yaShByCQusLrL5lTBXQYVlCY/YK 26u/pzPjEZX6/jIx8cwib/n/gR1Oo/o9zuU3n5fGEAOskzS7gX/aKSAfbYpE5OEUTt JS6l+lyZnBIAxMhlRJgEU9quzp6AhqzHmDvF7Xq0=
Date: Tue, 26 May 2020 11:15:02 -0700
From: quicwg-bot <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/load-balancers/push/refs/heads/gh-pages/8b777a-8cfa5f@github.com>
Subject: [quicwg/load-balancers] 8cfa5f: Script updating gh-pages from 5b60342. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GK3wUbwJa5EFZirBW9YKHTU55Fc>
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: Tue, 26 May 2020 18:15:04 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/load-balancers
  Commit: 8cfa5f27b38ca49f9e32ead53cbff376f16fa490
      https://github.com/quicwg/load-balancers/commit/8cfa5f27b38ca49f9e32ead53cbff376f16fa490
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-load-balancers.html
    M draft-ietf-quic-load-balancers.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 5b60342. [ci skip]



From nobody Tue May 26 11:43:54 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 931543A0ECC for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 11:43:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 zV4aB7k0ELa7 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 11:43:51 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A14F93A0ECA for <quic-issues@ietf.org>; Tue, 26 May 2020 11:43:51 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 76E79520D77 for <quic-issues@ietf.org>; Tue, 26 May 2020 11:43:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590518630; bh=v4YM+WHJgxEwkvUVlgvJDdVgeYsf5XnDjHKBsONuG8A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SW5vWJ/xfdXAsQDDElU31oqpqn/daOA2KbMOiZ+mCPixd2h+kYHycwhWaYoikpFYO mNoU5gYImcUEGeazCqneLl0ZbPFf4JasA1H6HnNMxyxQQuQBdj7q2YXLd2breV7MJp O6vJh70ECCLYgHpCW6Jy/C43G5GEnpAGRLN38RsU=
Date: Tue, 26 May 2020 11:43:50 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4Y4ALUGX4WIIWBWLF43FCGNEVBNHHCKOY5XA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3697/review/418577286@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3697@github.com>
References: <quicwg/base-drafts/pull/3697@github.com>
Subject: Re: [quicwg/base-drafts] Citation rules for QUIC (#3697)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd636667757_5e223feab6ccd96413402b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ZGq30wUjwqVt_Gahv0lZe_454Go>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 18:43:53 -0000

----==_mimepart_5ecd636667757_5e223feab6ccd96413402b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop approved this pull request.

I probably would have made it part of the preceding paragraph, but I don't feel strongly.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418577286
----==_mimepart_5ecd636667757_5e223feab6ccd96413402b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> approved this pull request.</p>

<p>I probably would have made it part of the preceding paragraph, but I don't feel strongly.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418577286">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3MAHBJ6FCU4UEQOFTRTQEWNANCNFSM4NKAMVEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7BMJH4FVNSBBQQZBTRTQEWNA5CNFSM4NKAMVEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODDZPXBQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418577286",
"url": "https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418577286",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd636667757_5e223feab6ccd96413402b--


From nobody Tue May 26 14:21:18 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 AB9A03A0838 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 14:21:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.1
X-Spam-Level: 
X-Spam-Status: No, score=-8.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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 4BUW7mKLFp2o for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 14:21:15 -0700 (PDT)
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 321243A082E for <quic-issues@ietf.org>; Tue, 26 May 2020 14:21:15 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 427CD282D80 for <quic-issues@ietf.org>; Tue, 26 May 2020 14:21:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590528074; bh=kHAKSXyQld4dYhExFeZ4kpWAoTuIIROIVB7Q8Bb0Hcs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tIvfI2PJ4l+ErNgkhBI9Vm9xIud9SJvfqr9Xml/iws3pNDFPIQuIPOMpZYsi7vBun 0VIFDsowuDUmGnJyybWvRaffxxZrd7M4HZvkO8LeM1I2HNchqzFS5ZDpb/0hLFYy2b sFadF0CydmmKP9qdegb/FCTsJiP9iVBZMfrq4iMY=
Date: Tue, 26 May 2020 14:21:14 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYZ7NOSRDFTUWBHL5N43FUUVEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/634285890@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd884a33e2a_124e3fb6d24cd95c117976"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BHn75cWxe4s2JZhDGghoeyeWORg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 21:21:17 -0000

----==_mimepart_5ecd884a33e2a_124e3fb6d24cd95c117976
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mjoras I'd emphasize that the specification does not talk about happy eyeballing. We should concentrate on discussing what to do when only QUIC is being used.

Having that said, I'd hope that we can agree on one principle: QUIC cannot respect unauthenticated information any more than TLS over TCP does. Otherwise, QUIC becomes more prone to MITM attacks that TLS over TCP is - a disobedience to our charter.

>  To function reliably on the internet a client *has* to use heuristics and unauthenticated information in order to provide a good user experience and not overwhelm server resources.

That *might* be true, but our experience with TLS over TCP is that we do not need an error code for the purpose.

> As has been said already, we already have 100% reliable and trivially implementable way to interrupt the handshake in v1 with version negotiation. Having an additional signal which is more explicit can only help clients making new connection decisions.

FWIW, you do not need a version negotiation packet. Per my understanding, any server can send a private error code. Or a reason phrase explaining things.

> We don't necessarily have to prescribe what the client does, but we can say why a server may issue certain errors during the handshake.

Am I correct to understand that the reason you are advocating for having more error codes is to allow a server to control the behavior of client for future connection attempts? Assuming that is the case, I'd oppose to having such error codes regardless of how we would describe them. Because IMO that is effectively about making QUIC more prone to attacks than TLS over TCP is.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634285890
----==_mimepart_5ecd884a33e2a_124e3fb6d24cd95c117976
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/mjoras/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mjoras">@mjoras</a> I'd emphasize that the specification does not talk about happy eyeballing. We should concentrate on discussing what to do when only QUIC is being used.</p>
<p>Having that said, I'd hope that we can agree on one principle: QUIC cannot respect unauthenticated information any more than TLS over TCP does. Otherwise, QUIC becomes more prone to MITM attacks that TLS over TCP is - a disobedience to our charter.</p>
<blockquote>
<p>To function reliably on the internet a client <em>has</em> to use heuristics and unauthenticated information in order to provide a good user experience and not overwhelm server resources.</p>
</blockquote>
<p>That <em>might</em> be true, but our experience with TLS over TCP is that we do not need an error code for the purpose.</p>
<blockquote>
<p>As has been said already, we already have 100% reliable and trivially implementable way to interrupt the handshake in v1 with version negotiation. Having an additional signal which is more explicit can only help clients making new connection decisions.</p>
</blockquote>
<p>FWIW, you do not need a version negotiation packet. Per my understanding, any server can send a private error code. Or a reason phrase explaining things.</p>
<blockquote>
<p>We don't necessarily have to prescribe what the client does, but we can say why a server may issue certain errors during the handshake.</p>
</blockquote>
<p>Am I correct to understand that the reason you are advocating for having more error codes is to allow a server to control the behavior of client for future connection attempts? Assuming that is the case, I'd oppose to having such error codes regardless of how we would describe them. Because IMO that is effectively about making QUIC more prone to attacks than TLS over TCP is.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634285890">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZZ7QCSOBLH2MYTS5LRTQXEVANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2MG5ZWWO6T35W4ASLRTQXEVA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXHG6QQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634285890",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634285890",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd884a33e2a_124e3fb6d24cd95c117976--


From nobody Tue May 26 14:59:06 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 072043A0A44 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 14:59:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 7eqF-a5ywora for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 14:59:01 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D92CD3A09A9 for <quic-issues@ietf.org>; Tue, 26 May 2020 14:59:00 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 7169A2C0037 for <quic-issues@ietf.org>; Tue, 26 May 2020 14:58:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590530338; bh=rhfW2Wq1+lrK5ApDo+kGOT1sDdHyyrp1WyA9tQSNehc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FyjxwrYEeUZpgmBAlOQvv4W5XGgilivOxJ6YKzo/M+D92FRhUnir8JplLiNDSuBCI UppTIScUelmI8DZcla6ANTg5J79tggclhdEKWI7B4njFxgLBpRO/aM6WA6AmyeU5rj 5GP3RpCo0LMI1Oslt2NaBDRT4XRzdu/gIZTn8Mms=
Date: Tue, 26 May 2020 14:58:58 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY2T2TOSP3BRIPI5YF43FZCFEVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684/review/418708536@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3684@github.com>
References: <quicwg/base-drafts/pull/3684@github.com>
Subject: Re: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd912261b09_21623fbb0dacd96c21647d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/t0syAyuCZrxfCb1qyJpBj_n6LpY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 21:59:05 -0000

----==_mimepart_5ecd912261b09_21623fbb0dacd96c21647d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



>  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.

I don't understand what you mean by "if" here.  This is a choice already made for QUICv1: it has multiple packets in a datagram.  That those packets have most of the invariant properties doesn't matter because that isn't detectable.

So if the listed problems are problems - and I have no idea how - then they are already problems.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684#discussion_r430731056
----==_mimepart_5ecd912261b09_21623fbb0dacd96c21647d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3684#discussion_r430731056">draft-ietf-quic-invariants.md</a>:</p>
<pre style='color:#555'>&gt;  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.
</pre>
<p>I don't understand what you mean by "if" here.  This is a choice already made for QUICv1: it has multiple packets in a datagram.  That those packets have most of the invariant properties doesn't matter because that isn't detectable.</p>
<p>So if the listed problems are problems - and I have no idea how - then they are already problems.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684#discussion_r430731056">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK22OFE2TGMVSNZC3JLRTQ3SFANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4JONTAC3552G4HGLDRTQ3SFA5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2PYOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684#discussion_r430731056",
"url": "https://github.com/quicwg/base-drafts/pull/3684#discussion_r430731056",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd912261b09_21623fbb0dacd96c21647d--


From nobody Tue May 26 15:04:21 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 D03353A0A74 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:04:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 aNblMbJ0XQ2k for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:04:18 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 57F6D3A0A6E for <quic-issues@ietf.org>; Tue, 26 May 2020 15:04:18 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id A77F0C60EA0 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:04:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590530657; bh=velnPQflLUlrMMQOh1w7Ax+yKnQ1UM6VkP/ciM/0zAE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Kc9X0AI0Q1J/7RDNqr83FDprFy2mK0FopgKsVhvRTCoseN8WebkgGXHTjYdz9ruRA jI+J3Fw/x+53Ej49n6grwGpw4jqs9nKNQbmXWvMpXtGIfBFbEpf0b9Mecj71P5vQDD NwonVFc07vJa19ZY+RnoREyUs1DZCFOxBr8yi3Pw=
Date: Tue, 26 May 2020 15:04:17 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7WYL7Q2EDGO5TX3EF43FZWDEVBNHHCKP2YWE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3698/634304868@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3698@github.com>
References: <quicwg/base-drafts/issues/3698@github.com>
Subject: Re: [quicwg/base-drafts] Issue when a server cancels a push stream (#3698)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd926198120_12513fb6d24cd95c2195cf"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XPrp582jL3s-uQyXyVd4yKy8zxY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:04:20 -0000

----==_mimepart_5ecd926198120_12513fb6d24cd95c2195cf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The server doesn't need to ensure that the push ID is read if CANCEL_PUSH is used, mostly.  If the stream type is read, but not the push ID (which is entirely possible), then the client will know that there was a push and that it didn't happen, but can't connect that with the promise or cancellation.  In that case, clients need to handle that.

In fact, this highlights the value of CANCEL_PUSH in the case where the stream is reset.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3698#issuecomment-634304868
----==_mimepart_5ecd926198120_12513fb6d24cd95c2195cf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The server doesn't need to ensure that the push ID is read if CANCEL_PUSH is used, mostly.  If the stream type is read, but not the push ID (which is entirely possible), then the client will know that there was a push and that it didn't happen, but can't connect that with the promise or cancellation.  In that case, clients need to handle that.</p>
<p>In fact, this highlights the value of CANCEL_PUSH in the case where the stream is reset.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3698#issuecomment-634304868">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZKUKJT4NSSRXTZA5LRTQ4GDANCNFSM4NKKX2YQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2CCZ4QXSPDLR5V6NDRTQ4GDA5CNFSM4NKKX2Y2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXHLSZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3698#issuecomment-634304868",
"url": "https://github.com/quicwg/base-drafts/issues/3698#issuecomment-634304868",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd926198120_12513fb6d24cd95c2195cf--


From nobody Tue May 26 15:13:15 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 ED6613A0A9C for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:13:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Aq_J0Z9dxxoQ for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:13:12 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C56AB3A0A9B for <quic-issues@ietf.org>; Tue, 26 May 2020 15:13:12 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id DE2CCE0FAB for <quic-issues@ietf.org>; Tue, 26 May 2020 15:13:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590531191; bh=v9+I/v5NXH4uBmeVyH4GymS0h/ig0o30O+gIvlmmaYc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RT7MDkx0XcWr4/lt/5lEDJLa5JSWnsIeylCnvxVDGiL6e93H/h8AaiYhy9uUnFRJA Zwcizj7FtrBj3m3YZhJ30sh2BGxZ2gf9+9y8ul6jSfd+dMsWSX7SctpDtDY9KUzvVp lRvoBypNI2y7O1gRvdGBPiS9kps6kH7JeLe250zw=
Date: Tue, 26 May 2020 15:13:11 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2PSS4GKUHOCUVGVK543F2XPEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418715296@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9477cf7a2_2dc63fb59e8cd9603902f4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uMpXfKWAsxl0-XgbHwLJP3_XHF8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:13:14 -0000

----==_mimepart_5ecd9477cf7a2_2dc63fb59e8cd9603902f4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

@martinthomson commented on this pull request.=0D
=0D
=0D
=0D
> +These can be generated without affecting the transfer of other QUIC fr=
ames.=0D
+The PING Frame is used to trigger generation of an acknowledgement.=0D
+Multiple PADDING Frames are used together to control the length of the p=
robe packet.=C2=A0 =0D
=0D
That's already implied by "ack-eliciting".=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430736533=

----==_mimepart_5ecd9477cf7a2_2dc63fb59e8cd9603902f4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3693#discussi=
on_r430736533">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +These can be generated without affecting =
the transfer of other QUIC frames.=0D
+The PING Frame is used to trigger generation of an acknowledgement.=0D
+Multiple PADDING Frames are used together to control the length of the p=
robe packet.=C2=A0 =0D
</pre>=0D
<p>That's already implied by "ack-eliciting".</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3693#discussion_r430736533">view it on GitHub</a>, or=
 <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK5EWA6=
CGPGORQ5SD4LRTQ5HPANCNFSM4NJQ432A">unsubscribe</a>.<img src=3D"https://gi=
thub.com/notifications/beacon/AFTOJK6AXT32KFFEIFFJ53DRTQ5HPA5CNFSM4NJQ432=
KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2R=
NIA.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r43=
0736533",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r43073=
6533",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecd9477cf7a2_2dc63fb59e8cd9603902f4--


From nobody Tue May 26 15:13:57 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 88BF83A0A9D for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:13:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 PP26wJh2XO0w for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:13:54 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1F2E13A0A9C for <quic-issues@ietf.org>; Tue, 26 May 2020 15:13:54 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 0C0786A01F7 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:13:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590531233; bh=688yPxPgHsVaGD5Zb6HoCZghSpy8jX4334mz469wQq8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=z1BjLRDwIM+X4QWjgAjjGTOGUUFw8qJTC/7YYJQnOIo7LLyxP+RvBYt6ETY9jRVbO eKGcNymhl9pG12C4TSnTrAWAzA6UPhuu3Gn5p5qFhZobsFm/rtR3V86+RXqJaZKNPb N7R7oRv+ko8vFqfqZfmDYtB9bHFZ5goxhmvdNz+8=
Date: Tue, 26 May 2020 15:13:52 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7KFEQCH36PBND5QM543F22BEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418715607@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd94a0f1af3_5da53f8d128cd96033075c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FuARc0Cprt40POSG6yw82nYzttQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:13:56 -0000

----==_mimepart_5ecd94a0f1af3_5da53f8d128cd96033075c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



>  The endpoint SHOULD ignore all ICMP messages that fail validation.
 
 An endpoint MUST NOT increase PMTU based on ICMP messages; see Section 3, clause
 6 of {{!DPLPMTUD}}.  Any reduction in the QUIC maximum packet size in response
 to ICMP messages MAY be provisional until QUIC's loss detection algorithm
 determines that the quoted packet has actually been lost.
 
+### PMTUD Probes with Handshake packets

This is not about when, but how.  You can send a bogus Handshake packet after the connection is up.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430736781
----==_mimepart_5ecd94a0f1af3_5da53f8d128cd96033075c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430736781">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  The endpoint SHOULD ignore all ICMP messages that fail validation.
 
 An endpoint MUST NOT increase PMTU based on ICMP messages; see Section 3, clause
 6 of {{!DPLPMTUD}}.  Any reduction in the QUIC maximum packet size in response
 to ICMP messages MAY be provisional until QUIC&#39;s loss detection algorithm
 determines that the quoted packet has actually been lost.
 
+### PMTUD Probes with Handshake packets
</pre>
<p>This is not about when, but how.  You can send a bogus Handshake packet after the connection is up.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430736781">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3RPA3FTSQDFNTTGWDRTQ5KBANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2KWABGPYOXYBBNTJ3RTQ5KBA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2RPVY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430736781",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430736781",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd94a0f1af3_5da53f8d128cd96033075c--


From nobody Tue May 26 15:29:56 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 519C83A0AEB for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:29:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 FqlsbMdkuPxp for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:29:54 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 434583A0AE9 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:29:54 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 4A234A1ECD for <quic-issues@ietf.org>; Tue, 26 May 2020 15:29:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590532193; bh=akftt6IYzKb6X89nDrzqcvt7YnrDPSiVjhFRqPLFMtU=; h=Date:From:To:Subject:From; b=V28FNbLFvGiZk0lSP1xVVp20jUDgEy5Ps/Nl5x7j/rrMDkGmkMUq7QltVLfSDMNN1 I+FU7wWKtZcAUyWW7+qbhmoXXtft2c1nQGV2mv7DbXJfYDwxBMupGAy6mbpzYqUbw1 hXZTHHJ4m46R8K0KSFhXmrgCc7AYHngWTAn2zoLw=
Date: Tue, 26 May 2020 15:29:53 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgeries-and-updates/bfc409-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mNWtvlIfMUPHKRHNF6L1fk3AVBM>
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: Tue, 26 May 2020 22:29:55 -0000

  Branch: refs/heads/forgeries-and-updates
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 26 15:30:01 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 7D79E3A0B29 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:29:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 xsX3wV9D67WJ for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:29:56 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 351773A0AE8 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:29:56 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 19D4352054D for <quic-issues@ietf.org>; Tue, 26 May 2020 15:29:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590532193; bh=jhzhJusU2+jJPdx72q+kRpsjXoD16XY+rWudpHpyWjI=; h=Date:From:To:Subject:From; b=gGVovOZAmCut0GpbJAmvIdSMUgd2CgmDJZ8V8hthrgiLgx7DZKubeY5T9nHOfrK8b 4xrdfBzFlegIteOxqcfCsQqs2RpY3o0HmRWl0GYcZ0nCO/9L/gfeFEevF6otLsy51h RKMBqGMp6+aMIQWkR8FcVpo15w9ZcUZ0B0O8GTJ4=
Date: Tue, 26 May 2020 15:29:53 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/forgery-limit/874036-3a1f14@github.com>
Subject: [quicwg/base-drafts] bfc409: Forgeries likely exhaust TWO keys
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/G-nChXOxxPfJm01gUa95cjwDYU0>
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: Tue, 26 May 2020 22:29:58 -0000

  Branch: refs/heads/forgery-limit
  Home:   https://github.com/quicwg/base-drafts
  Commit: bfc409bb529d6a248f4ed20cac3c3d1d204a75ae
      https://github.com/quicwg/base-drafts/commit/bfc409bb529d6a248f4ed20cac3c3d1d204a75ae
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Forgeries likely exhaust TWO keys

Closes #3662.


  Commit: 3a1f14b85b5528cf230251a6924f5d0b5581859d
      https://github.com/quicwg/base-drafts/commit/3a1f14b85b5528cf230251a6924f5d0b5581859d
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #3686 from quicwg/forgeries-and-updates

Forgeries likely exhaust TWO keys


Compare: https://github.com/quicwg/base-drafts/compare/874036ba9762...3a1f14b85b55


From nobody Tue May 26 15:30:06 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 9ABC23A0B2E for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:29:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 aSjdDqtNZ-wo for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:29:56 -0700 (PDT)
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 8DC9D3A0AF0 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:29:56 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id DE363282B17 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:29:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590532195; bh=rfC8R9+LOO2tsDOpdcu+1DsOlH165Z8dWcOx3G2EsrM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EG/aw9J+dhJ7jzn5p5fEeOsdd9cttYBnnjB0pZ1y96dpheEGEzBpFX1fZ6/1AqauS 1IkpGWPxb1meu4gICGMFo+jKq2xP9431/iTaEc3qJcxGYNXthVKv0yHP2r7h/PWS38 VA7xbFf7TPSfFGB2/xN6jMIHU+ypvKuwdB6FUlrk=
Date: Tue, 26 May 2020 15:29:55 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2VR526VLPUKNHS4X543F4WHEVBNHHCKIKQA4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3686/c634314506@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3686@github.com>
References: <quicwg/base-drafts/pull/3686@github.com>
Subject: Re: [quicwg/base-drafts] Forgeries likely exhaust TWO keys (#3686)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9863ceb10_46b23fe164acd96c486a1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/F5C7lrMr2a7tI09dkmU6NI-mD_s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:29:58 -0000

----==_mimepart_5ecd9863ceb10_46b23fe164acd96c486a1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm going to merge this into the other PR.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3686#issuecomment-634314506
----==_mimepart_5ecd9863ceb10_46b23fe164acd96c486a1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I'm going to merge this into the other PR.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3686#issuecomment-634314506">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5H6X5Y6U4G4BEEVBDRTQ7GHANCNFSM4NHO3H3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYSTG3MXGJGED6DTBTRTQ7GHA5CNFSM4NHO3H3KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXHN6CQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3686#issuecomment-634314506",
"url": "https://github.com/quicwg/base-drafts/pull/3686#issuecomment-634314506",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd9863ceb10_46b23fe164acd96c486a1--


From nobody Tue May 26 15:30:10 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 8521D3A0AE2 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:30:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 EhUw2uQVt30T for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:30:05 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 11CEC3A0B0F for <quic-issues@ietf.org>; Tue, 26 May 2020 15:30:03 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 70470520327 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:30:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590532201; bh=w6GWsig9Nd6Mg9v8VbUEj53+073vSPaN7zuYSgIpsCk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gcPh6K/OdC7yClVzUVNeSvtwI6PVq+kXNGqZJdolxhAPF5SoibJwOOWHZ0QFWlInF srwcGlsxJPaTc9Yhs5BZSAUfVEbVbtmoMskHg3giwdxD6B2zcnSLYeLsAFww/Ys3op fT/YYzjo3BKu7iPjQDvU5Q3CtsICVSMAWBvZKd98=
Date: Tue, 26 May 2020 15:30:01 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3620/push/5132375290@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3620@github.com>
References: <quicwg/base-drafts/pull/3620@github.com>
Subject: Re: [quicwg/base-drafts] Define an anti-forgery limit (#3620)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9869609f2_2e6d3fd2738cd9648788f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/oFGJ4TSrl2MQvYfXMlMAkw19HCI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:30:08 -0000

----==_mimepart_5ecd9869609f2_2e6d3fd2738cd9648788f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 2 commits.

bfc409bb529d6a248f4ed20cac3c3d1d204a75ae  Forgeries likely exhaust TWO keys
3a1f14b85b5528cf230251a6924f5d0b5581859d  Merge pull request #3686 from quicwg/forgeries-and-updates


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3620/files/874036ba9762c1cddaaf54e2dcd43d4d80297161..3a1f14b85b5528cf230251a6924f5d0b5581859d

----==_mimepart_5ecd9869609f2_2e6d3fd2738cd9648788f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/bfc409bb529d6a248f4ed20cac3c3d1d204a75ae">bfc409b</a>  Forgeries likely exhaust TWO keys</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/3a1f14b85b5528cf230251a6924f5d0b5581859d">3a1f14b</a>  Merge pull request #3686 from quicwg/forgeries-and-updates</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3620/files/874036ba9762c1cddaaf54e2dcd43d4d80297161..3a1f14b85b5528cf230251a6924f5d0b5581859d">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3UCY5LIOXTHSQYUC3RTQ7GTANCNFSM4MW4IM3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYUGE7L7IXS4PLI2ODRTQ7GTA5CNFSM4MW4IM3KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQYTCOJZG4YDIM2QOVZWQIZVGEZTEMZXGUZDSMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3620/files/874036ba9762c1cddaaf54e2dcd43d4d80297161..3a1f14b85b5528cf230251a6924f5d0b5581859d",
"url": "https://github.com/quicwg/base-drafts/pull/3620/files/874036ba9762c1cddaaf54e2dcd43d4d80297161..3a1f14b85b5528cf230251a6924f5d0b5581859d",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecd9869609f2_2e6d3fd2738cd9648788f--


From nobody Tue May 26 15:30:13 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 EF8CC3A0AE2 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:30:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 sFZGcQbP2MTj for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:30:04 -0700 (PDT)
Received: from out-15.smtp.github.com (out-15.smtp.github.com [192.30.254.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D87723A0B3E for <quic-issues@ietf.org>; Tue, 26 May 2020 15:30:02 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 59FA9260405 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:30:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590532202; bh=xfOucUSgSZ4EmTZ+WKo00tTrrO5cYBdDfPMm2lcu4Ns=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=H70g1yGmi21tss2uEn+8yRMwOlGhQzkLge+9uwL9gWhaF7RS5VjqXW5sY7dNcihsL 5Wnx+tB6TDII5tgoFiXWAAYDPiUk9/3cP5AG5fvz1oLu6lPQaFBQFdLXFNPIHOIAn4 KorCC2/jn52lE3xCmCLee3qmyxuKNmS54DhrI++w=
Date: Tue, 26 May 2020 15:30:02 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7HGVBADUNTM6OCUIV43F4WVEVBNHHCKIKQA4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3686/issue_event/3375653318@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3686@github.com>
References: <quicwg/base-drafts/pull/3686@github.com>
Subject: Re: [quicwg/base-drafts] Forgeries likely exhaust TWO keys (#3686)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd986a1531e_3b243fe8110cd96831864"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gImLvZH0SFyYGyAgHeqXp31qZ2Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:30:09 -0000

----==_mimepart_5ecd986a1531e_3b243fe8110cd96831864
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3686 into forgery-limit.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3686#event-3375653318
----==_mimepart_5ecd986a1531e_3b243fe8110cd96831864
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="622940167" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3686" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3686/hovercard" href="https://github.com/quicwg/base-drafts/pull/3686">#3686</a> into forgery-limit.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3686#event-3375653318">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4AZ4B4SIFKYKL4IRTRTQ7GVANCNFSM4NHO3H3A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ4LHPXED4MXWYU44DRTQ7GVA5CNFSM4NHO3H3KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZE2GDRQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3686#event-3375653318",
"url": "https://github.com/quicwg/base-drafts/pull/3686#event-3375653318",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd986a1531e_3b243fe8110cd96831864--


From nobody Tue May 26 15:30:59 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 E58BC3A0AF1 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:30:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 h9kZhmLTGEhH for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:30:56 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8B44A3A0AEB for <quic-issues@ietf.org>; Tue, 26 May 2020 15:30:56 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id D2A586E003F for <quic-issues@ietf.org>; Tue, 26 May 2020 15:30:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590532255; bh=lwxvBJXFNvIx4HNuyKNoUpPbRc8n1yEHRTGIuFVbNe8=; h=Date:From:To:Subject:From; b=lOYHQrvYu0LQGvdUC4Anjwxs+/mOSElA2YqRd0wX5FLxDe3DcVBussaj2KKhXPnCM aruWD3QXPw5VQ0JwvodatSNyCOchj0fxvyt5Q2IBpmdgbvGtKXbH0R2VIFN/dBUEVy nhpEM1erbyZM0jbDi2F0G5UaZt+jeqbj3ShiLTDM=
Date: Tue, 26 May 2020 15:30:55 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/812bb8-4743a3@github.com>
Subject: [quicwg/base-drafts] 4743a3: Script updating gh-pages from 3a1f14b8. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tCcgIxVyO7qXKRrK8O2KUrX7-BE>
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: Tue, 26 May 2020 22:30:58 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4743a3e7d2bdf368161c367fc688318cecee808f
      https://github.com/quicwg/base-drafts/commit/4743a3e7d2bdf368161c367fc688318cecee808f
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M forgery-limit/draft-ietf-quic-http.html
    M forgery-limit/draft-ietf-quic-http.txt
    M forgery-limit/draft-ietf-quic-invariants.html
    M forgery-limit/draft-ietf-quic-invariants.txt
    M forgery-limit/draft-ietf-quic-qpack.html
    M forgery-limit/draft-ietf-quic-qpack.txt
    M forgery-limit/draft-ietf-quic-recovery.html
    M forgery-limit/draft-ietf-quic-recovery.txt
    M forgery-limit/draft-ietf-quic-tls.html
    M forgery-limit/draft-ietf-quic-tls.txt
    M forgery-limit/draft-ietf-quic-transport.html
    M forgery-limit/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 3a1f14b8. [ci skip]



From nobody Tue May 26 15:31:09 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 09C263A0AE9 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:31:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 dSjS_JtqMd0N for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:31:06 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8B2033A0AE8 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:31:06 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id DC4A7A05E5 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:31:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590532265; bh=tSdo3qPXXaq2VU9+onKUIKc92wFRVEsVZ+5LSu1Sw20=; h=Date:From:To:Subject:From; b=jvFWkzkcgPsc1nIEwKLPgsQ22RVJmaMG/Y5wuVNbrfRuIdF1KE/MeSrBXyz8VZUHH NRUoCBHUVdCsfFMilO5D6RXrlKJhLjuVppdaJD+JU2FVN7N2bbE57RHE/7AT/JUT55 WjSYor6PNC/mEu+xyzR3GvUWu/t9oPkPf+Lld6/8=
Date: Tue, 26 May 2020 15:31:05 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/4743a3-cd2fe8@github.com>
Subject: [quicwg/base-drafts] cd2fe8: Script updating archive at 2020-05-26T22:30:46Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zPf66CQLkVONiIwcIZrQZaUtPlU>
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: Tue, 26 May 2020 22:31:08 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: cd2fe858180b37191d4982c4a9dbf3a81608e2d1
      https://github.com/quicwg/base-drafts/commit/cd2fe858180b37191d4982c4a9dbf3a81608e2d1
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-26T22:30:46Z. [ci skip]



From nobody Tue May 26 15:34:22 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 3674B3A0B44 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:34:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 0O2cjVlrAHrO for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:34:19 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2C1FA3A0B40 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:34:19 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id F2B6C1C0994 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:34:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590532457; bh=lRLktoc7w7wXWOfacG3NbKqUQtBMNJprnjijMaEgAJQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gp4C7vI/GPNWs5EDru2rTOW/A+bin+rJmcG1u/7tzEve4gk/gO+NzCh1LOROz4b06 50MVd+X4HYTbfyejjMXjCBK3Sy7LpYZfEJNkKfyk65m0fDFhxaHU3OH30BdcpQs3Vz p8g8jLdIY5h+GCE6kgS/TfesBRdQZtCTgHPatWsM=
Date: Tue, 26 May 2020 15:34:17 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK77QCUZMGMXAVGWIW543F5GTEVBNHHCKP2YWE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3698/634316024@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3698@github.com>
References: <quicwg/base-drafts/issues/3698@github.com>
Subject: Re: [quicwg/base-drafts] Issue when a server cancels a push stream (#3698)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9969e33e6_6ab13fc88d4cd96c8636f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/j5kHKD9gfHvofHSR2v1fJg4YAlQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:34:20 -0000

----==_mimepart_5ecd9969e33e6_6ab13fc88d4cd96c8636f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This will not break interop either way.  We can change the recommendation easily.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3698#issuecomment-634316024
----==_mimepart_5ecd9969e33e6_6ab13fc88d4cd96c8636f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>This will not break interop either way.  We can change the recommendation easily.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3698#issuecomment-634316024">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3PF7YQRMJXKIU3N23RTQ7WTANCNFSM4NKKX2YQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZI7UKFFVOFUT3IJI3RTQ7WTA5CNFSM4NKKX2Y2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXHOJ6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3698#issuecomment-634316024",
"url": "https://github.com/quicwg/base-drafts/issues/3698#issuecomment-634316024",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd9969e33e6_6ab13fc88d4cd96c8636f--


From nobody Tue May 26 15:38:54 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 949933A0B53 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:38:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 TwXquCAkKxlS for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:38:51 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 84C9B3A0B4E for <quic-issues@ietf.org>; Tue, 26 May 2020 15:38:51 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id CF7F81C0DD5 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:38:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590532730; bh=aiSZ3LKAGMCHtygA92JuylAltud94ny60HsWPoTSk5s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hcehrzLfokY2+uQF4AQGxuJIz4C4DyyrD/b1UEcS2P2QW6EOmVj0+r9gEH6RbfsXB am1kB+OScj4C6G5xSp3JiHKx+wsmiyXanbvd6oLj4rZ9v137qLM5g+/4ZST0OTJbfQ 2AtEIh5vsjHxV/HUL8o93dWf3f6l6NdJz+vqZIrI=
Date: Tue, 26 May 2020 15:38:50 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZNKYZKG6BIE5UUPFV43F5XVEVBNHHCJ4SOLY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3662/634317475@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3662@github.com>
References: <quicwg/base-drafts/issues/3662@github.com>
Subject: Re: [quicwg/base-drafts] Forgery attacks and updated keys (#3662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9a7ac130d_73a73fdb118cd96869337"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KC02Ic-WFBYoPecih0UP1FiO714>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:38:53 -0000

----==_mimepart_5ecd9a7ac130d_73a73fdb118cd96869337
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Integrated into #3620.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3662#issuecomment-634317475
----==_mimepart_5ecd9a7ac130d_73a73fdb118cd96869337
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Integrated into <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="610583029" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3620" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3620/hovercard" href="https://github.com/quicwg/base-drafts/pull/3620">#3620</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3662#issuecomment-634317475">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZH2QEBU53RLTH2KLTRTRAHVANCNFSM4NDVMHEQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZMUHKCC3UY4KVW56TRTRAHVA5CNFSM4NDVMHE2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXHOVIY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3662#issuecomment-634317475",
"url": "https://github.com/quicwg/base-drafts/issues/3662#issuecomment-634317475",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd9a7ac130d_73a73fdb118cd96869337--


From nobody Tue May 26 15:38:58 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 7E6B43A0B4E for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:38:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 8v3sJkFeraIu for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:38:52 -0700 (PDT)
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7ABC83A0B52 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:38:52 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id E456B260195 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:38:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590532732; bh=RjJdcJ2ig1jLwuNiJ8LR2Z044QUg/5FvNyPa8+I+WpY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zCUGXMDbNOdT76OIEKHnP6ylwhcJJ6y6WRzV15C0ojES9TacrGnmRVgCwlrh/9uex nU97itXLxR253vSiwDCxTnbSFSvupFgzozJPMITx+nlm/cOsa5LBDChfTee7C6AOnM XWaIdMzOTnBpV7YQDfl0GKLxgdg/WAGQjCXtn1v4=
Date: Tue, 26 May 2020 15:38:51 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYYB35SDM7NGACDWD543F5XXEVBNHHCJ4SOLY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3662/issue_event/3375674217@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3662@github.com>
References: <quicwg/base-drafts/issues/3662@github.com>
Subject: Re: [quicwg/base-drafts] Forgery attacks and updated keys (#3662)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9a7b9baa2_16213f7f1fccd96c1256c4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bs2g0nKhi5D7i6WDIvoHfiuBPxM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:38:54 -0000

----==_mimepart_5ecd9a7b9baa2_16213f7f1fccd96c1256c4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3662.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3662#event-3375674217
----==_mimepart_5ecd9a7b9baa2_16213f7f1fccd96c1256c4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="619859550" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3662" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3662/hovercard" href="https://github.com/quicwg/base-drafts/issues/3662">#3662</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3662#event-3375674217">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5NZWVIATQTEZAFE5TRTRAHXANCNFSM4NDVMHEQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYYVJAB4HWN2SY3SWDRTRAHXA5CNFSM4NDVMHE2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZE2LG2I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3662#event-3375674217",
"url": "https://github.com/quicwg/base-drafts/issues/3662#event-3375674217",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd9a7b9baa2_16213f7f1fccd96c1256c4--


From nobody Tue May 26 15:42:05 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 830713A0B0F for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:42:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 1vLaL2H0zLVs for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:42:03 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7B1E63A0AF7 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:42:03 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id D2E2FA00A6 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:42:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590532922; bh=/ExCgfh4Xd7v3jo/jxYtQ4q7483nLzx/Pcd14KqPMj4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=paZnSwRjiBkDD6QpHXdE3LS6MrKGw2ps00iX1kdszdR5PM1ONuL5cu/cuyugq7EoD VWYZEfIx8cWcczAZvMw7blw0VW5FC9SBgEM0tvqEiGoITlUCNqa54vtaFfoJDdzP9m DLiIaPzBLhcrJ5lB8BxNma08+JOP62zORgy+b98w=
Date: Tue, 26 May 2020 15:42:02 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7VNGMYEUOJ2FGNPQV43F6DVEVBNHHCFNKKLA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3526/634318637@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3526@github.com>
References: <quicwg/base-drafts/issues/3526@github.com>
Subject: Re: [quicwg/base-drafts] QUIC PTO is too conservative, causing a measurable regression in tail latency (#3526)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9b3ac3b81_71fe3fc3deccd968153683"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yQYKEVQ27OHMTGAd9OAE13C29Ew>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:42:05 -0000

----==_mimepart_5ecd9b3ac3b81_71fe3fc3deccd968153683
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The editors discussed this and concluded that it would be best to mark this QUICv2.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3526#issuecomment-634318637
----==_mimepart_5ecd9b3ac3b81_71fe3fc3deccd968153683
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The editors discussed this and concluded that it would be best to mark this QUICv2.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3526#issuecomment-634318637">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6GNPFSX2MM4XD2C23RTRATVANCNFSM4LMHRHIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2RTJEJUNHAFESVAWLRTRATVA5CNFSM4LMHRHIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXHO6LI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment-634318637",
"url": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment-634318637",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd9b3ac3b81_71fe3fc3deccd968153683--


From nobody Tue May 26 15:43:38 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 C306A3A0B8A for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:43:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 s1edwyuhm7EW for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:43:28 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BCDC93A0B56 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:43:28 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id 1EFB4A0499 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:43:28 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590533008; bh=pf3gH5o1Kho7BOlklSKaDII5iZOlo0Tb9tFu0bFaYHw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Zl5oFkOIePbiRwpZ6UGW1OdhIOtd7TqjnwKk+QrOPKU6qxVx/ba5EbBm4kqOHL91I +suER94Dic694gmYCN8PbzMuzcS3ovwYTTP7+ODenJuvsPbYFf3THhOA4kwpZg9i4B cYf9ERNGsZ6h8M9XmAFb7unh6xJZtH7OOaihntpk=
Date: Tue, 26 May 2020 15:43:28 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6YJQLRKBOA7WMJKY543F6JBEVBNHHCKCGAH4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3670/review/418728306@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3670@github.com>
References: <quicwg/base-drafts/pull/3670@github.com>
Subject: Re: [quicwg/base-drafts] Scope of disable_active_migration (#3670)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9b90102de_74343fdb118cd96898879"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GWM3xdsRmbJR-MOzNJy6L_WqZD0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:43:36 -0000

----==_mimepart_5ecd9b90102de_74343fdb118cd96898879
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-418728306
----==_mimepart_5ecd9b90102de_74343fdb118cd96898879
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-418728306">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6XI7PRZJDNDH2RCVDRTRAZBANCNFSM4NFNBZ6A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2OA5NFKRLHJ2M6QV3RTRAZBA5CNFSM4NFNBZ6KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2US4Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-418728306",
"url": "https://github.com/quicwg/base-drafts/pull/3670#pullrequestreview-418728306",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd9b90102de_74343fdb118cd96898879--


From nobody Tue May 26 15:44:16 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 247EB3A0B56 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:44:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 2ljt0seQ99Gv for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:44:14 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 279313A0B53 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:44:14 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id 52C6B2C0AA0 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:44:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590533052; bh=sJF3bh8SOsizAmq4g/jLrEg2nRuig83Uhvo6+pLqrfc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HcvFl4sknKf/OFk83nAgn7MfO5lqmUi/uSYW7q8cYG3p2ZFqL3W0avhQuTEdxzbpp 75+LAxbhXdfTDCfRtPCGgtkgW/fW2I18T75Arxwiu4AJEweYh9/6Wi2xBjGZo1cl42 uTAU5rKDqUkQCAtE5Tgiea/cmXZXXaQo43bIkQT4=
Date: Tue, 26 May 2020 15:44:12 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2DYD4YCEYFCBIXZW543F6LZEVBNHHCKOBF24@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3694/review/418728590@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3694@github.com>
References: <quicwg/base-drafts/pull/3694@github.com>
Subject: Re: [quicwg/base-drafts] rename SERVER_BUSY to CONNECTION_REFUSED (#3694)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9bbc43cc5_16ef3f7f1fccd96c2987f4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/acE9IS5m7cLuZu6y2UoAWPUrHEA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:44:15 -0000

----==_mimepart_5ecd9bbc43cc5_16ef3f7f1fccd96c2987f4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3694#pullrequestreview-418728590
----==_mimepart_5ecd9bbc43cc5_16ef3f7f1fccd96c2987f4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3694#pullrequestreview-418728590">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZSZYFRCV3JTZWBNJDRTRA3ZANCNFSM4NJWVD7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6NL33NT6J3KYPZQXLRTRA3ZA5CNFSM4NJWVD7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2UVDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3694#pullrequestreview-418728590",
"url": "https://github.com/quicwg/base-drafts/pull/3694#pullrequestreview-418728590",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd9bbc43cc5_16ef3f7f1fccd96c2987f4--


From nobody Tue May 26 15:44:40 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 AAB6B3A085D for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:44:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 WpPqVDWnhAGV for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:44:38 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 208AF3A0B56 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:44:38 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 446E0C60352 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:44:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590533077; bh=v/ThPr+EvUWitlAzzHLwwvxA/wBTirERWiWnpLy4WdQ=; h=Date:From:To:Subject:From; b=vt7BRJJVi4g3NX9vrAM+hp36xrkkJHe20MJ9IPti+HPh3MB7SXtPH3iX39QXjmL3r xmrFpsi3DnHivwW18vpFZkPJr7SESbGMRc084SZt8ALY4Pvgx29y6OoKg4LIgBV8Gm 3fmgwHpkB2ZscXXipwPTil6k3wXUIXhI0M22yxtw=
Date: Tue, 26 May 2020 15:44:37 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/should_cancel_push/000000-618010@github.com>
Subject: [quicwg/base-drafts] 618010: Servers should always send CANCEL_PUSH
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yO8F9oFMeHKiPRrEaBSTo9EpU58>
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: Tue, 26 May 2020 22:44:40 -0000

  Branch: refs/heads/http/should_cancel_push
  Home:   https://github.com/quicwg/base-drafts
  Commit: 618010e47dc5045b154e7bd62577e1e0a59dd178
      https://github.com/quicwg/base-drafts/commit/618010e47dc5045b154e7bd62577e1e0a59dd178
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Servers should always send CANCEL_PUSH



From nobody Tue May 26 15:45:35 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 3417D3A0AD6 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:45:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 8jweODZkE_Uc for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:45:33 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3C1FA3A085D for <quic-issues@ietf.org>; Tue, 26 May 2020 15:45:33 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 95D3F1C0237 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:45:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590533132; bh=jXYFcHMNjrRpbQUCGfJP8oZ0Xu7tAS/G+2AEAV3PYEQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=s1M48KpUVMkntE8IBJ0o8sACiGRg3C+R640WPXgx0S40ELNvTjAhEicgCaosCSaiz +uOlPPSWOxodvZRBXWOC1y5cYZ9nsTVihpMvlbaI6nw0zv5uTEzVpaXc7TQKihHTV9 heXOr0d1xR+eYhW9XTUsZByb9zeZRDx4gAoqsVeY=
Date: Tue, 26 May 2020 15:45:32 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY3LL3CEUBETB6NQO543F6QZEVBNHHCKOBF24@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3694/review/418729114@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3694@github.com>
References: <quicwg/base-drafts/pull/3694@github.com>
Subject: Re: [quicwg/base-drafts] rename SERVER_BUSY to CONNECTION_REFUSED (#3694)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9c0c86eb1_68b63fad35acd95c90437"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/UL_M8uQtvMc6zF67aT7IcNpzHok>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:45:34 -0000

----==_mimepart_5ecd9c0c86eb1_68b63fad35acd95c90437
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3694#pullrequestreview-418729114
----==_mimepart_5ecd9c0c86eb1_68b63fad35acd95c90437
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3694#pullrequestreview-418729114">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYYD5VPIV73BI4Y2MTRTRBAZANCNFSM4NJWVD7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZLVGMO6WN4OQYNZITRTRBAZA5CNFSM4NJWVD7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2UZGQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3694#pullrequestreview-418729114",
"url": "https://github.com/quicwg/base-drafts/pull/3694#pullrequestreview-418729114",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd9c0c86eb1_68b63fad35acd95c90437--


From nobody Tue May 26 15:46:07 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 D3C8F3A0B7C for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:45:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.696
X-Spam-Level: 
X-Spam-Status: No, score=-1.696 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 cStEhlXvkjzH for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:45:57 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6CB7A3A0B6D for <quic-issues@ietf.org>; Tue, 26 May 2020 15:45:57 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id A528DE0F94 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:45:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590533156; bh=8jYui9UTEUvcRgTRJbCsJiXS8j0jssa3QCZeRo5wWhY=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=cRsTj4NK8hcFW6URm4qDJ+V8A4Zt2ALY1HDyutTKdEQ3Z/SHrEa9+9uAnQY8im3WV hj5zG8JySR7ayt0VjIO9Js91VpSPv03OngiW9E8S/fVSM4IQh3dTnNqF+UjxaO5XZw 5CWuN2bk9QsmDT68A180t6CZ7TKzG1ALlgjKoYsg=
Date: Tue, 26 May 2020 15:45:56 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYX4LPOI3EHMYF7JSN43F6SJEVBNHHCKREEAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3700@github.com>
Subject: [quicwg/base-drafts] Servers should always send CANCEL_PUSH (#3700)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9c2494674_47fa3f9d794cd960145061"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/sJWK8Enf9KKXQE6EdpOZwkNHNe4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:46:06 -0000

----==_mimepart_5ecd9c2494674_47fa3f9d794cd960145061
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Fixes #3698 by reversing the polarity of a SHOULD.  Doesn&#39;t break interop, but it&#39;s always safer to send CANCEL_PUSH than to omit it, so let&#39;s not recommend omitting it under any circumstances.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3700

-- Commit Summary --

  * Servers should always send CANCEL_PUSH

-- File Changes --

    M draft-ietf-quic-http.md (14)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3700.patch
https://github.com/quicwg/base-drafts/pull/3700.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3700

----==_mimepart_5ecd9c2494674_47fa3f9d794cd960145061
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3698.">Fixes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624908465" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3698" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3698/hovercard" href="https://github.com/quicwg/base-drafts/issues/3698">#3698</a> by reversing the polarity of a SHOULD.  Doesn't break interop, but it's always safer to send CANCEL_PUSH than to omit it, so let's not recommend omitting it under any circumstances.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3700'>https://github.com/quicwg/base-drafts/pull/3700</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Servers should always send CANCEL_PUSH</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3700/files#diff-3d2f9fd0738589657498f2c06ee02f2f">draft-ietf-quic-http.md</a>
    (14)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3700.patch'>https://github.com/quicwg/base-drafts/pull/3700.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3700.diff'>https://github.com/quicwg/base-drafts/pull/3700.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3700">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3X7NGPC5IXPVFY5QLRTRBCJANCNFSM4NLJ4YMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7J6LFKTO7NMKKHR3TRTRBCJA5CNFSM4NLJ4YM2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JKEQQCA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3700",
"url": "https://github.com/quicwg/base-drafts/pull/3700",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecd9c2494674_47fa3f9d794cd960145061--


From nobody Tue May 26 15:46:32 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 774373A0BC4 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:46:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 kUkVRFaM8Z9D for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:46:29 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0D0AB3A0BC5 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:46:28 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id BE8E98C0F3C for <quic-issues@ietf.org>; Tue, 26 May 2020 15:46:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590533186; bh=EC6owtiWNoNkKFp49bg2xPXp/DSaX10g8wxz72Op1Ak=; h=Date:From:To:Subject:From; b=YuzHObRGn5ufAHMEPIkoK/h/FFDbXgvpe4AixCG2CSlkBHs+r++nZgJGClQtJE7fO jRVpfnKhQ1zoWNiksZBVPbE6yM7GZvJkylTosw0JZ+c9JumbsVQxwUGEFN9u3pwwBZ 31sAiaar+Q/znZo+bPNExz9cnogNDeQ2ppBNpO/I=
Date: Tue, 26 May 2020 15:46:26 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/cd2fe8-53bdd7@github.com>
Subject: [quicwg/base-drafts] 53bdd7: Script updating gh-pages from 618010e4. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/y4hgFm40HnaAXDxwJXurspPknEM>
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: Tue, 26 May 2020 22:46:31 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 53bdd7c8234ff6ee621fa62d09c03146f94dbc6d
      https://github.com/quicwg/base-drafts/commit/53bdd7c8234ff6ee621fa62d09c03146f94dbc6d
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    A http/should_cancel_push/draft-ietf-quic-http.html
    A http/should_cancel_push/draft-ietf-quic-http.txt
    A http/should_cancel_push/draft-ietf-quic-invariants.html
    A http/should_cancel_push/draft-ietf-quic-invariants.txt
    A http/should_cancel_push/draft-ietf-quic-qpack.html
    A http/should_cancel_push/draft-ietf-quic-qpack.txt
    A http/should_cancel_push/draft-ietf-quic-recovery.html
    A http/should_cancel_push/draft-ietf-quic-recovery.txt
    A http/should_cancel_push/draft-ietf-quic-tls.html
    A http/should_cancel_push/draft-ietf-quic-tls.txt
    A http/should_cancel_push/draft-ietf-quic-transport.html
    A http/should_cancel_push/draft-ietf-quic-transport.txt
    A http/should_cancel_push/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 618010e4. [ci skip]



From nobody Tue May 26 15:55:33 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 4A7CA3A0B62 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:55:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 KRR6eEAagwzp for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:55:32 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3761E3A0AD5 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:55:32 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 40ED56A006B for <quic-issues@ietf.org>; Tue, 26 May 2020 15:55:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590533731; bh=j65fFCzDx5Z3GKnqgxTdVZdSYAODhr1plfFkMqv4gj4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=I4eIw2kEmj0TSPvBnElMoExvwQjY8qEFzZD/p3a4XBn7mAKR+Vady1t/TUtOaGaYL 7/H9Y3aMxP9TrirAU8sDg/40qGqeyZIlkNw9tlwOPTAJScKD/f3aawqJb23ld2b830 yXsq2d9VprL5FEMLEdZBxm/eLWMyJi5YAyieMrwM=
Date: Tue, 26 May 2020 15:55:31 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2CBMIFGH7W5UMTL2543F7WHEVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/review/418733134@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9e632e310_4eaf3ff38d0cd9682590f2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/f2CwaN4p3m4k_Isvi5R2-esxWAo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:55:33 -0000

----==_mimepart_5ecd9e632e310_4eaf3ff38d0cd9682590f2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-418733134
----==_mimepart_5ecd9e632e310_4eaf3ff38d0cd9682590f2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-418733134">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYB4555Z3ILIJXCNGDRTRCGHANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6LW4PYHMBHGEOVHKLRTRCGHA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2VYTQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-418733134",
"url": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-418733134",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd9e632e310_4eaf3ff38d0cd9682590f2--


From nobody Tue May 26 15:59:39 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 A8EE23A0B73 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:59:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 a783S0dueX_q for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 15:59:36 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4E29B3A0B72 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:59:36 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 98B388C05E6 for <quic-issues@ietf.org>; Tue, 26 May 2020 15:59:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590533975; bh=qRJ+AXywofpTt8N7ulhX/1O/bTcL8x1A8fvbIswGHOc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BWsj+lbLSyn+jc+hhUGh3SqKHnmJ2HA1afIH0tIvbSznRl0Ah4hs5rs7LGryVEQpe sQ9lH+qsd0iSn2fyOw4f92/24Zs5rsQr1DmbkaD6RTOxF0CV/ADeLSJHtlhyaRidif kI7H+RXv+CF8gKejnfZQn1E9bD2jBjVdfKPG0+Wk=
Date: Tue, 26 May 2020 15:59:35 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7Z7GEAGQBMLQA3WLV43GAFPEVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684/review/418734775@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3684@github.com>
References: <quicwg/base-drafts/pull/3684@github.com>
Subject: Re: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9f5788a0c_4f33fb6a8ccd960184780"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/H6SNfo_FR7YGyoYzTPYMfp1BAPE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 22:59:38 -0000

----==_mimepart_5ecd9f5788a0c_4f33fb6a8ccd960184780
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@DavidSchinazi commented on this pull request.



>  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.

I agree with @martinthomson here. Since the long header length is version-specific, it's not possible to access any subsequent packets in the same UDP payload from just the invariants. Stating in the invariants that some QUIC versions might allow packet coalescing is not a design change, it's just a fact.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684#discussion_r430752791
----==_mimepart_5ecd9f5788a0c_4f33fb6a8ccd960184780
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@DavidSchinazi</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3684#discussion_r430752791">draft-ietf-quic-invariants.md</a>:</p>
<pre style='color:#555'>&gt;  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.
</pre>
<p>I agree with <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> here. Since the long header length is version-specific, it's not possible to access any subsequent packets in the same UDP payload from just the invariants. Stating in the invariants that some QUIC versions might allow packet coalescing is not a design change, it's just a fact.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684#discussion_r430752791">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3Q5YKY22JRN4GW7A3RTRCVPANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2KX5EA7F7GSVBMXRTRTRCVPA5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2WFNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684#discussion_r430752791",
"url": "https://github.com/quicwg/base-drafts/pull/3684#discussion_r430752791",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecd9f5788a0c_4f33fb6a8ccd960184780--


From nobody Tue May 26 16:01:35 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 931693A0B76 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:01:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 hfB5VB6spL1j for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:01:33 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 113EF3A0B74 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:01:33 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 031D96E018C for <quic-issues@ietf.org>; Tue, 26 May 2020 16:01:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534092; bh=oi9cX06BOPFblW9i38fCz0pzXJ5NgsgwzB3RIfEzIDQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oxv1IFrl1IiR6cJb9xC+uXQ555HEiI/g9lpyCIXyBlOQRJrvwYsYVoJICquHr7qHz B5ym1sjYO+vh8EfSqo5xYzHp7zUyhAjsEvs2ORFBJoKzUftIzRpvSdXFDHqjeyfjop z2xOPEaXS8/JDYQ/A6Jrv6obL4JvfKtEwWsBfu0A=
Date: Tue, 26 May 2020 16:01:31 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK45E2TIKU37DBL42J543GAMXEVBNHHCKOUZLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/review/418734141@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecd9fcbe7166_5d543fbbebacd960263433"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/znmXIuaYBs3PazyC9mw0TQm5A2k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:01:35 -0000

----==_mimepart_5ecd9fcbe7166_5d543fbbebacd960263433
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> @@ -3204,9 +3204,16 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates

```suggestion
Endpoints that track all individual packets for the purposes of detecting duplicates
```

> @@ -3204,9 +3204,16 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates

```suggestion
are at risk of accumulating excessive state.  The data required for detecting duplicates
```

> @@ -3204,9 +3204,16 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
+can be limited by maintaining a minimum packet number below which all packets
+are immediately dropped.  Endpoints that use a minimum packet number need to
+ensure that any value does not cause delayed packets to be dropped.  Any minimum

I think I'd drop this sentence.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-418734141
----==_mimepart_5ecd9fcbe7166_5d543fbbebacd960263433
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ianswett</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3696#discussi=
on_r430752219">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3204,9 +3204,16 @@ response to further=
 packets that it receives.=0D
 A receiver MUST discard a newly unprotected packet unless it is certain =
that it=0D
 has not processed another packet with the same packet number from the sa=
me=0D
 packet number space. Duplicate suppression MUST happen after removing pa=
cket=0D
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An=0D=

-efficient algorithm for duplicate suppression can be found in Section 3.=
4.3 of=0D
-{{?RFC4303}}.=0D
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.=0D
+=0D
+Endpoints that track individual packets for the purposes of detecting du=
plicates=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-Endpoints that track individual packets for t=
he purposes of detecting duplicates=0D
+Endpoints that track all individual packets for the purposes of detectin=
g duplicates=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3696#discussi=
on_r430752380">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3204,9 +3204,16 @@ response to further=
 packets that it receives.=0D
 A receiver MUST discard a newly unprotected packet unless it is certain =
that it=0D
 has not processed another packet with the same packet number from the sa=
me=0D
 packet number space. Duplicate suppression MUST happen after removing pa=
cket=0D
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An=0D=

-efficient algorithm for duplicate suppression can be found in Section 3.=
4.3 of=0D
-{{?RFC4303}}.=0D
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.=0D
+=0D
+Endpoints that track individual packets for the purposes of detecting du=
plicates=0D
+might accumulate excessive state.  The data required for detecting dupli=
cates=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-might accumulate excessive state.  The data r=
equired for detecting duplicates=0D
+are at risk of accumulating excessive state.  The data required for dete=
cting duplicates=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3696#discussi=
on_r430753237">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3204,9 +3204,16 @@ response to further=
 packets that it receives.=0D
 A receiver MUST discard a newly unprotected packet unless it is certain =
that it=0D
 has not processed another packet with the same packet number from the sa=
me=0D
 packet number space. Duplicate suppression MUST happen after removing pa=
cket=0D
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An=0D=

-efficient algorithm for duplicate suppression can be found in Section 3.=
4.3 of=0D
-{{?RFC4303}}.=0D
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.=0D
+=0D
+Endpoints that track individual packets for the purposes of detecting du=
plicates=0D
+might accumulate excessive state.  The data required for detecting dupli=
cates=0D
+can be limited by maintaining a minimum packet number below which all pa=
ckets=0D
+are immediately dropped.  Endpoints that use a minimum packet number nee=
d to=0D
+ensure that any value does not cause delayed packets to be dropped.  Any=
 minimum=0D
</pre>=0D
<p>I think I'd drop this sentence.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3696#pullrequestreview-418734141">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KYQKVV4HR5PVMQO4RLRTRC4XANCNFSM4NJ64OJQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK6O6PCWP7MQZA2LX6TRTRC4XA5CNFSM4=
NJ64OJ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODD2WAPI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3696#pullrequestrev=
iew-418734141",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview=
-418734141",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecd9fcbe7166_5d543fbbebacd960263433--


From nobody Tue May 26 16:03:09 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 D68363A0B7D for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:03:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 XDLfM6yh7Peb for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:03:06 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6DBF03A0B79 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:03:06 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id B69F9520D74 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:03:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534185; bh=ZlRqtQMETmisYu5XLRkutoRHKY6G0C32Y36AwpqSeqI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Tta6VfAd9ZflPxg9ww5PlBMYCXMGRj48N1l4oKp3AWbBhx1b79aORank0C6hSAxGh 1boUMMip95aqwWrukydpdwPrgYZCBPAilsjTgrtoDv87s6QZ0B7tyclXCv3R25htC3 4fwuJyLJHcqtFZmN+NfOGG9xQ6s5PM+sCfZ4KSgc=
Date: Tue, 26 May 2020 16:03:05 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2D365XTXNSGRWHB3N43GASTEVBNHHCKOUZLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/review/418736154@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecda029a7094_13ce3fe970ecd968210867"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/d1DkmWm9y0inKs2zaL8AYLJsbuM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:03:08 -0000

----==_mimepart_5ecda029a7094_13ce3fe970ecd968210867
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -3204,9 +3204,16 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
+can be limited by maintaining a minimum packet number below which all packets
+are immediately dropped.  Endpoints that use a minimum packet number need to
+ensure that any value does not cause delayed packets to be dropped.  Any minimum

This was the entire point of the issue though.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696#discussion_r430753959
----==_mimepart_5ecda029a7094_13ce3fe970ecd968210867
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430753959">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3204,9 +3204,16 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track individual packets for the purposes of detecting duplicates
+might accumulate excessive state.  The data required for detecting duplicates
+can be limited by maintaining a minimum packet number below which all packets
+are immediately dropped.  Endpoints that use a minimum packet number need to
+ensure that any value does not cause delayed packets to be dropped.  Any minimum
</pre>
<p>This was the entire point of the issue though.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3696#discussion_r430753959">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK574CGPT63LLKXS76TRTRDCTANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3WD77VCLWEK5X4UOLRTRDCTA5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2WQGQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696#discussion_r430753959",
"url": "https://github.com/quicwg/base-drafts/pull/3696#discussion_r430753959",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecda029a7094_13ce3fe970ecd968210867--


From nobody Tue May 26 16:03:31 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 BB03D3A0B7C for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:03:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 qIl4RDIIfpSG for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:03:28 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 57FF63A0B79 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:03:28 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id B71FFE008F for <quic-issues@ietf.org>; Tue, 26 May 2020 16:03:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534207; bh=Y+LzU7DGQonn0s+OY5L7LfJoVMfSuq4Mxaj2zeX9JmA=; h=Date:From:To:Subject:From; b=CJVc2KR+BDaqzUzgpxFRwTIfHTi+DqjXyN9KYu2N0C+69VOYS7g4l0mqRlhn2vRHd u+bawmNHGo/J46Z/UkQSQf2zgqZdJTdiaBM1avABA3c0yUv9IWqyz0f/stPXn1Nj21 K3CAGYcXg0S+SighzCGm/wJ162uboJejeEpCUyDI=
Date: Tue, 26 May 2020 16:03:27 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dedupe-packets/0f6ca2-d90c54@github.com>
Subject: [quicwg/base-drafts] d90c54: Tweaking
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lX2ICnScuG-zG7GX9PE4BV-1dAE>
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: Tue, 26 May 2020 23:03:30 -0000

  Branch: refs/heads/dedupe-packets
  Home:   https://github.com/quicwg/base-drafts
  Commit: d90c544322dc27c22539bb87fa09a6a110af4ab7
      https://github.com/quicwg/base-drafts/commit/d90c544322dc27c22539bb87fa09a6a110af4ab7
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Tweaking

Co-authored-by: ianswett <ianswett@users.noreply.github.com>



From nobody Tue May 26 16:03:40 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 413B63A0B7C for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:03:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZfLFHldIVwV3 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:03:37 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1DA8E3A0B79 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:03:37 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 6B2099600A5 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:03:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534216; bh=BYH5R0QM8JDJspp//9DFYmFIOJwVKfzkdNcFKfHHlMo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tB+eIjO2zKODbwr2Wra2ULw9gsE0D03LoqO7jkdnmg1x8941Y0ipUWDvuW1B/mMUA G+aymoqZWdLnmcg7KvxVM4PMdqm+wB1bBpytU+3GuiGgO9Yz86bZGiU8s+uTXvF8Ql WP467vO0RtUd5y5VyQSGdQfR5IqqlFQWyoMCh1o8=
Date: Tue, 26 May 2020 16:03:36 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/push/5132487040@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecda0485bef5_21f33f96dc0cd96c414465"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mBnCy9bRXkwmjShz_pfpGydUdxM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:03:38 -0000

----==_mimepart_5ecda0485bef5_21f33f96dc0cd96c414465
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

d90c544322dc27c22539bb87fa09a6a110af4ab7  Tweaking


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696/files/0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7..d90c544322dc27c22539bb87fa09a6a110af4ab7

----==_mimepart_5ecda0485bef5_21f33f96dc0cd96c414465
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/d90c544322dc27c22539bb87fa09a6a110af4ab7">d90c544</a>  Tweaking</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3696/files/0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7..d90c544322dc27c22539bb87fa09a6a110af4ab7">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4PBKISVZA5KC25Z3TRTRDERANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ3JIDSOBBDZ27ZJTTRTRDERA5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDEOJYGI3TCMSQOVZWQIZVGEZTENBYG4YDIMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696/files/0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7..d90c544322dc27c22539bb87fa09a6a110af4ab7",
"url": "https://github.com/quicwg/base-drafts/pull/3696/files/0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7..d90c544322dc27c22539bb87fa09a6a110af4ab7",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecda0485bef5_21f33f96dc0cd96c414465--


From nobody Tue May 26 16:04:53 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 AC2B83A0B7C for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:04:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 L_tkqvpv9QAW for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:04:51 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6F6123A0B79 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:04:51 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id B7C0BE0098 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:04:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534290; bh=6zH9QFHf3FWFW5xNGIhjr7FQ+cGr5Tvenwg0phRwbm4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Sor/mdWIJcD3qtuT8Bi8zFO87khIxx2AEBiL7abJGbs37WRPI6QhAu1fWO0LNokzs +EbtX8/TUNuK5wh5NXcPTEuNZjsmi8awew2MI/vs8He6395QhKWhRTFXw418p+YKQI vmVnUHrykZ8yMKBk7WRXvIBpXtWOTKoasCL2DsUw=
Date: Tue, 26 May 2020 16:04:50 -0700
From: David Schinazi <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2MEXZUU7Z3AK7PVIN43GAZFEVBNHHCKRFAVA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3701@github.com>
Subject: [quicwg/base-drafts] The QUIC-TLS draft should define anti-forgery limits for packet lengths up to 2^16 (#3701)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecda092a8121_1cec3f85b68cd96420758c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: DavidSchinazi
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OB0f3ca8-U3CL1JtiX16yRmaRE0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:04:53 -0000

----==_mimepart_5ecda092a8121_1cec3f85b68cd96420758c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This issue is in response to @chris-wood 's https://github.com/quicwg/base-drafts/pull/3620#issuecomment-633062212 .

PR #3620 introduces anti-forgery limits for packet lengths up to 2^14 as those were inherited from the maximum TLS record size. Since @chris-wood mentioned a way to compute limits for those sizes, we should use that and put the limit in the document, instead of leaving that as an exercise to the reader.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3701
----==_mimepart_5ecda092a8121_1cec3f85b68cd96420758c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>This issue is in response to <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/chris-wood/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/chris-wood">@chris-wood</a> 's <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="610583029" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3620" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3620/hovercard?comment_id=633062212&amp;comment_type=issue_comment" href="https://github.com/quicwg/base-drafts/pull/3620#issuecomment-633062212">#3620 (comment)</a> .</p>
<p>PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="610583029" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3620" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3620/hovercard" href="https://github.com/quicwg/base-drafts/pull/3620">#3620</a> introduces anti-forgery limits for packet lengths up to 2^14 as those were inherited from the maximum TLS record size. Since <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/chris-wood/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/chris-wood">@chris-wood</a> mentioned a way to compute limits for those sizes, we should use that and put the limit in the document, instead of leaving that as an exercise to the reader.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3701">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6SRSCOMY7QZ2GRCOTRTRDJFANCNFSM4NLKX4CQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5LXNGPT7PM532QP23RTRDJFA5CNFSM4NLKX4C2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JKEUCUA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3701",
"url": "https://github.com/quicwg/base-drafts/issues/3701",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecda092a8121_1cec3f85b68cd96420758c--


From nobody Tue May 26 16:05:31 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 98A743A0B81 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:05:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 ZOILyrH4bNcU for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:05:28 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 953D53A0B7C for <quic-issues@ietf.org>; Tue, 26 May 2020 16:05:28 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id D9BCB280ABF for <quic-issues@ietf.org>; Tue, 26 May 2020 16:05:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534327; bh=1KLLXR4jfqvMfHQs0FcKF64vsoBfGaVSFYi1UkIfuJs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=DKElK+sOUMhDmHV/2tiTjX7XCw0zckiKc5C3BipFODP9xhqYkJF8b7+Rp/oimjwFF fvp+Lsc5o2t8YKpkGUwuYw9ZbKsubm2g3TfLwQd6hHooDP2K7K6J3U2NxOhu+w10yL wHuOdFG936FyE6jKrCiAUKcX+RWUrKRYoFfyFVDQ=
Date: Tue, 26 May 2020 16:05:27 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK75ZB7GIYHPE3IU24F43GA3PEVBNHHCKREEAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3700/review/418737059@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3700@github.com>
References: <quicwg/base-drafts/pull/3700@github.com>
Subject: Re: [quicwg/base-drafts] Servers should always send CANCEL_PUSH (#3700)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecda0b7ca329_53843faa0cccd96831384e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/76ptNyWK6xo7x7vsPhqXxAUi-CE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:05:30 -0000

----==_mimepart_5ecda0b7ca329_53843faa0cccd96831384e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-418737059
----==_mimepart_5ecda0b7ca329_53843faa0cccd96831384e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-418737059">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7OFHJ7DALVBJRNQJTRTRDLPANCNFSM4NLJ4YMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY334D56CIKP6XV2ILRTRDLPA5CNFSM4NLJ4YM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2WXIY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-418737059",
"url": "https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-418737059",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecda0b7ca329_53843faa0cccd96831384e--


From nobody Tue May 26 16:06:08 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 027BB3A0BD1 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:06:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.007
X-Spam-Level: 
X-Spam-Status: No, score=-2.007 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-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 67bN2XJN6D4H for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:05:58 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5DEF83A0BF3 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:05:56 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id B13DC8C0F50 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:05:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534355; bh=mynCc1fhXyPNnA4uaczVH0IIzckrTiAqoG6XAyzw/nI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UYSekZmEJ/VK1Hndwom/FKMwFyXbSFJjjJNjy2pgZuvSB+HP/9wGLsBOKEacv02b4 zL0Tp//FSMg4k69AfWo/o/M4DQahgkcAu5Y2ms3IRxtnnHy3UFcKczRRGsZG12AheM qAg22e4xPtqk+QcipV4SjPco+msZM/FMSQAwozWY=
Date: Tue, 26 May 2020 16:05:55 -0700
From: Christopher Wood <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5MJM7OFO26CK2JBN543GA5HEVBNHHCKRFAVA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3701/634326293@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3701@github.com>
References: <quicwg/base-drafts/issues/3701@github.com>
Subject: Re: [quicwg/base-drafts] The QUIC-TLS draft should define anti-forgery limits for packet lengths up to 2^16 (#3701)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecda0d3a0807_2ac23f95732cd95c4661ef"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: chris-wood
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-13ElxQhKKTzSDxhIodAvudOxlE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:06:07 -0000

----==_mimepart_5ecda0d3a0807_2ac23f95732cd95c4661ef
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

In case it helps: https://chris-wood.github.io/interactive-aead-limits/index.html

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3701#issuecomment-634326293
----==_mimepart_5ecda0d3a0807_2ac23f95732cd95c4661ef
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>In case it helps: <a href="https://chris-wood.github.io/interactive-aead-limits/index.html" rel="nofollow">https://chris-wood.github.io/interactive-aead-limits/index.html</a></p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3701#issuecomment-634326293">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5CO4QWUD6VXFT7UTLRTRDNHANCNFSM4NLKX4CQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5EBSU5MA7C44FHVSTRTRDNHA5CNFSM4NLKX4C2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXHQ2FI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3701#issuecomment-634326293",
"url": "https://github.com/quicwg/base-drafts/issues/3701#issuecomment-634326293",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecda0d3a0807_2ac23f95732cd95c4661ef--


From nobody Tue May 26 16:06:50 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 28C603A0B82 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:06:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 sVuQUpiEs5pq for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:06:48 -0700 (PDT)
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 F3B6B3A0B81 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:06:47 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 580E0280365 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:06:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534407; bh=BE4SEs8553kvLPHlKUtufeTndNmMqg+Nt4VwzP8RPzU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oJFJ+E3V8TkKdFtpGHypgQ6kCwM9bXjzt2fEgpmMb15aXERq9XFnXLD4+dYCC6btM YX5HulBU/HclrcYKDdMc5l5STAkme0XwaGnq+pxqUvjWh4ONCeT683aRAZbEw7t9z+ j6OTvQlYsIMe97mLJS/3oZSmYhlerC0kv+qj4leE=
Date: Tue, 26 May 2020 16:06:47 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZRULCQVKOAVTGXHR543GBAPEVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684/review/418737554@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3684@github.com>
References: <quicwg/base-drafts/pull/3684@github.com>
Subject: Re: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecda10748d8c_cbd3fe81f2cd96c2515a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9vebxPOlqvxSdXKvZiaHw97aw8s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:06:49 -0000

----==_mimepart_5ecda10748d8c_cbd3fe81f2cd96c2515a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



>  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.

I'll take back my suggestion that this should be a design issue. I agree that this new text is consistent with what is possible. (To answer myself, a new version of QUIC could just as well define coalescing as using "sub packets" with other headers, so there's no way to require a header format for a second packet in a coalesced datagram.)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684#discussion_r430755137
----==_mimepart_5ecda10748d8c_cbd3fe81f2cd96c2515a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3684#discussion_r430755137">draft-ietf-quic-invariants.md</a>:</p>
<pre style='color:#555'>&gt;  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.
</pre>
<p>I'll take back my suggestion that this should be a design issue. I agree that this new text is consistent with what is possible. (To answer myself, a new version of QUIC could just as well define coalescing as using "sub packets" with other headers, so there's no way to require a header format for a second packet in a coalesced datagram.)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684#discussion_r430755137">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK53FZUNYLDSIJNVUSLRTRDQPANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6CRHPLWT2PCQLTSEDRTRDQPA5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2W3EQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684#discussion_r430755137",
"url": "https://github.com/quicwg/base-drafts/pull/3684#discussion_r430755137",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecda10748d8c_cbd3fe81f2cd96c2515a--


From nobody Tue May 26 16:06: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 A12C53A0B81 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:06:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 FWURZD3dkI1Q for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:06:52 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2DC223A0BAD for <quic-issues@ietf.org>; Tue, 26 May 2020 16:06:52 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 8305A8C05E6 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:06:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534411; bh=WnzorMDo8DQSNpgYcFixQbQMsIUqTlQmeWLaeqMg6Jg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JjNw0J6RS/78hV+CUB+w9wGNk2Xh3PvqwYNAS48u90Ibmm2Ruo9QoUWsFDQzXZBe9 LZyrxOS4VtliuC59zen8Ry9rdbdl+6n7KEMeIWHtPX9iWVeaU9g2rJbl0EAJefBlLC XMapK1Z97lltL8teYO9mGntxrmb55bPOJjoz7VgI=
Date: Tue, 26 May 2020 16:06:51 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2F4W6LNM2QMHGIGJF43GBAXEVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684/review/418737587@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3684@github.com>
References: <quicwg/base-drafts/pull/3684@github.com>
Subject: Re: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecda10b6fd3e_1dd43fed126cd95c2711e0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lIOvN_2GJcZSAlxasltVfEAtYPE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:06:54 -0000

----==_mimepart_5ecda10b6fd3e_1dd43fed126cd95c2711e0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-418737587
----==_mimepart_5ecda10b6fd3e_1dd43fed126cd95c2711e0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-418737587">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK24G5VJVEP5ZOMU333RTRDQXANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2XZERAQKPGNTSZFQDRTRDQXA5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2W3MY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-418737587",
"url": "https://github.com/quicwg/base-drafts/pull/3684#pullrequestreview-418737587",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecda10b6fd3e_1dd43fed126cd95c2711e0--


From nobody Tue May 26 16:07:37 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 687ED3A0B86 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:07:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 HD5A2RvJ1oLY for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:07:35 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4F5913A0B85 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:07:35 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 8414F8C07DF for <quic-issues@ietf.org>; Tue, 26 May 2020 16:07:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534454; bh=vVLM49qnXUelaK/fHev6MSszV+hwl/iqa62C5BW6E10=; h=Date:From:To:Subject:From; b=DtE55nXw9ISmbAYavAedLHwub3PoZLg+Q1VYz41oxMqAgF9hUv+pZLqx0S4RPnOi5 4qvVNvWOrt78KPYl3Rcx+Xhf74zETLJkRzBx0SiV8N7+kVeOB0Mgy+yYGjblcNnHf/ yv92OJWw6VjrlHOS0AA8xb3vp324qX1Nwno34HWY=
Date: Tue, 26 May 2020 16:07:34 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dedupe-packets/d90c54-cbb0b2@github.com>
Subject: [quicwg/base-drafts] 081f95: Rewrap
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qCbJQq6lQbqnCUhYWzu8kmC6H1g>
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: Tue, 26 May 2020 23:07:36 -0000

  Branch: refs/heads/dedupe-packets
  Home:   https://github.com/quicwg/base-drafts
  Commit: 081f95f0de6f0b3c0736c36e0062a8cee6c540e6
      https://github.com/quicwg/base-drafts/commit/081f95f0de6f0b3c0736c36e0062a8cee6c540e6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Rewrap


  Commit: cbb0b2bc2b10816f686896779361cc42f4be8c35
      https://github.com/quicwg/base-drafts/commit/cbb0b2bc2b10816f686896779361cc42f4be8c35
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  remove unnecessary sentence


Compare: https://github.com/quicwg/base-drafts/compare/d90c544322dc...cbb0b2bc2b10


From nobody Tue May 26 16:07:46 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 BAD3F3A0B85 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:07:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 eRdwCtKRXTtS for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:07:43 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 950E23A0B82 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:07:43 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id EFA0C6E034E for <quic-issues@ietf.org>; Tue, 26 May 2020 16:07:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534462; bh=tKFLf/jxJLVpmOdSuTF+NVpIYS1wfuub7xvzssOZU/Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bzdTzonmd5OvmxDiHXhDhyX8j10HSEpSM5Vh9izBvahV5DuoYKnX2aVqCmyGeAgDO RlmON4TjnzoQPkeYLGFflM69uOJdqqZBV43+mjClWfk8EIR15C8KQ3MGTBT7diL0bB wmVyP/VejRwJihuRcDxnskAEGFufUaZPK+T6vdhM=
Date: Tue, 26 May 2020 16:07:42 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/push/5132500822@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecda13ee11f9_772c3fa4dc8cd960588845"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lA_9DW9zHdvg_lyaZN72ydJZ8pk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:07:45 -0000

----==_mimepart_5ecda13ee11f9_772c3fa4dc8cd960588845
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 2 commits.

081f95f0de6f0b3c0736c36e0062a8cee6c540e6  Rewrap
cbb0b2bc2b10816f686896779361cc42f4be8c35  remove unnecessary sentence


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696/files/d90c544322dc27c22539bb87fa09a6a110af4ab7..cbb0b2bc2b10816f686896779361cc42f4be8c35

----==_mimepart_5ecda13ee11f9_772c3fa4dc8cd960588845
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/081f95f0de6f0b3c0736c36e0062a8cee6c540e6">081f95f</a>  Rewrap</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/cbb0b2bc2b10816f686896779361cc42f4be8c35">cbb0b2b</a>  remove unnecessary sentence</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3696/files/d90c544322dc27c22539bb87fa09a6a110af4ab7..cbb0b2bc2b10816f686896779361cc42f4be8c35">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4R4UWZ4COW2Q2KLK3RTRDT5ANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3QXWQOAOVVEDIEOD3RTRDT5A5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDEOJYGI3TCMSQOVZWQIZVGEZTENJQGA4DEMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696/files/d90c544322dc27c22539bb87fa09a6a110af4ab7..cbb0b2bc2b10816f686896779361cc42f4be8c35",
"url": "https://github.com/quicwg/base-drafts/pull/3696/files/d90c544322dc27c22539bb87fa09a6a110af4ab7..cbb0b2bc2b10816f686896779361cc42f4be8c35",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecda13ee11f9_772c3fa4dc8cd960588845--


From nobody Tue May 26 16:08:10 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 528113A0B82 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:08:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 kq0j7swsOToY for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:08:08 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 58B083A0B87 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:08:08 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id B6EA26A0840 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:08:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534487; bh=puOvlR1RSGrEintszI5XGmZUEfJRVvt/luXxYaVCSEw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LH5fsiNpU3u/k1aUD/+mcUHs7Qk6bzyXdQNB0uSuTohLOj5WncdnY3ZxejnAVVL7M SEoDWoJlMzIHmXvH+1pM7U7Vki8ytCNRZq7jI/G5lMjuELsc2g1NQ8CqeM+Zya0co0 Ni4D5XSVAdttlnUCuBajtqMb6F5fXJp7BBXlbCz4=
Date: Tue, 26 May 2020 16:08:07 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK43MEPB3TTD2S3ROXN43GBFPEVBNHHCKOUZLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/review/418738077@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecda157a6d72_3aec3fc1f80cd95c239288"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FAwUrUDIKpLjh_ZiyXiQ9gZOyrc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:08:09 -0000

----==_mimepart_5ecda157a6d72_3aec3fc1f80cd95c239288
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-418738077
----==_mimepart_5ecda157a6d72_3aec3fc1f80cd95c239288
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-418738077">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK26EGXQKDRN2VJ3AODRTRDVPANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3W3PQRSV7QKH4URFLRTRDVPA5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2W7HI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-418738077",
"url": "https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-418738077",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecda157a6d72_3aec3fc1f80cd95c239288--


From nobody Tue May 26 16:08:34 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 789953A0B85 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:08:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 QUIrv9z1CZBa for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:08:32 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 640903A0B82 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:08:32 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 9687D1204D5 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:08:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534511; bh=yAJQtlbLKYD3MDQ6oMe90zURF8GHAu5FHSFOMKLL7ls=; h=Date:From:To:Subject:From; b=dTI0lSvyKHhyV8ddRau3HXID7Lzp66KmXot5eU7dYfISpnzaaQW1DqVs3H4Ep6doa T4V1Gr1clIpIg/+iLRsRni7RUxbHVcWYG/txC/s6LhfOydih6XyX+azMu90aiooprx 1e9ai21vi5A8Y5FYNYVb7aPWqYHwiYTMRwXlq3wQ=
Date: Tue, 26 May 2020 16:08:31 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/53bdd7-0a6bea@github.com>
Subject: [quicwg/base-drafts] 0a6bea: Script updating gh-pages from cbb0b2bc. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TsivswEebH4FsRAy7rF8EeNBRRI>
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: Tue, 26 May 2020 23:08:34 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0a6beaffca6a16aa854b9639b783c50ab16c950e
      https://github.com/quicwg/base-drafts/commit/0a6beaffca6a16aa854b9639b783c50ab16c950e
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M dedupe-packets/draft-ietf-quic-http.html
    M dedupe-packets/draft-ietf-quic-http.txt
    M dedupe-packets/draft-ietf-quic-qpack.html
    M dedupe-packets/draft-ietf-quic-qpack.txt
    M dedupe-packets/draft-ietf-quic-transport.html
    M dedupe-packets/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from cbb0b2bc. [ci skip]



From nobody Tue May 26 16:15:24 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 807963A0BA1 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:15:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 7UX_LdaIh7b5 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:15:21 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 561763A0B9C for <quic-issues@ietf.org>; Tue, 26 May 2020 16:15:21 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id A667E6E0DF8 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:15:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534920; bh=dSRBq3sLpzDbCQe1/8FKHfm52cgN0SDjtCsxHyEETWs=; h=Date:From:To:Subject:From; b=kkjXivqANyblenwpH5XrxU7AyB0T81SvfceSS978U//wa4T1OuK+Oc34mz6O7uzak v+J8TPVQbz/rqJ/aMUzkI9UCUNsw6C6vHoK4wChesQD531VJldGHCo1LrsWV753m49 UlS3T3Fz9c9JKyb0HO2epOclHxVfrZXyeO+5DSqw=
Date: Tue, 26 May 2020 16:15:20 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/731fd5-bfddc8@github.com>
Subject: [quicwg/base-drafts] d36507: Make -transport non-normative
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IXtMcWudrKrMIlvQq5QBacJ8fzU>
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: Tue, 26 May 2020 23:15:23 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: d365070088274d67bfb434237d12248aa6316dc4
      https://github.com/quicwg/base-drafts/commit/d365070088274d67bfb434237d12248aa6316dc4
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Make -transport non-normative


  Commit: cb9209e6472a73c207790207cfa3202983b3efd9
      https://github.com/quicwg/base-drafts/commit/cb9209e6472a73c207790207cfa3202983b3efd9
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Reword packets stuff


  Commit: f4f9f7adb6460d762a4d9468a307fce4fae478ac
      https://github.com/quicwg/base-drafts/commit/f4f9f7adb6460d762a4d9468a307fce4fae478ac
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Move blank lines


  Commit: e133545372dbea7eb4a52ac6db5b7d5b4d6ca295
      https://github.com/quicwg/base-drafts/commit/e133545372dbea7eb4a52ac6db5b7d5b4d6ca295
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  s/Len/Length/


  Commit: ede2137e80798e97a73347246e5260595f542db0
      https://github.com/quicwg/base-drafts/commit/ede2137e80798e97a73347246e5260595f542db0
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Use an abbreviated notation section


  Commit: bfddc8e7920972db67ac2f88a5e5919ed6910a06
      https://github.com/quicwg/base-drafts/commit/bfddc8e7920972db67ac2f88a5e5919ed6910a06
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Merge pull request #3684 from quicwg/invariant-independent

Invariant independent


Compare: https://github.com/quicwg/base-drafts/compare/731fd5bf0d0d...bfddc8e79209


From nobody Tue May 26 16:15:29 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 512443A0B9C for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:15:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 IywM3cKuxRhu for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:15:22 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 412183A0B9E for <quic-issues@ietf.org>; Tue, 26 May 2020 16:15:22 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 74EF7520328 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:15:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534921; bh=Ye5fsYDSF7bIlpUFZYWMjidJl8n6/jZIITjq9ZqrR5s=; h=Date:From:To:Subject:From; b=OfaGUY5BbtHJcMiqOvIhoH548iOAijP+2kqPNVkGsrkk4P+xg3PeuDZnr3J/QcZ8x xdGxRnch7BJ4k2CT1nQepb+2iGfcLtyRLE7NsPkLB8ANpx8c2zS2H4eTGRnVQhYHs7 hVO9JMCrwe30SZUE8gGa9iAAFOJLTNfsvm1jzWjM=
Date: Tue, 26 May 2020 16:15:21 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/invariant-independent/ede213-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EKGZLIo0a5a8e6SIA5aIvfgxF3M>
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: Tue, 26 May 2020 23:15:23 -0000

  Branch: refs/heads/invariant-independent
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 26 16:15:34 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 EBA903A0B9E for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:15:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 yyfPilVUOMIS for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:15:30 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9FB8F3A0BB1 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:15:30 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 9F5AA66034F for <quic-issues@ietf.org>; Tue, 26 May 2020 16:15:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534929; bh=KMNd5jx3kVBOErcKUyts30MBgTN6kpbW6JXihVBnKy0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FGse19a1XHAWyja/UagZiaePigWN1181RvT6Wz4dRP/VXRr4gT9j6G4rsFSP5YTDz V+XeMVpr1VQnO6iDHXsDNBW59yMIdt7PnBxs7BCYJpMlD9bgp8885q6v+SrqClvNZl y8oqj5JYIFjEG1Zn9pnwzmDGI1we003wp9Cliwak=
Date: Tue, 26 May 2020 16:15:29 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6HA23DDTBQ7HGDSD543GCBDEVBNHHCKCOUQQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3673/issue_event/3375754072@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3673@github.com>
References: <quicwg/base-drafts/issues/3673@github.com>
Subject: Re: [quicwg/base-drafts] New packet format used before it is defined (#3673)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecda3118faa1_3d793fb2610cd96c3412a1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/G1eSq-tEAKmoWEhIxdKDYAGDktg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:15:32 -0000

----==_mimepart_5ecda3118faa1_3d793fb2610cd96c3412a1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3673 via #3684.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3673#event-3375754072
----==_mimepart_5ecda3118faa1_3d793fb2610cd96c3412a1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621401220" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3673" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3673/hovercard" href="https://github.com/quicwg/base-drafts/issues/3673">#3673</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="622911875" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3684" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3684/hovercard" href="https://github.com/quicwg/base-drafts/pull/3684">#3684</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3673#event-3375754072">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5W6TJPKQ2DCJ3BBILRTRERDANCNFSM4NFQIK4A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7SB6EITYVJ25HG27LRTRERDA5CNFSM4NFQIK4KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZE26WWA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3673#event-3375754072",
"url": "https://github.com/quicwg/base-drafts/issues/3673#event-3375754072",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecda3118faa1_3d793fb2610cd96c3412a1--


From nobody Tue May 26 16:15:37 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 AE0123A0B9E for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:15:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 GF5hZ9NJfYKv for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:15:31 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AC8683A0B9C for <quic-issues@ietf.org>; Tue, 26 May 2020 16:15:31 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 2657B960C23 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:15:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534930; bh=9eOfzSLmrPslC/KpsUcebJCTd/QU2llhTBeqJsXB7zQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1BJ80uRgIHgwMocw8tWMxuApiM+0M6CGEde+b2twLt1aWCdK/UCiSaJV3HCBAmKs9 ExLe/+3inXdnARfk8Me33XJJlyELOCgW03Q3FV3WL28CLnN4hkHo9IMw6wjbCyLrNV zXGn8oTKt/07VY/nw/t3l0+QnZ4i4RhU4sm+zlyk=
Date: Tue, 26 May 2020 16:15:30 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3WAM5OVBEBMK4YJA543GCBFEVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684/issue_event/3375754065@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3684@github.com>
References: <quicwg/base-drafts/pull/3684@github.com>
Subject: Re: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecda31217b02_29e43f95732cd95c160771"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SklrheG0_pF396_DXuOL2P-5DHA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:15:33 -0000

----==_mimepart_5ecda31217b02_29e43f95732cd95c160771
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3684 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684#event-3375754065
----==_mimepart_5ecda31217b02_29e43f95732cd95c160771
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="622911875" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3684" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3684/hovercard" href="https://github.com/quicwg/base-drafts/pull/3684">#3684</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684#event-3375754065">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4P7QOMCVHBA7V6BDDRTRERFANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5T6TVFM7NYNZ7C7RDRTRERFA5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZE26WUI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684#event-3375754065",
"url": "https://github.com/quicwg/base-drafts/pull/3684#event-3375754065",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecda31217b02_29e43f95732cd95c160771--


From nobody Tue May 26 16:16:28 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 6EED33A0BA1 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:16:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 hZplg-XthwWu for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:16:26 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5D0E93A0B9E for <quic-issues@ietf.org>; Tue, 26 May 2020 16:16:26 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id B2BE28C1020 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:16:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590534985; bh=6W79KsiiR+K1mL6aJWYPv1fdNa7VrSoznrGTGQK3iJA=; h=Date:From:To:Subject:From; b=xQseSMkM1enZJkGFlfgw/pCeXtRTY45RjsAUu7i2fMlX1isH8+w3vcszGhJWihwis YPSE+/NJZY1Kna8OciWJxavI05+HXy1+oeVSwrN+hmPG0DnfjTt+U0iMhHvoNjrfon wW4P8+YL0UdXmTTE5xvZOBLmjftx+r4jd07WG4WY=
Date: Tue, 26 May 2020 16:16:25 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0a6bea-8a5a66@github.com>
Subject: [quicwg/base-drafts] 8a5a66: Script updating gh-pages from bfddc8e7. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/egeIKQrfDt4k6hSem1cpT7eoKFE>
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: Tue, 26 May 2020 23:16:27 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8a5a66d81755168b67dc18a0f444e2c2754e0c3a
      https://github.com/quicwg/base-drafts/commit/8a5a66d81755168b67dc18a0f444e2c2754e0c3a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from bfddc8e7. [ci skip]



From nobody Tue May 26 16:20:45 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 D26793A0BE9 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:20:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 n7L-NYgE9P4T for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:20:35 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F14CB3A0C0A for <quic-issues@ietf.org>; Tue, 26 May 2020 16:20:34 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 5143F6A03AB for <quic-issues@ietf.org>; Tue, 26 May 2020 16:20:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590535234; bh=4JHFNPCGktzdqn7DxhgNOf5gZvdpgxGGUvyNhT/veBs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uwnbOQTsk0iPABxxmoXKaRr7zmTCp4FMdsvU/eWYrXjaKaj5eTR9T52GVyTu2mFfC OfAveNU6Y6Umqf+sYvt2EmFglKSvrfhrZ+duVAFmTw7xoaJJE8ymmc5E6ttOzy0Bzi SYXQrwF+ToSPB6P6I6I96rwvATRs+RJGxJmj0bc0=
Date: Tue, 26 May 2020 16:20:34 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5A7KJAKCPISABGRU543GCUFEVBNHHCKREEAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3700/review/418742697@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3700@github.com>
References: <quicwg/base-drafts/pull/3700@github.com>
Subject: Re: [quicwg/base-drafts] Servers should always send CANCEL_PUSH (#3700)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecda442437e8_71623ff9e80cd95c857e3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jn3zBVMSwMjxr6zPMZg_sUHmgbY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:20:44 -0000

----==_mimepart_5ecda442437e8_71623ff9e80cd95c857e3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-418742697
----==_mimepart_5ecda442437e8_71623ff9e80cd95c857e3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-418742697">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5FGHHMBECQH3DBOCTRTRFEFANCNFSM4NLJ4YMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK73V6KUCDJOIBFXQVDRTRFEFA5CNFSM4NLJ4YM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD2YDKI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-418742697",
"url": "https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-418742697",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecda442437e8_71623ff9e80cd95c857e3--


From nobody Tue May 26 16:27:06 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 A53AF3A0BB6 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:27:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ea03uU2ANdbV for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:27:02 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 393083A0BAA for <quic-issues@ietf.org>; Tue, 26 May 2020 16:27:02 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id CFB26280ABC for <quic-issues@ietf.org>; Tue, 26 May 2020 16:27:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590535620; bh=+ZZCDusFojMArVoExQVn8bYRl649hygOk/BDG3/DhOQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EoDYipPefRjmckHVoP+HNwosocBRBA+3vynm0y75BhyLmB8z05Uz9quTAOInfW9Wv SO0o+vNWtjok58vl19+Rh6hIVpJRke4oXDvsenZjYXlCpaqlCW+9wjzg1s/V6MzEWD QCo5wSeZxqglWiXz7lsOvW4aqpltTbwP4OTHP15Y=
Date: Tue, 26 May 2020 16:27:00 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK57CXONBAKBGH6QH6543GDMJEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/634332765@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecda5c4bf6ba_80a3f858bacd960775c9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Oj76Ud5k8_fyYw0dQzI7mEjo5TI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:27:05 -0000

----==_mimepart_5ecda5c4bf6ba_80a3f858bacd960775c9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I think that @kazuho is entirely right here.  The renaming of the error code is useful as it removes the *implication* of a semantic that would be destructive.  That implication is that the code is like a 503, which comes with the *further* implication that holding back for some time is desirable (due to the common use of Retry-After with 503).  QUIC has no Retry-After, so any implied time delay is bogus.

As mentioned, that browsers might sit and wait is a policy decision that makes sense in the current state of the world.

I'm going to merge the PR.  But I get the sense that this is not directly addressing the issue.  For the issue itself, I think that the only real resolution is: that's tough, but too bad.  As numerous people have said, this phase of connection establishment is ripe for DoS and we have chosen to accept that risk in QUIC version 1.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634332765
----==_mimepart_5ecda5c4bf6ba_80a3f858bacd960775c9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I think that <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/kazuho/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a> is entirely right here.  The renaming of the error code is useful as it removes the <em>implication</em> of a semantic that would be destructive.  That implication is that the code is like a 503, which comes with the <em>further</em> implication that holding back for some time is desirable (due to the common use of Retry-After with 503).  QUIC has no Retry-After, so any implied time delay is bogus.</p>
<p>As mentioned, that browsers might sit and wait is a policy decision that makes sense in the current state of the world.</p>
<p>I'm going to merge the PR.  But I get the sense that this is not directly addressing the issue.  For the issue itself, I think that the only real resolution is: that's tough, but too bad.  As numerous people have said, this phase of connection establishment is ripe for DoS and we have chosen to accept that risk in QUIC version 1.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634332765">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3EDDLGI6RLXEJEWYTRTRF4JANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7WTTZXDD26CZNZKADRTRF4JA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXHSMXI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634332765",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634332765",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecda5c4bf6ba_80a3f858bacd960775c9--


From nobody Tue May 26 16:45:37 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 3B1303A0BD4 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:45:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 3I1eTHjl8wB0 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:45:33 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 97F993A0BD1 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:45:33 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id B25868C0543 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:45:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590536732; bh=9fULLbVaBITgT+kgPQXJD2nY+cZN/WJ1e0D0BSl+jrM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=r+pFiZYkh+D0jgd2KnwnPne0arPkOj5YB1QQH7gkMjwJqr1wA3feOcyWxYt/vHKA2 0kEKfMIfQN2zPhr8vVVEgKCrjCu6puTRjmGAPamulfiz8fumA/ws76wb2RTWXrfxJ6 zVOR7AiBaPppNoMi10Zrr432m1+k8MXzJbpgN8vo=
Date: Tue, 26 May 2020 16:45:32 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7CDFKCTSZ7CT3MVNF43GFRZEVBNHHCKP4UYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3699/review/418751214@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3699@github.com>
References: <quicwg/base-drafts/pull/3699@github.com>
Subject: Re: [quicwg/base-drafts] A suggested text about a push stream after a CANCEL_PUSH (#3699)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdaa1ca3053_36093ffb07acd96425058"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QlwuhJtRBBavLskhkTlLNlK8eOM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:45:35 -0000

----==_mimepart_5ecdaa1ca3053_36093ffb07acd96425058
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.

So the problem here is that this is one-sided.  A server has a similar issue.  If it decides to cancel, then it might have created the stream, so it needs to reset the stream too.

> @@ -1292,9 +1292,10 @@ corresponding promise to be fulfilled.
 Sending CANCEL_PUSH has no direct effect on the state of existing push streams.
 A server SHOULD NOT send a CANCEL_PUSH when it has already created a
 corresponding push stream, and a client SHOULD NOT send a CANCEL_PUSH when it
-has already received a corresponding push stream.  If a push stream arrives
-after a client has sent CANCEL_PUSH, this MAY be treated as a stream error of
-type H3_STREAM_CREATION_ERROR.
+has already received a corresponding push stream. A push stream may arrive

```suggestion
has already received a corresponding push stream. A push stream could arrive
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3699#pullrequestreview-418751214
----==_mimepart_5ecdaa1ca3053_36093ffb07acd96425058
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<p>So the problem here is that this is one-sided.  A server has a similar=
 issue.  If it decides to cancel, then it might have created the stream, =
so it needs to reset the stream too.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3699#discussi=
on_r430766632">draft-ietf-quic-http.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1292,9 +1292,10 @@ corresponding promi=
se to be fulfilled.=0D
 Sending CANCEL_PUSH has no direct effect on the state of existing push s=
treams.=0D
 A server SHOULD NOT send a CANCEL_PUSH when it has already created a=0D
 corresponding push stream, and a client SHOULD NOT send a CANCEL_PUSH wh=
en it=0D
-has already received a corresponding push stream.  If a push stream arri=
ves=0D
-after a client has sent CANCEL_PUSH, this MAY be treated as a stream err=
or of=0D
-type H3_STREAM_CREATION_ERROR.=0D
+has already received a corresponding push stream. A push stream may arri=
ve=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-has already received a corresponding push str=
eam. A push stream may arrive=0D
+has already received a corresponding push stream. A push stream could ar=
rive=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3699#pullrequestreview-418751214">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KZPFOBY2HG3C3MJUPTRTRIBZANCNFSM4NKLLZRA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK2K3I2Q3FVEACG3GY3RTRIBZA5CNFSM4=
NKLLZRKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODD22F3Q.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3699#pullrequestrev=
iew-418751214",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3699#pullrequestreview=
-418751214",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecdaa1ca3053_36093ffb07acd96425058--


From nobody Tue May 26 16:46:34 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 4941F3A0BD8 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:46:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 a8mOXI1WDd9j for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:46:31 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0AF273A0BD2 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:46:31 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 4FE7B5205A3 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:46:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590536790; bh=KPU3n87r5k26HHDoZUAJE5DhDkKo6vEW0WP9RX+jgtE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WNnE7Npsqmesi1IgoqPe8pwR36/8qeiCcKguKCwr8amTHb6BbAyHhNLsRCTbcICE0 xOEyFw41e4U+RVMMUXLXtPoilzHxBHqO4LVsgqPcXrhlIF4MYREALsPYuDwYzTfXlO 3c25WRy2QWCg/C/j7oTiyCeh1ml8mkgS/GtniAN4=
Date: Tue, 26 May 2020 16:46:30 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5S4AREWNJJ647DXFV43GFVNEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418751848@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdaa563ea6b_60763fc2cb0cd960271a8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Ah2KKLtZb3l3FvquYXdna_4_8xw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:46:32 -0000

----==_mimepart_5ecdaa563ea6b_60763fc2cb0cd960271a8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +These frames might not be retransmitted if a probe packet containing
+them is lost.  The frames consume congestion window,
+which could delay the transmission of subsequent application data.

Updated the broken text.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767210
----==_mimepart_5ecdaa563ea6b_60763fc2cb0cd960271a8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767210">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +These frames might not be retransmitted if a probe packet containing
+them is lost.  The frames consume congestion window,
+which could delay the transmission of subsequent application data.
</pre>
<p>Updated the broken text.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767210">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK57WE5WKS5WHYHMY33RTRIFNANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK23GAAPGGADYXUHUSTRTRIFNA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD22K2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767210",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767210",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdaa563ea6b_60763fc2cb0cd960271a8--


From nobody Tue May 26 16:47:14 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 D8D3C3A0BD8 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:47:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 WF5yjIMKiyKj for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:47:11 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A3C7E3A0BD2 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:47:11 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id 5FB3A6A0544 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:47:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590536828; bh=i+M4rmFKjl+Hv+flaEMnEwgMDFhzGl9BxuJo8QwKIwA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WRpzgUENzootl2xAvDDTEwNWNzQhhBs07aflN2DkoYz9WEUSJ7QsxgwfSw6a6U/4x JQdNjPX4IAg/9DuAWPGTBgU6k5ttW5y1oe5jUq79wrhTUx+aDyUBFTQ6UtcjiCBSyM OZMRResDYYbYt34E7VIZy0oQllAtNu5Or4fvz2vU=
Date: Tue, 26 May 2020 16:47:08 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK735RFW3X6Q5HANEFN43GFXZEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418752068@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdaa7c45391_70d23fec93acd964100526"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/F5LdZ7DPBoabQC0srm7jqBJpe6Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:47:13 -0000

----==_mimepart_5ecdaa7c45391_70d23fec93acd964100526
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



>  as specified in {{!RFC8201}} and Section 5.2 of {{!RFC8085}}. This validation
 SHOULD use the quoted packet supplied in the payload of an ICMP message to
-associate the message with a corresponding transport connection {{!DPLPMTUD}}.
-
+associate the message with a corresponding transport connection (e.g., {{!DPLPMTUD}}).

I'm happy with either, as I said.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767384
----==_mimepart_5ecdaa7c45391_70d23fec93acd964100526
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767384">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  as specified in {{!RFC8201}} and Section 5.2 of {{!RFC8085}}. This validation
 SHOULD use the quoted packet supplied in the payload of an ICMP message to
-associate the message with a corresponding transport connection {{!DPLPMTUD}}.
-
+associate the message with a corresponding transport connection (e.g., {{!DPLPMTUD}}).
</pre>
<p>I'm happy with either, as I said.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767384">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7PC3I7R5QANT2PKLLRTRIHZANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK52UE5ODRFWQI7ECPLRTRIHZA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD22MRA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767384",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767384",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdaa7c45391_70d23fec93acd964100526--


From nobody Tue May 26 16:47:58 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 D0D813A0BDD for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:47:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 N-OMOra_Cmi9 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:47:54 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 39CF73A0BDF for <quic-issues@ietf.org>; Tue, 26 May 2020 16:47:54 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 83B278C0E2B for <quic-issues@ietf.org>; Tue, 26 May 2020 16:47:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590536873; bh=3AhRVaYCL9ledjge399hZT13boBUerSD1WX6lIgd+LY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=F3cMjiOlmky5IAlZRYWLcjQgt6EjJeHr3CNQ6dYiooJoz/uTwlTh14+WR/4bA7UmE sIWi9HwtxNvswgqyh66wjSzOunLjhBSQwL7bfG44C4f447H+IOMFJ3NOQlwV0o6DG9 XHr6rP3C3diocmp5DeGnHc43ctMIoq2DZW+c2vq8=
Date: Tue, 26 May 2020 16:47:53 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZUA7DM3SRBABFPUT543GF2TEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418752320@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdaaa9743cf_51703fcdfe2cd95c25180"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5uzsSTZBWIOyKe-ZpcC96oIypU0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:47:57 -0000

----==_mimepart_5ecdaaa9743cf_51703fcdfe2cd95c25180
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> @@ -3797,17 +3797,23 @@ later time in the connection.
 The QUIC packet size includes the QUIC header and protected payload, but not the
 UDP or IP header.
 
+QUIC depends upon a minimum packet size of at least 1280 bytes.
+This is the IPv6 minimum size
+{{?RFC8200}} and is also supported by most modern IPv4 networks.
+Assuming the minimum IP header size, this results in a
+QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4. 

I could live with that.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767588
----==_mimepart_5ecdaaa9743cf_51703fcdfe2cd95c25180
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767588">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3797,17 +3797,23 @@ later time in the connection.
 The QUIC packet size includes the QUIC header and protected payload, but not the
 UDP or IP header.
 
+QUIC depends upon a minimum packet size of at least 1280 bytes.
+This is the IPv6 minimum size
+{{?RFC8200}} and is also supported by most modern IPv4 networks.
+Assuming the minimum IP header size, this results in a
+QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4. 
</pre>
<p>I could live with that.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767588">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7OX3XDWMTY7PRONVLRTRIKTANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK75ZQJMUYEIOOYLXXTRTRIKTA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD22OQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767588",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767588",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdaaa9743cf_51703fcdfe2cd95c25180--


From nobody Tue May 26 16:48:54 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 A62863A0BDB for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:48:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 QSYQqVIMNxhS for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:48:51 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 644573A0BD2 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:48:51 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id E389E280ABC for <quic-issues@ietf.org>; Tue, 26 May 2020 16:48:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590536929; bh=PoH1cNdJlYZZCJZDTH4HxgmECMWM8JTW+8TrF6wFJ6Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=w8+2ABcu4GzvtIo73aeTYjUijlR39TzVo0MrrvKP+xYChu8Yr8SD6m+6e62curRVv bk/IBkXAKTttJBwH/7RaoQ6ZA0LZ0rzezHQdkzE/fTuWJ8StUbk9IyIDnwNJizCG+G OWkQQfLQnwLqg9IiKD0Z28rC2/cDsJnVljG2o0mk=
Date: Tue, 26 May 2020 16:48:49 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYMY54H4SSWLSHI6GN43GF6DEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418752643@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdaae1d0723_62bb3ff7e84cd96411741e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QvtIQlTAdPJnGnGUIsqm5wJAB1c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:48:53 -0000

----==_mimepart_5ecdaae1d0723_62bb3ff7e84cd96411741e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



>  In the absence of these mechanisms, QUIC endpoints SHOULD NOT send IP packets
-larger than 1280 bytes. Assuming the minimum IP header size, this results in a
-QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4. A QUIC
-implementation MAY be more conservative in computing the QUIC maximum packet
-size to allow for unknown tunnel overheads or IP header options/extensions.
+larger than the minimum QUIC packet size. 
+
+All QUIC
+packets other than PMTUD/DPLPMTUD probe packets SHOULD be sized to fit within the
+maximum packet size to avoid the packet being fragmented or dropped
+{{?RFC8085}}.
+
+If a QUIC endpoint determines that the PMTU between any pair of local and remote
+IP addresses has fallen below the smallest allowed maximum packet size, it MUST immediately 

I think that Gorry's changes (recognizing the minimum on MPS in DPLPMTUD) are OK, but I would add "of 1200 bytes" for clarity.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767872
----==_mimepart_5ecdaae1d0723_62bb3ff7e84cd96411741e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767872">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  In the absence of these mechanisms, QUIC endpoints SHOULD NOT send IP packets
-larger than 1280 bytes. Assuming the minimum IP header size, this results in a
-QUIC maximum packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4. A QUIC
-implementation MAY be more conservative in computing the QUIC maximum packet
-size to allow for unknown tunnel overheads or IP header options/extensions.
+larger than the minimum QUIC packet size. 
+
+All QUIC
+packets other than PMTUD/DPLPMTUD probe packets SHOULD be sized to fit within the
+maximum packet size to avoid the packet being fragmented or dropped
+{{?RFC8085}}.
+
+If a QUIC endpoint determines that the PMTU between any pair of local and remote
+IP addresses has fallen below the smallest allowed maximum packet size, it MUST immediately 
</pre>
<p>I think that Gorry's changes (recognizing the minimum on MPS in DPLPMTUD) are OK, but I would add "of 1200 bytes" for clarity.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767872">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2Y2KM6TAGHCEJV323RTRIODANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK74N4IEVA3O5C6VSD3RTRIODA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD22RAY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767872",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430767872",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdaae1d0723_62bb3ff7e84cd96411741e--


From nobody Tue May 26 16:50:04 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 DD8E93A0BDF for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:50:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Pi-J_FDxbK80 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:50:01 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7131F3A0BDD for <quic-issues@ietf.org>; Tue, 26 May 2020 16:50:01 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id A630796049A for <quic-issues@ietf.org>; Tue, 26 May 2020 16:49:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590536999; bh=ymVvUHs6CfQbNCXfoM9k6IXf0n4LNn/dTwrw1FQgodo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kYVp9B5ElPUzyqCQcflgFJBw8NeJ50K0jYkBZ16MOMByw7rHQMUQDbzSBYXFXoW14 TIUi4ovrAen2ayhA7Y2WGVS67T7WVxKd6vyPoUhvhuWtmlda3SMqraKRXdwG0USl+p qOqc2mhk3vhgj6w5/yE0DfQeWrpDtSB2ZkIVYKhg=
Date: Tue, 26 May 2020 16:49:59 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY6445FAZ3YZA7MP6F43GGCPEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418753038@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdab2796ae9_ca23fbc2e4cd964370be"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Y2XekrsAf57Zbc3aInZi_2GG8sw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:50:03 -0000

----==_mimepart_5ecdab2796ae9_ca23fbc2e4cd964370be
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +state when the QUIC connection handshake has been completed and
+the endpoint has established a 1-RTT key.

@gorryfair replies (below, repeated to keep the thread intact):

> The reason why we didn't suggest this within DPLPMTUD, was two things:
>
> * Using the limited for IW for packet probes rapidly consumes the current IW space in bytes, and we were unconvinced of the importance to tenatively try a large PMTU during the first RTT.
> 
> * I was not aware of measurement data about how changing the initial flight of data would impact congestion collapse, since at this point there is no feedback from the receiver, and it seems, at least to me, to raise questions regarding stability with large numbers of flows and also as you note, the potential DoS opportunities.
>
> So, I'd be interested in what people think about this, and see any analysis and experience.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430768205
----==_mimepart_5ecdab2796ae9_ca23fbc2e4cd964370be
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430768205">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +state when the QUIC connection handshake has been completed and
+the endpoint has established a 1-RTT key.
</pre>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/gorryfair/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gorryfair">@gorryfair</a> replies (below, repeated to keep the thread intact):</p>
<blockquote>
<p>The reason why we didn't suggest this within DPLPMTUD, was two things:</p>
<ul>
<li>
<p>Using the limited for IW for packet probes rapidly consumes the current IW space in bytes, and we were unconvinced of the importance to tenatively try a large PMTU during the first RTT.</p>
</li>
<li>
<p>I was not aware of measurement data about how changing the initial flight of data would impact congestion collapse, since at this point there is no feedback from the receiver, and it seems, at least to me, to raise questions regarding stability with large numbers of flows and also as you note, the potential DoS opportunities.</p>
</li>
</ul>
<p>So, I'd be interested in what people think about this, and see any analysis and experience.</p>
</blockquote>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430768205">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4NQ7EEPVO52AHYMKDRTRISPANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2F7QTDMBC6SZLNCOTRTRISPA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD22UDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430768205",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430768205",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdab2796ae9_ca23fbc2e4cd964370be--


From nobody Tue May 26 16:51:46 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 82C9E3A0C3D for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:51:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 Ta-UNsVZJjWM for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:51:37 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 65E0D3A0BE4 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:51:37 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id C1A9F6E0853 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:51:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590537096; bh=/dpGvXzsGSi9/Bxn07hX1rsRP29nxkZkjpXc60F/k3Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=kMHogMvGEeru2HwkCfSIU3Fpf5kZL9MsWNQP+cgZg1O5xm/XCWv+SvU3kiTXKnDLE letXO1cTwLeXoM/2rl2vq7tFR+ZWE6UhP7soCJWZDrjoEwr2lX0OPFexdR24ogWlw3 7OCooWpInp41pVSkY8OYdG7wvZouG22SNTZMduX0=
Date: Tue, 26 May 2020 16:51:36 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6H2SUET3WFEI5ZR7N43GGIREVBNHHCKOBF24@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3694/review/418753608@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3694@github.com>
References: <quicwg/base-drafts/pull/3694@github.com>
Subject: Re: [quicwg/base-drafts] rename SERVER_BUSY to CONNECTION_REFUSED (#3694)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdab88b14c9_10613f8df4ecd9686317e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/e4tUHa7rv83uPOzZH5SdE-kv1q0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:51:45 -0000

----==_mimepart_5ecdab88b14c9_10613f8df4ecd9686317e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3694#pullrequestreview-418753608
----==_mimepart_5ecdab88b14c9_10613f8df4ecd9686317e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3694#pullrequestreview-418753608">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7SKVFNU4SYDOYP6B3RTRIYRANCNFSM4NJWVD7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK67TZXDYGWDHVEB2A3RTRIYRA5CNFSM4NJWVD7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD22YSA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3694#pullrequestreview-418753608",
"url": "https://github.com/quicwg/base-drafts/pull/3694#pullrequestreview-418753608",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdab88b14c9_10613f8df4ecd9686317e--


From nobody Tue May 26 16:54:23 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 82F2F3A0BE2 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:54:21 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 A1dWzAWZuCNL for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:54:20 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E53823A0BE1 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:54:19 -0700 (PDT)
Received: from github-lowworker-25680bd.va3-iad.github.net (github-lowworker-25680bd.va3-iad.github.net [10.48.17.61]) by smtp.github.com (Postfix) with ESMTP id D50021C0D00 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:54:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590537258; bh=OR09z/hjtR22sLrezerMzE7ZdV5qiUaHrwwJBiwVPTg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hDtCW4H/lPA9DEBnq2/pqMOP7z2W5wl5eZVC3wPEzdHUsxiUIXIvC3pBtnvawvWbX E1i8rKllackg9Swnxf6tmStlnpKPhSJBSOqvlysnrMksesv/bHTXBk+vvY4asw8cjk +ebWHj8ldnfzYjUo37+un7+Hs/nS3wpmUlLn5wzo=
Date: Tue, 26 May 2020 16:54:18 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4BQ3CGSFFPQLSDKNF43GGSVEVBNHHCKOUZLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/review/418754341@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdac2ac4c73_70183fec93acd96410857a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qgzKBhQRZrq4HMHdaZNoizE554o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:54:22 -0000

----==_mimepart_5ecdac2ac4c73_70183fec93acd96410857a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.



> @@ -3204,9 +3204,15 @@ response to further packets that it receives.
 A receiver MUST discard a newly unprotected packet unless it is certain that it
 has not processed another packet with the same packet number from the same
 packet number space. Duplicate suppression MUST happen after removing packet
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An
-efficient algorithm for duplicate suppression can be found in Section 3.4.3 of
-{{?RFC4303}}.
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.
+
+Endpoints that track all individual packets for the purposes of detecting
+duplicates are at risk of accumulating excessive state.  The data required for
+detecting duplicates can be limited by maintaining a minimum packet number below
+which all packets are immediately dropped.  Any minimum needs to account for
+large variations in round trip time, which includes the possibility that a peer
+might probe a network path with a much longer round trip time; see

```suggestion
might probe network paths with a much larger round trip times; see
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview-418754341
----==_mimepart_5ecdac2ac4c73_70183fec93acd96410857a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> approved this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3696#discussi=
on_r430769352">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3204,9 +3204,15 @@ response to further=
 packets that it receives.=0D
 A receiver MUST discard a newly unprotected packet unless it is certain =
that it=0D
 has not processed another packet with the same packet number from the sa=
me=0D
 packet number space. Duplicate suppression MUST happen after removing pa=
cket=0D
-protection for the reasons described in Section 9.3 of {{QUIC-TLS}}. An=0D=

-efficient algorithm for duplicate suppression can be found in Section 3.=
4.3 of=0D
-{{?RFC4303}}.=0D
+protection for the reasons described in Section 9.3 of {{QUIC-TLS}}.=0D
+=0D
+Endpoints that track all individual packets for the purposes of detectin=
g=0D
+duplicates are at risk of accumulating excessive state.  The data requir=
ed for=0D
+detecting duplicates can be limited by maintaining a minimum packet numb=
er below=0D
+which all packets are immediately dropped.  Any minimum needs to account=
 for=0D
+large variations in round trip time, which includes the possibility that=
 a peer=0D
+might probe a network path with a much longer round trip time; see=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-might probe a network path with a much longer=
 round trip time; see=0D
+might probe network paths with a much larger round trip times; see=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3696#pullrequestreview-418754341">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KZNFTTN5X7733Z567DRTRJCVANCNFSM4NJ64OJQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK6YWKQ4RXCFX7NPOE3RTRJCVA5CNFSM4=
NJ64OJ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODD226JI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3696#pullrequestrev=
iew-418754341",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3696#pullrequestreview=
-418754341",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecdac2ac4c73_70183fec93acd96410857a--


From nobody Tue May 26 16:57:16 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 869923A0C40 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:57:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 2t4NwZpjYq1B for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 16:57:06 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2D19C3A0C3A for <quic-issues@ietf.org>; Tue, 26 May 2020 16:57:06 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 8796F2C0EC6 for <quic-issues@ietf.org>; Tue, 26 May 2020 16:57:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590537425; bh=6tevBtpYsdHZDQNWcdytqM1guzQ41Om0D3S82SaVQyA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dXhX9lZD13qG4XhmUHwSab7vyUbA+QsuPnvqAF7wyzuw92LuyO43WVtFebmiTDd+L wlxHYflaDEQyaEd1GjVlBR6hAl9SPq1FB+n66f21GkQXeO649r/bJWd4F8cTd6N8Ef RTd0Sp+l5gclWJvO8ZMLMTPLmCGp+VNMk08+S2eY=
Date: Tue, 26 May 2020 16:57:05 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7BC7Q6H2BDU6LXJ2N43GG5DEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418755380@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdacd17975f_b3c3f99d2ccd96c79053"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tPd0vTdsRdbVH7wZFZN3tb-OIYc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Tue, 26 May 2020 23:57:14 -0000

----==_mimepart_5ecdacd17975f_b3c3f99d2ccd96c79053
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +state when the QUIC connection handshake has been completed and
+the endpoint has established a 1-RTT key.

I think that the intent of the text is fine, I was only concerned about the execution, purely from a logical standpoint.  That is, `(handshake complete) && (got 1-RTT keys) == (handshake complete)` because `(got 1-RTT keys)` is a precondition for `(handshake complete)`.

As you both say, there are concerns with probing before this point.  Maybe you can, and indeed it is probably beneficial.  But maybe it is also risky, and we don't need that.  If anyone does want to probe before this point, they are off the books for now.  If anyone wants to explicitly allow that in the draft, that's a design change that needs support, justification, and a separate issue to track.  I don't think we can do that as part of this change.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430770249
----==_mimepart_5ecdacd17975f_b3c3f99d2ccd96c79053
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430770249">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +state when the QUIC connection handshake has been completed and
+the endpoint has established a 1-RTT key.
</pre>
<p>I think that the intent of the text is fine, I was only concerned about the execution, purely from a logical standpoint.  That is, <code>(handshake complete) &amp;&amp; (got 1-RTT keys) == (handshake complete)</code> because <code>(got 1-RTT keys)</code> is a precondition for <code>(handshake complete)</code>.</p>
<p>As you both say, there are concerns with probing before this point.  Maybe you can, and indeed it is probably beneficial.  But maybe it is also risky, and we don't need that.  If anyone does want to probe before this point, they are off the books for now.  If anyone wants to explicitly allow that in the draft, that's a design change that needs support, justification, and a separate issue to track.  I don't think we can do that as part of this change.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430770249">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3WY5RSDTBMCVPHVDTRTRJNDANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3PSGMQDJVS4PR6PCTRTRJNDA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD23GNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430770249",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430770249",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdacd17975f_b3c3f99d2ccd96c79053--


From nobody Tue May 26 17:00:47 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 C63C63A0C1A for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 17:00:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 cSN0teqI5IkD for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 17:00:26 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 47F3E3A0C0D for <quic-issues@ietf.org>; Tue, 26 May 2020 17:00:26 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 740A91C0C14 for <quic-issues@ietf.org>; Tue, 26 May 2020 17:00:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590537625; bh=MJASGenPgm0cZ2abUXtaA5xeJ8Iac7tn+Z5sR6wrZm4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=awYPH8OEd9AD8FlC3H2QGnE2HwjlxJyvafjUYtAHdbxvdf9LAbZ6MvAUDKLjWQvy9 IYwlkGGNgNoG4mXOcxzd5qbTVR0AYSSt8MCtFCZRD3356OfDV2IgMbNQTicWi+fJLf Jr+DBDCpgqQJukbpfmaE2skk3DQvGfdgv7UL9rAs=
Date: Tue, 26 May 2020 17:00:25 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2BFOZFFYVEAUBI74F43GHJTEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418756489@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdad9964991_60643fe3234cd95c9519e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_qIARLM2uaNCmTuTANdVV6sTehU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 00:00:34 -0000

----==_mimepart_5ecdad9964991_60643fe3234cd95c9519e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.

Though there are maybe a few tweaks left (and I need to do a thorough cleanup), I'm happy with this in its current state.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#pullrequestreview-418756489
----==_mimepart_5ecdad9964991_60643fe3234cd95c9519e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>

<p>Though there are maybe a few tweaks left (and I need to do a thorough cleanup), I'm happy with this in its current state.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#pullrequestreview-418756489">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK547NN5CS7JKCCPWWDRTRJZTANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7OOFJFLXJDEQVJEI3RTRJZTA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD23PCI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#pullrequestreview-418756489",
"url": "https://github.com/quicwg/base-drafts/pull/3693#pullrequestreview-418756489",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdad9964991_60643fe3234cd95c9519e--


From nobody Tue May 26 17:31:50 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 6EB3A3A0C36 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 17:31:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 p9eIH1RvEoRz for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 17:31:47 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 82DD53A0C3B for <quic-issues@ietf.org>; Tue, 26 May 2020 17:31:47 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id B45ED1C06EA for <quic-issues@ietf.org>; Tue, 26 May 2020 17:31:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590539506; bh=oTt+bcBZrjynuOBlfAf0WjVBiLIZ0r08huoTervyp/E=; h=Date:From:To:Subject:From; b=FKLSNXLiAP4Zh5FHHzOY456dJeC6GbjtQnyskN9ho2geJv9d3Qv3xnYpJmTH9RR7I aoxANabfKLXDTIQhb/VWq99ATNbtoj1AmXzqmtanpKA09NvEyzdcufn5hAc2F3P8Cm qtvMmvNlxIC5MSiGcLhX/ItjZFJAqBXMZoxNi8xw=
Date: Tue, 26 May 2020 17:31:46 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dplpmtud-merge/000000-ef1b1c@github.com>
Subject: [quicwg/base-drafts] ec591d: Update draft-ietf-quic-transport.md
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zfDHHdbzP9LRb5JpFr1PhaRlRPg>
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: Wed, 27 May 2020 00:31:49 -0000

  Branch: refs/heads/dplpmtud-merge
  Home:   https://github.com/quicwg/base-drafts
  Commit: ec591d1d3b47c75f890cea9ca1dfe521e7ccf912
      https://github.com/quicwg/base-drafts/commit/ec591d1d3b47c75f890cea9ca1dfe521e7ccf912
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-25 (Mon, 25 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

This set of changes seeks to:
* Complete the transfer of DPLPMTUD text from the DPLPMTUD-RFC-to-be to this ID.
* Separate PMTUD from DPLPMTUD where they differ.
* Seek consistent language for packet sizes within these sections.


  Commit: ba44ea7b3307f7da99be88c516270b9c008c78e7
      https://github.com/quicwg/base-drafts/commit/ba44ea7b3307f7da99be88c516270b9c008c78e7
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-25 (Mon, 25 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

That would be good, the change was unintended.

Co-authored-by: ianswett <ianswett@users.noreply.github.com>


  Commit: 0f338c711ebc8cd40a54410e73938f592a28ab87
      https://github.com/quicwg/base-drafts/commit/0f338c711ebc8cd40a54410e73938f592a28ab87
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-25 (Mon, 25 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

I like that:-)

Co-authored-by: ianswett <ianswett@users.noreply.github.com>


  Commit: c24e763e0616a78737f90f0d79ba6f347e932267
      https://github.com/quicwg/base-drafts/commit/c24e763e0616a78737f90f0d79ba6f347e932267
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: 230e1f862eb346465fa1fd40fb5ce633f7bccb86
      https://github.com/quicwg/base-drafts/commit/230e1f862eb346465fa1fd40fb5ce633f7bccb86
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

This looks good

Co-authored-by: ianswett <ianswett@users.noreply.github.com>


  Commit: 0fb311b06a096670e11a8cf0db1e41e2c6a68b4c
      https://github.com/quicwg/base-drafts/commit/0fb311b06a096670e11a8cf0db1e41e2c6a68b4c
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

This looks good

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: 02ff34d3a97eaea87dbe9a181d7a6896b276f014
      https://github.com/quicwg/base-drafts/commit/02ff34d3a97eaea87dbe9a181d7a6896b276f014
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

This looks good

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: 74b760e7799b0d73a770e830a1fe52b80924f9e7
      https://github.com/quicwg/base-drafts/commit/74b760e7799b0d73a770e830a1fe52b80924f9e7
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

This looks good

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: a2cb752e4d5c75dfa4a452c06f5bdb19e66fe891
      https://github.com/quicwg/base-drafts/commit/a2cb752e4d5c75dfa4a452c06f5bdb19e66fe891
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

That would be OK. DPLPMTUD only handles PTB messages.

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: 7040f72f466e1bf371a1c47c63a427ad34ccbd38
      https://github.com/quicwg/base-drafts/commit/7040f72f466e1bf371a1c47c63a427ad34ccbd38
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: a12dfdf2da7ab759a3866ac0d2a82f4ad8eea650
      https://github.com/quicwg/base-drafts/commit/a12dfdf2da7ab759a3866ac0d2a82f4ad8eea650
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Typo fixed.

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: a020020e5944ff9a73d3b69ca3bfef65898660b7
      https://github.com/quicwg/base-drafts/commit/a020020e5944ff9a73d3b69ca3bfef65898660b7
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md


  Commit: 8cf8a460a958032861b5d04bec80585759eb8633
      https://github.com/quicwg/base-drafts/commit/8cf8a460a958032861b5d04bec80585759eb8633
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Fix for /application data/


  Commit: 8c185a83bdf3a07328737c231f2420480444f9bf
      https://github.com/quicwg/base-drafts/commit/8c185a83bdf3a07328737c231f2420480444f9bf
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Seems correct

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: acda596362122e5239713c1d3d24531f20d6ef5a
      https://github.com/quicwg/base-drafts/commit/acda596362122e5239713c1d3d24531f20d6ef5a
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Typo fix


  Commit: fd1d050dcbc9936c117397476d5397b0c6cdf654
      https://github.com/quicwg/base-drafts/commit/fd1d050dcbc9936c117397476d5397b0c6cdf654
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Reflow


  Commit: 9aa2022c0ebf528d622909fdcbc32dcae914480d
      https://github.com/quicwg/base-drafts/commit/9aa2022c0ebf528d622909fdcbc32dcae914480d
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Move section back where it belongs


  Commit: ef1b1c434998f59b76211bb53dfc216afee085c3
      https://github.com/quicwg/base-drafts/commit/ef1b1c434998f59b76211bb53dfc216afee085c3
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  PING AND PADDING are not it


Compare: https://github.com/quicwg/base-drafts/compare/ec591d1d3b47%5E...ef1b1c434998


From nobody Tue May 26 17:32:32 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 D60203A0C3D for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 17:32:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 PmpckhwzF0TK for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 17:32:28 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B94D93A0C40 for <quic-issues@ietf.org>; Tue, 26 May 2020 17:32:28 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id DD08096056D for <quic-issues@ietf.org>; Tue, 26 May 2020 17:32:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590539547; bh=XlNgb8KVsFHv/xkWvVypx8UrjMrqyI1Hkz+tPZV2ZW4=; h=Date:From:To:Subject:From; b=hfkxqzfeXBOI8KOtFXIXClaztjACUj+pVit2odkJxQ64w7GnAbLVQhhFV6nvRuSTv dlg4uRbb5XtLJe7SYGDd3bpMKQgxCzwIP7CyjvFmH6x+8APbuRlwce8IGjBEijWbu0 8Z94m0Z7gysZtOXS7uZ75HX01PkX2WKTESkJeAsg=
Date: Tue, 26 May 2020 17:32:27 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dplpmtud-merge/ef1b1c-1a9c86@github.com>
Subject: [quicwg/base-drafts] 1a9c86: Add a number for clarity
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/anlaPPHUHK7HWTLKyqPCq6I2zHw>
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: Wed, 27 May 2020 00:32:30 -0000

  Branch: refs/heads/dplpmtud-merge
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1a9c864eef75fa0e2d9dd78db7c714dae9b84625
      https://github.com/quicwg/base-drafts/commit/1a9c864eef75fa0e2d9dd78db7c714dae9b84625
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add a number for clarity



From nobody Tue May 26 17:33:19 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 AB1DA3A0C3E for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 17:33:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 yX1RAe4Vo_5D for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 17:33:17 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A5D023A0C40 for <quic-issues@ietf.org>; Tue, 26 May 2020 17:33:17 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id F192796046A for <quic-issues@ietf.org>; Tue, 26 May 2020 17:33:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590539596; bh=rQz6gN62QqHkdBYnoytAwWGAZFJp7W2grlXfBYXvGZs=; h=Date:From:To:Subject:From; b=rnmnVJPZ9HzIPqr6ZVjnpH53yfFf4M9frC3FxFBzbxO4yT4nPIUu2/pkZwiIWsj93 PppUeSfltFGSnAstFqLDTw+L/5N86pczzCuLeqNn9qJU+QPHYJCNbMJJlkbDkNvayS A4TLxpi0K0IIOkYpI4PuSNa8nc1gotnsnre0MXos=
Date: Tue, 26 May 2020 17:33:16 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8a5a66-375c6d@github.com>
Subject: [quicwg/base-drafts] 375c6d: Script updating gh-pages from 1a9c864e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SkB3vfkoY0ZJ3p6mwqeW8KelC4M>
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: Wed, 27 May 2020 00:33:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 375c6d0ba825c7b1233f02407c135c1303eb2569
      https://github.com/quicwg/base-drafts/commit/375c6d0ba825c7b1233f02407c135c1303eb2569
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    A dplpmtud-merge/draft-ietf-quic-http.html
    A dplpmtud-merge/draft-ietf-quic-http.txt
    A dplpmtud-merge/draft-ietf-quic-invariants.html
    A dplpmtud-merge/draft-ietf-quic-invariants.txt
    A dplpmtud-merge/draft-ietf-quic-qpack.html
    A dplpmtud-merge/draft-ietf-quic-qpack.txt
    A dplpmtud-merge/draft-ietf-quic-recovery.html
    A dplpmtud-merge/draft-ietf-quic-recovery.txt
    A dplpmtud-merge/draft-ietf-quic-tls.html
    A dplpmtud-merge/draft-ietf-quic-tls.txt
    A dplpmtud-merge/draft-ietf-quic-transport.html
    A dplpmtud-merge/draft-ietf-quic-transport.txt
    A dplpmtud-merge/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 1a9c864e. [ci skip]



From nobody Tue May 26 17:34:42 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 A1DA03A0C45 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 17:34:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 rT1I-39WwF-U for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 17:34:39 -0700 (PDT)
Received: from out-9.smtp.github.com (out-9.smtp.github.com [192.30.254.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ACEF03A0C44 for <quic-issues@ietf.org>; Tue, 26 May 2020 17:34:39 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 509F9261584 for <quic-issues@ietf.org>; Tue, 26 May 2020 17:34:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590539679; bh=5f3D7oNEkBU4jKhTcwAUqg2kg2tmJaY0TBFVXOK6UYY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=emVrR9fP8d+rSDNg0ANqQ838SJJU3XOXizN6UyRWh2EeiB4rUD9rP26fSSIXwg2ic bHUarG18dLdgtt/nW4V2Yy1BLugyRcIFhPgPFM6JV/CQ8BVd5vIu9HS2RVWclycD70 60mJtwiHWUFFD3PEoqM2r417+7Yu/VDDmbO4soIU=
Date: Tue, 26 May 2020 17:34:39 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK76LSJREU7JL3E3ZEV43GLJ7EVBNHHCKOY5XA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3697/review/418767504@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3697@github.com>
References: <quicwg/base-drafts/pull/3697@github.com>
Subject: Re: [quicwg/base-drafts] Citation rules for QUIC (#3697)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdb59facb4_5b4b3f917facd960296ca"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/pXCegXbuzIDuug9rQCrzTvFY3Is>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 00:34:41 -0000

----==_mimepart_5ecdb59facb4_5b4b3f917facd960296ca
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418767504
----==_mimepart_5ecdb59facb4_5b4b3f917facd960296ca
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418767504">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7JSUWRC6IG2MCDAUDRTRNZ7ANCNFSM4NKAMVEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2XVUODCDMK4NYTGFTRTRNZ7A5CNFSM4NKAMVEKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD26FEA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418767504",
"url": "https://github.com/quicwg/base-drafts/pull/3697#pullrequestreview-418767504",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdb59facb4_5b4b3f917facd960296ca--


From nobody Tue May 26 17:35:11 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 4F2EB3A0C45 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 17:35:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 ya--mN9512CP for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 17:35:09 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E583B3A0C44 for <quic-issues@ietf.org>; Tue, 26 May 2020 17:35:08 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 3511FA0911 for <quic-issues@ietf.org>; Tue, 26 May 2020 17:35:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590539708; bh=QZF7IbUJgm20Ob+gkwMgmhBodwm/pMNlX+iZQzl75bc=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=Ei8MOvN7jTWnYdYPQQbAKIbkmtWyzw+OdvJxjdV09aZwzYwJzogVjYrpol6DPGsbG LcMODk7HfIz20Uh9dCgng++Pahmnc4UiwaWpX+BJfGm03lTmVWcr+sPKAR92oZ/Soi g+M6SZZPNjMkVF4U/LxlQ3FFVtVjaQlneiHw471k=
Date: Tue, 26 May 2020 17:35:08 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2MZWFXND7GL3KG2QF43GLLZEVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702@github.com>
Subject: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdb5bc25dfd_59d73f98e06cd9602308d3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1aJEP7XHS8eyxP2Z9N_Dc2Lhmkc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 00:35:10 -0000

----==_mimepart_5ecdb5bc25dfd_59d73f98e06cd9602308d3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This is #3693 with some minor additional changes:

1. Reflow.
2. Move the odd text about using Handshake back where it belongs.
3. Make the language about how to construct a probe less prescriptive.
4. Mention 1200 when referring to the &quot;smallest allowed maximum packet size&quot; so it is clear what that means.

Closes #3693.
Closes #3695.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3702

-- Commit Summary --

  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Update draft-ietf-quic-transport.md
  * Reflow
  * Move section back where it belongs
  * PING AND PADDING are not it
  * Add a number for clarity

-- File Changes --

    M draft-ietf-quic-transport.md (150)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3702.patch
https://github.com/quicwg/base-drafts/pull/3702.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702

----==_mimepart_5ecdb5bc25dfd_59d73f98e06cd9602308d3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This is <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624302189" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3693" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3693/hovercard" href="https://github.com/quicwg/base-drafts/pull/3693">#3693</a> with some minor additional changes:</p>
<ol>
<li>Reflow.</li>
<li>Move the odd text about using Handshake back where it belongs.</li>
<li>Make the language about how to construct a probe less prescriptive.</li>
<li>Mention 1200 when referring to the "smallest allowed maximum packet size" so it is clear what that means.</li>
</ol>
<p><span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes pull request #3693.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624302189" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3693" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3693/hovercard" href="https://github.com/quicwg/base-drafts/pull/3693">#3693</a>.<br>
<span class="issue-keyword tooltipped tooltipped-se" aria-label="This pull request closes issue #3695.">Closes</span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624543258" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3695" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3695/hovercard" href="https://github.com/quicwg/base-drafts/issues/3695">#3695</a>.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3702'>https://github.com/quicwg/base-drafts/pull/3702</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Update draft-ietf-quic-transport.md</li>
  <li>Update draft-ietf-quic-transport.md
</li>
  <li>Update draft-ietf-quic-transport.md
</li>
  <li>Update draft-ietf-quic-transport.md</li>
  <li>Update draft-ietf-quic-transport.md
</li>
  <li>Update draft-ietf-quic-transport.md
</li>
  <li>Update draft-ietf-quic-transport.md
</li>
  <li>Update draft-ietf-quic-transport.md
</li>
  <li>Update draft-ietf-quic-transport.md
</li>
  <li>Update draft-ietf-quic-transport.md</li>
  <li>Update draft-ietf-quic-transport.md
</li>
  <li>Update draft-ietf-quic-transport.md</li>
  <li>Update draft-ietf-quic-transport.md</li>
  <li>Update draft-ietf-quic-transport.md
</li>
  <li>Update draft-ietf-quic-transport.md</li>
  <li>Reflow</li>
  <li>Move section back where it belongs</li>
  <li>PING AND PADDING are not it</li>
  <li>Add a number for clarity</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3702/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (150)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3702.patch'>https://github.com/quicwg/base-drafts/pull/3702.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3702.diff'>https://github.com/quicwg/base-drafts/pull/3702.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK56XZXHLQXT6VT4KPTRTRN3ZANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4E37PQBEFXJQVMEZLRTRN3ZA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JKFDXQQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702",
"url": "https://github.com/quicwg/base-drafts/pull/3702",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecdb5bc25dfd_59d73f98e06cd9602308d3--


From nobody Tue May 26 18:06:36 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 C24BA3A0C9B for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:06:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 q5BN5ds4N24h for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:06:34 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 61D0D3A0C99 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:06:34 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id D24A3960CFF for <quic-issues@ietf.org>; Tue, 26 May 2020 18:06:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590541592; bh=kPTUCuFiqIym9s3EEgrgNHjla+BWmOchy9ubUYEjn/E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=M/K1fTxA0s8jeWhVGBkNZaJMNtg1WCz0zZx8Zc6jjtv5SUx1BWs5ujGRjlSD6XhEP Hjx7Ucu2gZ0tK5QAu4gI+SowZuXiPGEZt4eswxGgI5jgK/O3xv6Kkiam0dvCGOBqnX y9Go6LZaNDEQNwNHKlJtfy+vTJV5L7bUn55dzGek=
Date: Tue, 26 May 2020 18:06:32 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4GU4MDNBWKAROV4Z543GPBREVBNHHCKREEAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3700/review/418784751@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3700@github.com>
References: <quicwg/base-drafts/pull/3700@github.com>
Subject: Re: [quicwg/base-drafts] Servers should always send CANCEL_PUSH (#3700)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdbd18c2d68_74383fc5586cd95c145333"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/e6jviYd0Yhtyw0hfYSk2sikV8CA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 01:06:36 -0000

----==_mimepart_5ecdbd18c2d68_74383fc5586cd95c145333
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue commented on this pull request.



>  When a server sends CANCEL_PUSH, it is indicating that it will not be fulfilling
-a promise and has not created a push stream.  The client should not expect the
-corresponding promise to be fulfilled.
+a promise.  The client cannot expect the corresponding promise to be fulfilled.
+A server SHOULD send a CANCEL_PUSH even if it has opened the corresponding
+stream.

Maybe not a direct result of this change but now I'm confused what happens if the server sends a CANCEL_PUSH that references a Push ID of a valid completed push stream. Do nothing seems like the right call.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-418784751
----==_mimepart_5ecdbd18c2d68_74383fc5586cd95c145333
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@LPardue</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3700#discussion_r430789248">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt;  When a server sends CANCEL_PUSH, it is indicating that it will not be fulfilling
-a promise and has not created a push stream.  The client should not expect the
-corresponding promise to be fulfilled.
+a promise.  The client cannot expect the corresponding promise to be fulfilled.
+A server SHOULD send a CANCEL_PUSH even if it has opened the corresponding
+stream.
</pre>
<p>Maybe not a direct result of this change but now I'm confused what happens if the server sends a CANCEL_PUSH that references a Push ID of a valid completed push stream. Do nothing seems like the right call.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-418784751">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7T2GZTHVIEL4GAX53RTRRRRANCNFSM4NLJ4YMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6T6RRWEBYQB6NIFJDRTRRRRA5CNFSM4NLJ4YM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD3CL3Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-418784751",
"url": "https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-418784751",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdbd18c2d68_74383fc5586cd95c145333--


From nobody Tue May 26 18:27:00 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 A96853A0CE1 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:26:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 HXiqMFHbTEGI for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:26:57 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8F0C93A0CDA for <quic-issues@ietf.org>; Tue, 26 May 2020 18:26:57 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id 9DDF6E0F97 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:26:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542816; bh=9NHhNMVY0om+TAhb/lgeMl3H082LwcJJhcMeF6kcmAQ=; h=Date:From:To:Subject:From; b=RFJtWURVfRs/YGOy222m8DVeqPAQZ79dODULtZk3GnxMOgcmHAIuNRXBD8nSLcmm1 zMBpwZgWj7XY8Z1GK81WYmJAEMQPygLMXVdHBl8QwbzqTSI59VvYJtvnvGH4Ve4yGn isJYmXYj+gSA3Bm1KclKC9RcsimXq1kKclGN6FOo=
Date: Tue, 26 May 2020 18:26:56 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dedupe-packets/cbb0b2-4d1bee@github.com>
Subject: [quicwg/base-drafts] 4d1bee: plurals
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/D7d7iI0emq7o6i4-vjeMbbCrU-U>
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: Wed, 27 May 2020 01:26:59 -0000

  Branch: refs/heads/dedupe-packets
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4d1bee363f0289ea7388a8283fe131c6841f6f23
      https://github.com/quicwg/base-drafts/commit/4d1bee363f0289ea7388a8283fe131c6841f6f23
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  plurals

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>



From nobody Tue May 26 18:27:10 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 CA8C03A0CE1 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 sZ_8MJBQUSPr for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:07 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BD8273A0CDA for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:07 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id C43CF1210C3 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542826; bh=8mNlq2s6KhdWorabmQJQzQqfXv/mmVwI+QZtoPtTYbs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=v/7Ut6yMtV/J4TRbkQMZem1f1ba+tw/cnlFjoaYfKD72ElfGfPxS17J8qhVfrvqoY MjGhKWertuYlCXbx3eSN6wvr8lGFlX9LCKcbDsLNovGUibW1YiktHj0dqmU98mWcuh DH+0mKtIHmxx4xxIbHuACGU42DJfQuNsSQWyEHf0=
Date: Tue, 26 May 2020 18:27:06 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/push/5132908135@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdc1ea7e382_218a3feb1e6cd95c415eb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Vpv8ouciiwbjtWwijtZ-1pBAkhY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 01:27:09 -0000

----==_mimepart_5ecdc1ea7e382_218a3feb1e6cd95c415eb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

4d1bee363f0289ea7388a8283fe131c6841f6f23  plurals


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696/files/cbb0b2bc2b10816f686896779361cc42f4be8c35..4d1bee363f0289ea7388a8283fe131c6841f6f23

----==_mimepart_5ecdc1ea7e382_218a3feb1e6cd95c415eb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/4d1bee363f0289ea7388a8283fe131c6841f6f23">4d1bee3</a>  plurals</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3696/files/cbb0b2bc2b10816f686896779361cc42f4be8c35..4d1bee363f0289ea7388a8283fe131c6841f6f23">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4JYA4FIM5BGZNTRODRTRT6VANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3HKNWHHHRHVKZOSX3RTRT6VA5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDEOJYGI3TCMSQOVZWQIZVGEZTEOJQHAYTGNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696/files/cbb0b2bc2b10816f686896779361cc42f4be8c35..4d1bee363f0289ea7388a8283fe131c6841f6f23",
"url": "https://github.com/quicwg/base-drafts/pull/3696/files/cbb0b2bc2b10816f686896779361cc42f4be8c35..4d1bee363f0289ea7388a8283fe131c6841f6f23",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecdc1ea7e382_218a3feb1e6cd95c415eb--


From nobody Tue May 26 18:27:15 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 3378D3A0CE3 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 MwcoDvJYDSqe for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:13 -0700 (PDT)
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 C0F203A0CDD for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:12 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id E328D282BB2 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542831; bh=iHeObVKnFeiKZ/w5m5X/+sCEqsV2uazBbF+IkRd9NZg=; h=Date:From:To:Subject:From; b=l36VMzWHJ40XCEeZ8c0nC8j7188vaRH8URNC3CF3GfUNlGzkYQTFqbR3C+mZs86F8 4FMallysfYjfoFnJzaI0EQW+EBBDfXSjKnGoDsUFzKMwfI7h5ICRJTeKQaXIaZWOVt rdN5GuW2kSkDSEnqbeysJ1hPEL17d0GcKsex8ZM0=
Date: Tue, 26 May 2020 18:27:11 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/bfddc8-e22909@github.com>
Subject: [quicwg/base-drafts] 927fe3: Better duplicate detection
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cgqoP2OEaypasCWDyHSav-zd_4w>
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: Wed, 27 May 2020 01:27:14 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 927fe3957b1930c38fbdf68dd950eec7bdff7db8
      https://github.com/quicwg/base-drafts/commit/927fe3957b1930c38fbdf68dd950eec7bdff7db8
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Better duplicate detection

Including mention of a minimum packet number and the risks in setting
that value.

Closes #3692.


  Commit: 9f8038def838e3d42c1595d35c5ba70bce19ea41
      https://github.com/quicwg/base-drafts/commit/9f8038def838e3d42c1595d35c5ba70bce19ea41
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Remove migration from the example


  Commit: 0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7
      https://github.com/quicwg/base-drafts/commit/0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Rewording to avoid potential confusion


  Commit: d90c544322dc27c22539bb87fa09a6a110af4ab7
      https://github.com/quicwg/base-drafts/commit/d90c544322dc27c22539bb87fa09a6a110af4ab7
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Tweaking

Co-authored-by: ianswett <ianswett@users.noreply.github.com>


  Commit: 081f95f0de6f0b3c0736c36e0062a8cee6c540e6
      https://github.com/quicwg/base-drafts/commit/081f95f0de6f0b3c0736c36e0062a8cee6c540e6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Rewrap


  Commit: cbb0b2bc2b10816f686896779361cc42f4be8c35
      https://github.com/quicwg/base-drafts/commit/cbb0b2bc2b10816f686896779361cc42f4be8c35
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  remove unnecessary sentence


  Commit: 4d1bee363f0289ea7388a8283fe131c6841f6f23
      https://github.com/quicwg/base-drafts/commit/4d1bee363f0289ea7388a8283fe131c6841f6f23
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  plurals

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>


  Commit: e22909f972c6bc9f80f0ca27e3f51b9432cacde4
      https://github.com/quicwg/base-drafts/commit/e22909f972c6bc9f80f0ca27e3f51b9432cacde4
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3696 from quicwg/dedupe-packets

Better duplicate detection


Compare: https://github.com/quicwg/base-drafts/compare/bfddc8e79209...e22909f972c6


From nobody Tue May 26 18:27:19 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 513C73A0CDD for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:14 -0700 (PDT)
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, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 66JRSyO_6rrN for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:13 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 608B93A0CE1 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:13 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 9E34D96059E for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542832; bh=pvEyJW/Q1jB85IT3oCnITwZafOY+H6Ao8thQy9o9UgU=; h=Date:From:To:Subject:From; b=WTg8qMnWfUZwgL6v009XppbuNqXw8SXN/yRMNgt7J6A3DelpXcfyNP+dtjxevgQpU TKeTRnIU0ItgtUv+0mZbjkIwBpqfjJbLjPme2YR7mYZxoE3nLnjjZAbeBWNqpv6+g5 3M6TL+5WYHMjmZQWddVl9EZo6o2uWJrni0CF+4Zg=
Date: Tue, 26 May 2020 18:27:12 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dedupe-packets/4d1bee-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_OJmkUdmdk2YAvWZBvdt2cL_XnI>
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: Wed, 27 May 2020 01:27:14 -0000

  Branch: refs/heads/dedupe-packets
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 26 18:27:25 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 92A223A0CDD for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 HZbLf7mOcGJf for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:22 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 764663A0CE1 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:22 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 9AE58660843 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542841; bh=N3w46bTQhWWwsrf4yTRSVz0vnixfXMM8Q1qndyqk/CY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ONaxfjCCvPVlKchSesSqghf7UWhTo6CUJM7Z7su12d8QCKpCd2XL+/nmiAg68F+9g xFjTx/usaA7LGD/jsx2Pf0ijty34WEiJs8B5SgGzLD//2DLPhQLKuSvEmCxj2kjSGJ icav/PIQf0u6pbh/RZY+NJ4sI9VFh8f5ZmyOLuGA=
Date: Tue, 26 May 2020 18:27:21 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5BDGAONRI7V4IT7I543GRPTEVBNHHCKOUZLM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3696/issue_event/3376003151@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3696@github.com>
References: <quicwg/base-drafts/pull/3696@github.com>
Subject: Re: [quicwg/base-drafts] Better duplicate detection (#3696)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdc1f98bcbf_50eb3ffd2dccd96c10429f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/oNarOD-BtlO6drhnt6jpLNPr5FI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 01:27:24 -0000

----==_mimepart_5ecdc1f98bcbf_50eb3ffd2dccd96c10429f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3696 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3696#event-3376003151
----==_mimepart_5ecdc1f98bcbf_50eb3ffd2dccd96c10429f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624597339" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3696" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3696/hovercard" href="https://github.com/quicwg/base-drafts/pull/3696">#3696</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3696#event-3376003151">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZUTGE2SR6UXGCCMNDRTRT7TANCNFSM4NJ64OJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK44BGKLGC5AC7UIVJDRTRT7TA5CNFSM4NJ64OJ2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZE43QTY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3696#event-3376003151",
"url": "https://github.com/quicwg/base-drafts/pull/3696#event-3376003151",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdc1f98bcbf_50eb3ffd2dccd96c10429f--


From nobody Tue May 26 18:27:28 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 B327C3A0CE1 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 hP6w2Q9XabxJ for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:22 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 78A7C3A0CE3 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:22 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id AEFC12C0EEC for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542841; bh=3g4klxx3WOFp+PM/Z4PZOzLTW9KO+ZTwBY0DM/i0TLk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IOpMZyqAUwjs22hd7fzEg2zB0NaYkdes3o+5HanCg4XGkbCmSHtNyVccorkh2lra3 U61o2l/siOi0Uz4Q04WY5QTNVhbqou9xtBWpmRThoKZdG8TU2awfUvjIJxwOvMUtAf iFAjaOPVnG0EqmHsd2vSIpeoBtUqYNntcbUWTmZQ=
Date: Tue, 26 May 2020 18:27:21 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3IXVPLDIXQGNPCJ5F43GRPTEVBNHHCKMO44M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3692/issue_event/3376003158@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3692@github.com>
References: <quicwg/base-drafts/issues/3692@github.com>
Subject: Re: [quicwg/base-drafts] Deduplication window suggested by RFC 4303 is insufficient (#3692)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdc1f9a04e4_6ff43fd59decd96837784"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fox6eZLKAgKIozi7wBADnlB8FJ4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 01:27:24 -0000

----==_mimepart_5ecdc1f9a04e4_6ff43fd59decd96837784
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3692 via #3696.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3692#event-3376003158
----==_mimepart_5ecdc1f9a04e4_6ff43fd59decd96837784
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624024803" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3692" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3692/hovercard" href="https://github.com/quicwg/base-drafts/issues/3692">#3692</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624597339" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3696" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3696/hovercard" href="https://github.com/quicwg/base-drafts/pull/3696">#3696</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3692#event-3376003158">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2G4LCB7Z5Z34XRPMTRTRT7TANCNFSM4NJF7H7Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK24AZY7CDEHX6CDK7LRTRT7TA5CNFSM4NJF7H72YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZE43QVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3692#event-3376003158",
"url": "https://github.com/quicwg/base-drafts/issues/3692#event-3376003158",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdc1f9a04e4_6ff43fd59decd96837784--


From nobody Tue May 26 18:27:57 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 908BB3A0CFB for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 Qh6oirigsWAf for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:50 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 585323A0CE7 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:50 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 9DF1D8C0197 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542869; bh=9QOsX0MuBp7aIGGICf0VnX85SzSihYBrAusF0DJtTAg=; h=Date:From:To:Subject:From; b=Jw+tYOVRz89gqV3Kf23rRT/3SyDImP89i26/IhMmm9qMKKB0SgHaHsfYE4PwaklXu lj7uT3XLNXqz6yQEtUZgnxPqIXdC+N6grO0cN2UChYDnpbGVYQ6FxzEk86h9UpVrLP YBvaCIw3KHscJohWnPFJoB6fvD9UN/Y75eohqe80=
Date: Tue, 26 May 2020 18:27:49 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/e22909-5ca8ae@github.com>
Subject: [quicwg/base-drafts] 4a060d: Citation rules FTW
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9lcp5IAbNwCYgG8IY6ECWM8eZWk>
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: Wed, 27 May 2020 01:27:57 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 4a060d25fb1f99f520a676571dda60f85f8e8cd5
      https://github.com/quicwg/base-drafts/commit/4a060d25fb1f99f520a676571dda60f85f8e8cd5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Citation rules FTW

Closes #3687.


  Commit: 5ca8ae73d7c63ccae35a0a7e280b168b985c11be
      https://github.com/quicwg/base-drafts/commit/5ca8ae73d7c63ccae35a0a7e280b168b985c11be
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3697 from quicwg/cite-this

Citation rules for QUIC


Compare: https://github.com/quicwg/base-drafts/compare/e22909f972c6...5ca8ae73d7c6


From nobody Tue May 26 18:28:02 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 489DA3A0D08 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:53 -0700 (PDT)
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, TVD_SPACE_RATIO=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 IbgwrrQUnZ8C for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:52 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CF5F73A0CFE for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:51 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 587352C102E for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542870; bh=+MkitE4Q06ob/mR1I821XI9PnBAyyR9dwBaTzTqOvCw=; h=Date:From:To:Subject:From; b=lupZ61BvkBD6yLel1YS+9xJarfkaKoY5v/REQ1whVEd0w3PmmYBbioNECls6z0vAb 6grIhce1OQdLIxB+00cx3jRlNJIcWV4JbWuUrbkTV0YdfJWyK/+4LJUZax1pUn4y0L qaImXREyZ4cYxblHr6EooFsJWZfdLzXZlXG9Fh9Q=
Date: Tue, 26 May 2020 18:27:50 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/cite-this/4a060d-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/W6mt0Bh1naBfOwyhuM0h-RkI7q8>
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: Wed, 27 May 2020 01:28:00 -0000

  Branch: refs/heads/cite-this
  Home:   https://github.com/quicwg/base-drafts


From nobody Tue May 26 18:28:06 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 75A393A0D13 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 SWd7SCCn2IBy for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:54 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 283763A0D03 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:54 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 749AA6E00AB for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542872; bh=adpD5vQHnT0Y0gIVhm/+oEslvTGVHgfikyAWEuPgeUY=; h=Date:From:To:Subject:From; b=fQ9Lx+Lalq1rJJlo15WX30rKtP/z+u7phC2iML1h/UrXV1QvXuflvsIDPr3IICSXI Z1CcXJbeW/73cOc523djy3hsR9jZJ8FxQvjZ1J99/IVZToxhBGoNyFvS6rftGTot+5 G0c+6CiLvIF09A90kCNRKqJmj1fHH/CNlz4UmNF4=
Date: Tue, 26 May 2020 18:27:52 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/375c6d-07f1fb@github.com>
Subject: [quicwg/base-drafts] 07f1fb: Script updating gh-pages from 4d1bee36. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AV6iUGYAT-LIR9dx-NoWP0NOGd0>
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: Wed, 27 May 2020 01:28:02 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 07f1fbf85eb2406f84563266cfec7777901d8b83
      https://github.com/quicwg/base-drafts/commit/07f1fbf85eb2406f84563266cfec7777901d8b83
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M dedupe-packets/draft-ietf-quic-http.html
    M dedupe-packets/draft-ietf-quic-http.txt
    M dedupe-packets/draft-ietf-quic-invariants.html
    M dedupe-packets/draft-ietf-quic-invariants.txt
    M dedupe-packets/draft-ietf-quic-qpack.html
    M dedupe-packets/draft-ietf-quic-qpack.txt
    M dedupe-packets/draft-ietf-quic-recovery.html
    M dedupe-packets/draft-ietf-quic-recovery.txt
    M dedupe-packets/draft-ietf-quic-tls.html
    M dedupe-packets/draft-ietf-quic-tls.txt
    M dedupe-packets/draft-ietf-quic-transport.html
    M dedupe-packets/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 4d1bee36. [ci skip]



From nobody Tue May 26 18:28:10 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 720423A0D01 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:28:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 joCBQqEmMubJ for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:27:59 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0685D3A0D0F for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:59 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 5F575660770 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542878; bh=Vypr+sqKvko2XYQHZjcMRbWp9VH4VHzG7pgv4yBUWLs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QPIMmvGVH0/ofETtOz1k4ywgT4t+OvY91fqfcmGsCHABjMoNmyYfTHBs+tbaxOXPm IdwYGWx8/qWUGWgAp5J3WAUJvymjqGQDEK0SQ5fJna2egzX6yZhWb6pX0ZrslGguhU GaRAY4mkiM/8vF7YaXgkmvCXqRLCBxeP0dFlxw8k=
Date: Tue, 26 May 2020 18:27:58 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4WC4M2DHBQFCXGWWF43GRR5EVBNHHCKITFM4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3687/issue_event/3376004328@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3687@github.com>
References: <quicwg/base-drafts/issues/3687@github.com>
Subject: Re: [quicwg/base-drafts] Tell people which document to cite when citing QUIC (#3687)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdc21e502d1_78893f808aacd95c10048f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VaKXdVjs7Ya9-YSXCWdcMUobsyc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 01:28:07 -0000

----==_mimepart_5ecdc21e502d1_78893f808aacd95c10048f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3687 via #3697.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3687#event-3376004328
----==_mimepart_5ecdc21e502d1_78893f808aacd95c10048f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="623011175" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3687" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3687/hovercard" href="https://github.com/quicwg/base-drafts/issues/3687">#3687</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624631224" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3697" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3697/hovercard" href="https://github.com/quicwg/base-drafts/pull/3697">#3697</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3687#event-3376004328">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK53D7WZYLC3YAY4LNTRTRUB5ANCNFSM4NHRVV2Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYBYESCMDM6JOWWZ3LRTRUB5A5CNFSM4NHRVV22YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZE43Z2A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3687#event-3376004328",
"url": "https://github.com/quicwg/base-drafts/issues/3687#event-3376004328",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdc21e502d1_78893f808aacd95c10048f--


From nobody Tue May 26 18:28:14 2020
Return-Path: <bounces+848413-a050-quic-issues=ietf.org@sgmail.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 00BEF3A0CEA for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:28:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, UNPARSEABLE_RELAY=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 HukTUbfM_zfk for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:28:01 -0700 (PDT)
Received: from o7.sgmail.github.com (o7.sgmail.github.com [167.89.101.198]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C0FA33A0D1E for <quic-issues@ietf.org>; Tue, 26 May 2020 18:28:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com;  h=from:reply-to:to:cc:in-reply-to:references:subject:mime-version:content-type:content-transfer-encoding:list-id:list-archive:list-post:list-unsubscribe; s=s20150108; bh=vOOB2XHmwLfS5HSkgIa5b7zaYoP8yekeyje+bEQsFzM=; b= C0jst32kbGVqKwjr+s/01hpoYCoI+dscWLF0yOGDPLe28UZwZ0rHA97nQZjuigoQ NzwMNayG7IKp0tb6HsI+P6ENfFBUiyVV8H1zmqhV2DTu+MbVHUwwztoWAq/8Vdnw wlv4kF6IS26HncO+ZbCjr/OJ4o0B3C696ng+GAZpkno=
Received: by filter1391p1mdw1.sendgrid.net with SMTP id filter1391p1mdw1-18421-5ECDC21F-4 2020-05-27 01:27:59.511064768 +0000 UTC m=+720661.779601291
Received: from out-23.smtp.github.com (unknown) by geopod-ismtpd-6-2 (SG) with ESMTP id Bl9I2T9dT9iW8wJU8yUQ2A for <quic-issues@ietf.org>; Wed, 27 May 2020 01:27:59.503 +0000 (UTC)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 3842A660A50 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:27:59 -0700 (PDT)
Date: Wed, 27 May 2020 01:27:59 +0000 (UTC)
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ7VI5J5DUEE4546QV43GRR7EVBNHHCKOY5XA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3697/issue_event/3376004322@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3697@github.com>
References: <quicwg/base-drafts/pull/3697@github.com>
Subject: Re: [quicwg/base-drafts] Citation rules for QUIC (#3697)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdc21f28d21_63213fe0a4ccd96c731af"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-SG-EID: l64QuQ2uJCcEyUykJbxN122A6QRmEpucztpreh3Pak2ccsW6xYgDuZKD85vLZmN7v29NMX8Vn5Z8SG 8MJvXIThUBq/wed+NYRSDNaxtFS3EPOaA/Wr57vOFmXyzh+jkgzwj6YUZ2H/KjB5C38m+eyhXJPLY2 CxOOuEQLsOn2QeT2/P4MGobpwFFfBU6aXt9Q7SS/lOZ8BIN7uCBZB5rszmnYLhATi/ugn50bb4PFrt s=
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tniVt5VfNeZ8KMk9ajyBqDF7Jcs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 01:28:08 -0000

----==_mimepart_5ecdc21f28d21_63213fe0a4ccd96c731af
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3697 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3697#event-3376004322
----==_mimepart_5ecdc21f28d21_63213fe0a4ccd96c731af
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624631224" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3697" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3697/hovercard" href="https://github.com/quicwg/base-drafts/pull/3697">#3697</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3697#event-3376004322">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4SBVZTOQN2KTSAAHLRTRUB7ANCNFSM4NKAMVEA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2ES65YDKE6UBPNJ4LRTRUB7A5CNFSM4NKAMVEKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZE43ZYQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3697#event-3376004322",
"url": "https://github.com/quicwg/base-drafts/pull/3697#event-3376004322",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdc21f28d21_63213fe0a4ccd96c731af--


From nobody Tue May 26 18:28:18 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 8722F3A0D28 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:28:04 -0700 (PDT)
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 qsdp5bVur7Ar for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:28:03 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 08A7D3A0D0F for <quic-issues@ietf.org>; Tue, 26 May 2020 18:28:03 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id B12C4121234 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:28:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542882; bh=nwYnLS5oSIwww7XgbwJT7H9tr4b6tH4Dw6jZqmrz4UQ=; h=Date:From:To:Subject:From; b=BKqt5iRBeL3n7PTiiJixxQ/w1SmKMjJLTDspT1Cc4/zpoDIhau7QDq9IP/202UTZx dVdTID/gb6hoDoQU5Pyl21zW9yni3y2qDmeC2HuqNsor9yQ/r9a0BUXxBmfqR4jPtH +Cv85VUwrszonQod0/iNBnOEHG4YmWUcZnu4DnU8=
Date: Tue, 26 May 2020 18:28:02 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/5ca8ae-413440@github.com>
Subject: [quicwg/base-drafts] c03f04: rename SERVER_BUSY to CONNECTION_REFUSED
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HPPS1769HmEAGjyahxcW_vLeK-U>
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: Wed, 27 May 2020 01:28:10 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: c03f045aa3b50e16c2192323c688a2a601c13958
      https://github.com/quicwg/base-drafts/commit/c03f045aa3b50e16c2192323c688a2a601c13958
  Author: Kazuho Oku <kazuhooku@gmail.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  rename SERVER_BUSY to CONNECTION_REFUSED


  Commit: 4134402aadc630c3ca95c100fabcb5530f02571f
      https://github.com/quicwg/base-drafts/commit/4134402aadc630c3ca95c100fabcb5530f02571f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3694 from kazuho/kazuho/connection-refused-error

rename SERVER_BUSY to CONNECTION_REFUSED


Compare: https://github.com/quicwg/base-drafts/compare/5ca8ae73d7c6...4134402aadc6


From nobody Tue May 26 18:28:21 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 D21F73A0D59 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:28:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 JVIWEMYTLexA for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:28:07 -0700 (PDT)
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 7F3003A0CF0 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:28:06 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id A06D0282AC9 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:28:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542885; bh=lkDSbLftZ22v0XmozSAptiVKJIFP+FaMX3BvLnzNN5A=; h=Date:From:To:Subject:From; b=wwi2ogE7N2SBXSH6/7XC4T6ZxR6gVzumpL3jxN+82w50wVuYRXsHaXzgdvSgtY1fB IZrQD1v5LgxpuZiKUx4AYbomz91tWcqbTfyDNlVSRKvIe4MSg5OtIEqVByjuUJ9zuP EZWMnDLh08KjC74w+TJNS10joAFehzjh65rPTKrI=
Date: Tue, 26 May 2020 18:28:05 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/07f1fb-46d134@github.com>
Subject: [quicwg/base-drafts] 46d134: Script updating gh-pages from e22909f9. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JLv1PNd6hgefBu9iLpnV1Eowb5Q>
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: Wed, 27 May 2020 01:28:11 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 46d13421533aa212436016a02271e5af126289c9
      https://github.com/quicwg/base-drafts/commit/46d13421533aa212436016a02271e5af126289c9
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from e22909f9. [ci skip]



From nobody Tue May 26 18:28:24 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 88D0C3A0CDD for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:28:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 OoN9PMiX3x9e for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:28:14 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8738A3A0D43 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:28:11 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id CE9152C1ED6 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:28:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542890; bh=ADoQHvetEcmY4If/0/T3UYIRr/x+xwwTKVkCVwC1nSU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=MyZlx6PnCNk4gPdcdamM4B3UpoB7c62DeFoTimWYXYJIkQvTEOW1yFNzhY/Ab6dpF rmFUAJ/so+fddv1qJgM/33KgmdmuJCNWTqBF8dm8ugQ1C4jM5dAJDT+pf3xsgE0SqS DRJuGrIiYHcE1AbIR69slLLuuvLWHCXnONCI7dx8=
Date: Tue, 26 May 2020 18:28:10 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK53KXGX3ME3VPHIBW543GRSVEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3690/issue_event/3376004658@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdc22abdb5f_28c93fa39eacd95c307d5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5yUaPaGbsvab6BTM1u1aXTFr9YY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 01:28:16 -0000

----==_mimepart_5ecdc22abdb5f_28c93fa39eacd95c307d5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3690 via #3694.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#event-3376004658
----==_mimepart_5ecdc22abdb5f_28c93fa39eacd95c307d5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="623535922" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3690" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3690/hovercard" href="https://github.com/quicwg/base-drafts/issues/3690">#3690</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624436695" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3694" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3694/hovercard" href="https://github.com/quicwg/base-drafts/pull/3694">#3694</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#event-3376004658">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZG65IZGBOGSBZ26CDRTRUCVANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYC7MFDLH2OX4ILQ2DRTRUCVA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZE434MQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#event-3376004658",
"url": "https://github.com/quicwg/base-drafts/issues/3690#event-3376004658",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdc22abdb5f_28c93fa39eacd95c307d5--


From nobody Tue May 26 18:28:27 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 F22973A0CDD for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:28:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 UimYqQXTlCss for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:28:15 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ECA613A0D41 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:28:12 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 50E699606EA for <quic-issues@ietf.org>; Tue, 26 May 2020 18:28:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542892; bh=sJuzCuA1DN/PqLptefDZUY02Zh/gmQpcuta/cFQPngk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ND56RvPNzbE1TsVlQtSRAp+1oqqLQz7dcJ67JCo8A+pu5+2mnEa5STlSKUpFWlFzF 7pJ5EDV0UCxwFm0w6Bxw8evF9+wQJugieuD0rKG9W9irui3nKcG3OMU5kqhFX6T5B9 UCVyywMDRO0Kj+0H1UTKlzybCf6Xo5qhqBBSo7sE=
Date: Tue, 26 May 2020 18:28:12 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZUVEGHZU7AK5RGT6N43GRSZEVBNHHCKOBF24@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3694/issue_event/3376004655@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3694@github.com>
References: <quicwg/base-drafts/pull/3694@github.com>
Subject: Re: [quicwg/base-drafts] rename SERVER_BUSY to CONNECTION_REFUSED (#3694)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdc22c41ce5_456b3f9083ecd96855798"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/E1tf2fnPuKXHwFPryERmHrkuZXA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 01:28:17 -0000

----==_mimepart_5ecdc22c41ce5_456b3f9083ecd96855798
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3694 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3694#event-3376004655
----==_mimepart_5ecdc22c41ce5_456b3f9083ecd96855798
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624436695" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3694" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3694/hovercard" href="https://github.com/quicwg/base-drafts/pull/3694">#3694</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3694#event-3376004655">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7LKYIH5L7IE6HOW2DRTRUCZANCNFSM4NJWVD7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3XM2YBIIAVDUFSHRTRTRUCZA5CNFSM4NJWVD7KYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZE434LY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3694#event-3376004655",
"url": "https://github.com/quicwg/base-drafts/pull/3694#event-3376004655",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdc22c41ce5_456b3f9083ecd96855798--


From nobody Tue May 26 18:28:41 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 D66FB3A0CDD for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:28:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -7.102
X-Spam-Level: 
X-Spam-Status: No, score=-7.102 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, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 7wIoC9phmWf4 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:28:38 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C63C33A0CDA for <quic-issues@ietf.org>; Tue, 26 May 2020 18:28:38 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 1591B2C0ED0 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:28:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542918; bh=kTDQCKqZopR1MBjsmtvVArmjLGxkgV2QFoK+/Vf3Zsg=; h=Date:From:To:Subject:From; b=x4jHdonn/nFDlwy64n0KfPDOsB0dQDDJdAKaZnFK5R4xzYGMDqUAmNrJYTZ88jz/I 66F5YPw7QabOUPRrNcXCjg6pxY9mltrI+pWu/d1QQESUEylM05TO/fqLa943AW/2OC 4AwuM63uvaRdRICTr34pPztLTQaEzQiPEOpGNl1E=
Date: Tue, 26 May 2020 18:28:38 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/46d134-123664@github.com>
Subject: [quicwg/base-drafts] 123664: Script updating gh-pages from 5ca8ae73. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4bKAocQQqHqRrLhA4JaQLJg_3Nw>
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: Wed, 27 May 2020 01:28:40 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 123664e74c0c49001877d2460e1706d52d78908a
      https://github.com/quicwg/base-drafts/commit/123664e74c0c49001877d2460e1706d52d78908a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 5ca8ae73. [ci skip]



From nobody Tue May 26 18:29:07 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 84FE13A0CDD for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:29:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 wwwSkA81mbXl for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:29:04 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 872773A0CDA for <quic-issues@ietf.org>; Tue, 26 May 2020 18:29:04 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id DBC5F2C21F1 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:29:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590542943; bh=wQURd8x1biTvA4U+HXaCYlY7SPRJgHpmrqlQjPKqaPQ=; h=Date:From:To:Subject:From; b=OeyuXSiZAoUyKbhqxURIMcOR1w4/WIXTl9VWj+NJEAbOo/wbOc7gKjVKE0xNpVh4p EQePVnl1g5xiWKUPIGd9GYzUVRJVZ6b1CZ2/GmYyuL+7tuL2o/rGWiFgsHmGfhdeH4 XUZ5jOipFQ5fBLZ9ZAN/VMguNS3817ANyXWjVG70=
Date: Tue, 26 May 2020 18:29:03 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/123664-a42b71@github.com>
Subject: [quicwg/base-drafts] a42b71: Script updating gh-pages from 4134402a. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iLBJZfDSWqqDrH8EFk9Raa7edU0>
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: Wed, 27 May 2020 01:29:06 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: a42b71e28dcde3ad099b5acb3c54d56a474de0f9
      https://github.com/quicwg/base-drafts/commit/a42b71e28dcde3ad099b5acb3c54d56a474de0f9
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 4134402a. [ci skip]



From nobody Tue May 26 18:50:29 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 3B60B3A0CEC for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:50:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 I0lAGfpAs376 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 18:50:26 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A8BFF3A0CE8 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:50:26 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id CD0C76E05A7 for <quic-issues@ietf.org>; Tue, 26 May 2020 18:50:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590544225; bh=J8xolxHxDApx+koUAC1+PuZNfA9uvj+ZqnXFgXp1jck=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rdi+RVFjf5o7QtE0SXw2Bh0wIiR58E34hRtafe89ry6tQ3GuRquXvZfxfH6dIDPiK RWzkLYOJu4+Ayrm6/90qhN4XX+2i5GaNeswbIgScTjkP0Jubnip1wDXEP34yIM6ZQA ZCQrZpbjwl1nm1Xbs+hnWALp0hWhW2e308VuV19A=
Date: Tue, 26 May 2020 18:50:25 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3PJUKKU3RFSOYEIV543GUGDEVBNHHCKOBF24@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3694/c634377518@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3694@github.com>
References: <quicwg/base-drafts/pull/3694@github.com>
Subject: Re: [quicwg/base-drafts] rename SERVER_BUSY to CONNECTION_REFUSED (#3694)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdc761bde19_4f103ff9d1ecd9604755d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9cuTUOg2iIjDbhVE2r-ZuuoO9Zs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 01:50:28 -0000

----==_mimepart_5ecdc761bde19_4f103ff9d1ecd9604755d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm not if this was an editorial PR. The previous text talked about a situation where a server was too busy to accept a new connection. The new text generalizes this to a connection refusal for any reason. That's a design change.

I also strongly disagree that this issue should close #3690. There's still on ongoing discussion if an additional error code should be introduced. I can't see how this is not a design issue.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3694#issuecomment-634377518
----==_mimepart_5ecdc761bde19_4f103ff9d1ecd9604755d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I'm not if this was an editorial PR. The previous text talked about a situation where a server was too busy to accept a new connection. The new text generalizes this to a connection refusal for any reason. That's a design change.</p>
<p>I also strongly disagree that this issue should close <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="623535922" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3690" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3690/hovercard" href="https://github.com/quicwg/base-drafts/issues/3690">#3690</a>. There's still on ongoing discussion if an additional error code should be introduced. I can't see how this is not a design issue.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3694#issuecomment-634377518">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7SFQNR55COTJNKY73RTRWWDANCNFSM4NJWVD7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2XX2IOGFRVIV7D6JTRTRWWDA5CNFSM4NJWVD7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXH5KLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3694#issuecomment-634377518",
"url": "https://github.com/quicwg/base-drafts/pull/3694#issuecomment-634377518",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdc761bde19_4f103ff9d1ecd9604755d--


From nobody Tue May 26 20:23:03 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 73C523A0E05 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:22:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 L4v2meMMdJj6 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:22:53 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 82D393A0D9D for <quic-issues@ietf.org>; Tue, 26 May 2020 20:22:46 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 87DE32C0E57 for <quic-issues@ietf.org>; Tue, 26 May 2020 20:22:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590549765; bh=+t51vJCFp6oZUfQKLCMMadzj+hX7ay3VXoa26L/50FQ=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=0096aA3yJWDuY6xLzO27FQoKqSacGnEhdQ6mEndbD4ESTT510+8culVq39aIEP3o9 HWaipOQtSZP7TXGa7q4PWKmAifLdtAkLQWFIkuqH/P1tJbfn6HJ/j5f+X3WpuKVnMG PZpSIkynzd/IVu0Ufs0yXtgUa3NAkZ/l+1OTH8qY=
Date: Tue, 26 May 2020 20:22:45 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYT2S7AFNMJQ3P4WKF43G7ALEVBNHHCKRQEIE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3703@github.com>
Subject: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3703)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecddd0577589_28cc3ff5deccd96824142f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TREJeX7lxlJkiBFsmdWjFxqSfw8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 03:23:02 -0000

----==_mimepart_5ecddd0577589_28cc3ff5deccd96824142f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The guiding principle here (as we apply it for FRAME_ENCODING_ERRORs) is that if an error is detectable without accessing connection state, we use the more specific error. So for example, since `initial_source_connection_id` and `original_destination_connection_id` are required transport parameters, their absence should be responded to with a TRANSPORT_PARAMETER_ERROR. A similar argument applies to the absence of the `retry_source_connection_id` TP, although I can see how one might use PROTOCOL_VIOLATION here (note that this is still valid behavior with this PR, as every more specific error can be replaced with a PROTOCOL_VIOLATION, if an implementation wishes to do so).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3703
----==_mimepart_5ecddd0577589_28cc3ff5deccd96824142f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The guiding principle here (as we apply it for FRAME_ENCODING_ERRORs) is that if an error is detectable without accessing connection state, we use the more specific error. So for example, since <code>initial_source_connection_id</code> and <code>original_destination_connection_id</code> are required transport parameters, their absence should be responded to with a TRANSPORT_PARAMETER_ERROR. A similar argument applies to the absence of the <code>retry_source_connection_id</code> TP, although I can see how one might use PROTOCOL_VIOLATION here (note that this is still valid behavior with this PR, as every more specific error can be replaced with a PROTOCOL_VIOLATION, if an implementation wishes to do so).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3703">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZWESMJHZOOXI4CNTTRTSBQLANCNFSM4NLVMM5Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6SD2GXBPNEOTMXDB3RTSBQLA5CNFSM4NLVMM52YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JKGARAQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3703",
"url": "https://github.com/quicwg/base-drafts/issues/3703",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecddd0577589_28cc3ff5deccd96824142f--


From nobody Tue May 26 20:23:21 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 A821B3A0D99 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:23:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 kz8kuw8sB8eK for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:23:18 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ED8FE3A0D9A for <quic-issues@ietf.org>; Tue, 26 May 2020 20:23:12 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 2E3AA960618 for <quic-issues@ietf.org>; Tue, 26 May 2020 20:23:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590549792; bh=s+988qNaekFlWM5gKG1sCJxw5muX73Sc49NFqGT4IZE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=U963k56r/GMwWm6aqBd2HNkP4RQ48L6zCGjLDoSt0MwfS12P7/wo3yugjHel68vzZ zA/PqU7LRml5JUwHqBFRA1LczlDawin48G8OghFki3p6nXHOpN0wgQVJTr0SSZAlqA 7itHOmzC/+HrSSvmgWjz/gVvNieKNzD72HkgXyBM=
Date: Tue, 26 May 2020 20:23:12 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK54Q7SJ7OYOZX3SQPN43G7CBEVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/c634404460@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecddd201e04d_23463ff4afccd95c160595"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2-SCPxpbb8N8p2f3REm7ivQho_4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 03:23:20 -0000

----==_mimepart_5ecddd201e04d_23463ff4afccd95c160595
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson Created #3703.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#issuecomment-634404460
----==_mimepart_5ecddd201e04d_23463ff4afccd95c160595
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> Created <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="625345601" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3703" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3703/hovercard" href="https://github.com/quicwg/base-drafts/issues/3703">#3703</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3691#issuecomment-634404460">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3KOURYEK4O2EIGHL3RTSBSBANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6HFXYDJX2CQ2U56KDRTSBSBA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXID43A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691#issuecomment-634404460",
"url": "https://github.com/quicwg/base-drafts/pull/3691#issuecomment-634404460",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecddd201e04d_23463ff4afccd95c160595--


From nobody Tue May 26 20:40:20 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 5E5DC3A0DDE for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:40:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 zzfTplFNvsdp for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:40:10 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9693F3A0E09 for <quic-issues@ietf.org>; Tue, 26 May 2020 20:40:09 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 2DE758C011E for <quic-issues@ietf.org>; Tue, 26 May 2020 20:40:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590550808; bh=kgFC5YdngHRYr6vYn39quggj/fUIJpV0x+iCrQBl2pI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=B9kgau/h4osh17XMaB3cUTyieR+OzH7B0iq5ULWiQUXKBPAU5R4NDQpQlFyUfB76M rL2UxjXliCSGvDhazGJ+WwioA+HrLzPAthgPyqExq6RGoRHyT3BRikRqUsaI0RlTfr pKS93ixi0mwTvkwbutjNSPrcIURBxwr+55SMZHr8=
Date: Tue, 26 May 2020 20:40:08 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4HG4X6JFO2477S7OF43HBBREVBNHHCKRQEIE@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3703/634409106@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3703@github.com>
References: <quicwg/base-drafts/issues/3703@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3703)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecde1181deb0_23503ff4afccd95c43295"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NN1WVBaIkpRQk3BHuv0SuLHWncQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 03:40:18 -0000

----==_mimepart_5ecde1181deb0_23503ff4afccd95c43295
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks.  I think that this is fine.  I will make a few editorial comments on the PR, but I think that the application of the agreed principles is correct.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3703#issuecomment-634409106
----==_mimepart_5ecde1181deb0_23503ff4afccd95c43295
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Thanks.  I think that this is fine.  I will make a few editorial comments on the PR, but I think that the application of the agreed principles is correct.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3703#issuecomment-634409106">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6RHNMSLB76N4B6BU3RTSDRRANCNFSM4NLVMM5Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZHPRLLVEQFBOOCWGTRTSDRRA5CNFSM4NLVMM52YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXIFBEQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3703#issuecomment-634409106",
"url": "https://github.com/quicwg/base-drafts/issues/3703#issuecomment-634409106",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecde1181deb0_23503ff4afccd95c43295--


From nobody Tue May 26 20:42:17 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 CED9E3A0DB9 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:42:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 c-rRo-0nI4Ys for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:42:15 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7B2FC3A0DB8 for <quic-issues@ietf.org>; Tue, 26 May 2020 20:42:15 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id D9F6B6E0768 for <quic-issues@ietf.org>; Tue, 26 May 2020 20:42:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590550934; bh=pwGcV8C2iXiuih5/4D1EBCX636kvqHJUAQWfg4RSn0Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FToy9wY42OIYGep2GvTAey6wOTsCPfUTNTYOuTOGVlta9Gl1MnIzxSoyJwZRzftX7 tCClA2Mm4+Gs2LyessAkxwXLGbCnAfJz2nHvxcZGGfAvrzqOmloSbmOdH0CJ/lfhh5 7potDPF2jaDtx/BNZlyT+coYKJoYGrn/atrMRvac=
Date: Tue, 26 May 2020 20:42:14 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2KU2Z7MPZ5M7WCWHN43HBJNEVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/review/418836032@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecde196cb97d_78733ff8362cd968262318"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8_Bn0MoGSWqU_vC0LW2z_bL6ugk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 03:42:17 -0000

----==_mimepart_5ecde196cb97d_78733ff8362cd968262318
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



>  carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
-treat any of the following as a connection error of type PROTOCOL_VIOLATION:
+treat any of the following as a connection error of type
+TRANSPORT_PARAMETER_ERROR:

A list is good here, but these aren't all equal.  In particular, the behaviour that is conditioned on whether a Retry was sent is not consistent with your principle.  I would argue that those are also PROTOCOL_VIOLATION cases.

If you agree, then you can move those two into the next list (which currently only has one item).  That leaves two items in this list and I think that can be turned back into prose.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-418836032
----==_mimepart_5ecde196cb97d_78733ff8362cd968262318
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430839940">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
-treat any of the following as a connection error of type PROTOCOL_VIOLATION:
+treat any of the following as a connection error of type
+TRANSPORT_PARAMETER_ERROR:
</pre>
<p>A list is good here, but these aren't all equal.  In particular, the behaviour that is conditioned on whether a Retry was sent is not consistent with your principle.  I would argue that those are also PROTOCOL_VIOLATION cases.</p>
<p>If you agree, then you can move those two into the next list (which currently only has one item).  That leaves two items in this list and I think that can be turned back into prose.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-418836032">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYA6H7DEOZLAYQHSVLRTSDZNANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4XS7AZ4F5JCTMADRLRTSDZNA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD3O4QA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-418836032",
"url": "https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-418836032",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecde196cb97d_78733ff8362cd968262318--


From nobody Tue May 26 20:50:43 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 1EF293A0DCF for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:50:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 3FUazelRn8iq for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:50:41 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 07FF73A0CCD for <quic-issues@ietf.org>; Tue, 26 May 2020 20:50:40 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id E6644E009F for <quic-issues@ietf.org>; Tue, 26 May 2020 20:50:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590551439; bh=Fx6lheHqtBWuinK335y1g14iQnIiPHvK/sH8BLLfpu0=; h=Date:From:To:Subject:From; b=0AQhL7p7afUKJC1a7nBPpuzJ+ePXJyZ3TxLqTvxlJrHakt1zMwstFfx2TtqFkx8Bg OGlk3vu8n9CqwLQGzAbmHVJyVUPfVGkVZugPOZZ0F/ZUoGsa9SD4fHPtBWEq4+5LW8 rbleDI/XMWy7Zj/zc6hITSQewJZjgAgh0VbNyUoI=
Date: Tue, 26 May 2020 20:50:39 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/revert-3694-kazuho/connection-refused-error/000000-d55a03@github.com>
Subject: [quicwg/base-drafts] d55a03: Revert "rename SERVER_BUSY to CONNECTION_REFUSED"
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5w1vWSNOlsXeHHjqbh-m0aRT22Q>
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: Wed, 27 May 2020 03:50:42 -0000

  Branch: refs/heads/revert-3694-kazuho/connection-refused-error
  Home:   https://github.com/quicwg/base-drafts
  Commit: d55a0343be10f81d68aaa0300747ddd518588ba6
      https://github.com/quicwg/base-drafts/commit/d55a0343be10f81d68aaa0300747ddd518588ba6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Revert "rename SERVER_BUSY to CONNECTION_REFUSED"



From nobody Tue May 26 20:51:04 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 C47093A0DD0 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:51:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 Iz_UE9KrgnHS for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:51:01 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9DD8A3A0DD1 for <quic-issues@ietf.org>; Tue, 26 May 2020 20:51:01 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id F17ACE0085 for <quic-issues@ietf.org>; Tue, 26 May 2020 20:51:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590551460; bh=y5oU/B0svcgo60hw3/cz046VLUv4YTWIQinKWfRIhWE=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=CkWzf20HNLh8nfGIPJ4hEUPzrAtfKRKs520BvEl1JjjYsICsVkwTSzq+RhqhIyXoW bQuwEPKNiztJ5+0XShkX03wsx/7mLuC8ia5keVK+XWKJiStZtMWI9hQb6hLdR7OVN/ DSfreS4yZCZyEl8m25YMnis7wm89w8TctUjAr8sU=
Date: Tue, 26 May 2020 20:51:00 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY4KOFAMF5CA4XW6HV43HCKJEVBNHHCKRRJPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3704@github.com>
Subject: [quicwg/base-drafts] Revert "rename SERVER_BUSY to CONNECTION_REFUSED" (#3704)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecde3a4e2b43_71193fb4d20cd96c28003a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ufRrIbw4cyGBT5V_PC8yF2Djuqs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 03:51:03 -0000

----==_mimepart_5ecde3a4e2b43_71193fb4d20cd96c28003a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Reverts quicwg/base-drafts#3694
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3704

-- Commit Summary --

  * Revert &quot;rename SERVER_BUSY to CONNECTION_REFUSED&quot;

-- File Changes --

    M draft-ietf-quic-transport.md (11)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3704.patch
https://github.com/quicwg/base-drafts/pull/3704.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3704

----==_mimepart_5ecde3a4e2b43_71193fb4d20cd96c28003a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>Reverts <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624436695" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3694" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3694/hovercard" href="https://github.com/quicwg/base-drafts/pull/3694">#3694</a></p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3704'>https://github.com/quicwg/base-drafts/pull/3704</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Revert &quot;rename SERVER_BUSY to CONNECTION_REFUSED&quot;</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3704/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (11)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3704.patch'>https://github.com/quicwg/base-drafts/pull/3704.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3704.diff'>https://github.com/quicwg/base-drafts/pull/3704.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3704">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4AA2J4Y4PFL3S7XJLRTSE2JANCNFSM4NLWNO4Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK44K52OMMGWLCYT6JTRTSE2JA5CNFSM4NLWNO42YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JKGFF6A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3704",
"url": "https://github.com/quicwg/base-drafts/pull/3704",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecde3a4e2b43_71193fb4d20cd96c28003a--


From nobody Tue May 26 20:51:34 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 E7F9F3A0DD9 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:51:32 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 QEgZ42NYm7qR for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:51:32 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E17683A0DD8 for <quic-issues@ietf.org>; Tue, 26 May 2020 20:51:31 -0700 (PDT)
Received: from github-lowworker-39ac79b.ac4-iad.github.net (github-lowworker-39ac79b.ac4-iad.github.net [10.52.18.15]) by smtp.github.com (Postfix) with ESMTP id 2E2A66E042B for <quic-issues@ietf.org>; Tue, 26 May 2020 20:51:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590551491; bh=yrSQG8QoFMg7buLAS79qitk20HmpTvoIGKs+Ac0saMs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0QFgH4/MT2BzDCXsrVFhnzTUSvPFa755kQKY4981gQz933Of9/3UlG3y+oL1VnPcv USch42DZnVQoUFfXodjZ1zHUyXWQcmVMlLl4Ao9OqLqmgJPSkkS27XJ0N7SwwqOKzL lbS1HaKx8GVmlDRaqUWtCc/1X65qLqxcJEBO9epE=
Date: Tue, 26 May 2020 20:51:31 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4D5GARVIHJWHUA7TN43HCMHEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3690/issue_event/3376271778@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecde3c31e390_23c73ff4afccd95c312067"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jP5oDdZlXj9LqytjWl71y2q0Ml8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 03:51:33 -0000

----==_mimepart_5ecde3c31e390_23c73ff4afccd95c312067
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Reopened #3690.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#event-3376271778
----==_mimepart_5ecde3c31e390_23c73ff4afccd95c312067
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Reopened <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="623535922" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3690" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3690/hovercard" href="https://github.com/quicwg/base-drafts/issues/3690">#3690</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#event-3376271778">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK54P2N34AMUCL54KI3RTSE4HANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4CJS3DY73LEDVA563RTSE4HA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZE65DIQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#event-3376271778",
"url": "https://github.com/quicwg/base-drafts/issues/3690#event-3376271778",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecde3c31e390_23c73ff4afccd95c312067--


From nobody Tue May 26 20:51:39 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 5CAEA3A0DDD for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:51:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Nj-kTv8MJIQl for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:51:33 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4EFA43A0DD8 for <quic-issues@ietf.org>; Tue, 26 May 2020 20:51:33 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 5F9BF2C0E3E for <quic-issues@ietf.org>; Tue, 26 May 2020 20:51:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590551492; bh=xG0/sfiJMfTHnf7cxt0SHBradHt0RAE3wOI1sU1W1EM=; h=Date:From:To:Subject:From; b=b645QmeeOyVjQssSZXrYEERB9FJa7eTTHzyLUqatw5JdnLP0y4HcY6KMINv1rP/Ol yQfSgwQhxRpmJKUadINJVVnez88Yvn/vIXMS+abfz9HKqVOksyOPkwjruuOhZ1/rSD Kg7OeowW9hiCvlWWf6KartFsF+MkPBdlHARiqQrY=
Date: Tue, 26 May 2020 20:51:32 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/a42b71-ae436f@github.com>
Subject: [quicwg/base-drafts] ae436f: Script updating gh-pages from d55a0343. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/akDNBoP3iNVssPEgOXB27O_eSUc>
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: Wed, 27 May 2020 03:51:35 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: ae436f7947b62c034e1e16872f7ac36c368a9d69
      https://github.com/quicwg/base-drafts/commit/ae436f7947b62c034e1e16872f7ac36c368a9d69
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M index.html
    A revert-3694-kazuho/connection-refused-error/draft-ietf-quic-http.html
    A revert-3694-kazuho/connection-refused-error/draft-ietf-quic-http.txt
    A revert-3694-kazuho/connection-refused-error/draft-ietf-quic-invariants.html
    A revert-3694-kazuho/connection-refused-error/draft-ietf-quic-invariants.txt
    A revert-3694-kazuho/connection-refused-error/draft-ietf-quic-qpack.html
    A revert-3694-kazuho/connection-refused-error/draft-ietf-quic-qpack.txt
    A revert-3694-kazuho/connection-refused-error/draft-ietf-quic-recovery.html
    A revert-3694-kazuho/connection-refused-error/draft-ietf-quic-recovery.txt
    A revert-3694-kazuho/connection-refused-error/draft-ietf-quic-tls.html
    A revert-3694-kazuho/connection-refused-error/draft-ietf-quic-tls.txt
    A revert-3694-kazuho/connection-refused-error/draft-ietf-quic-transport.html
    A revert-3694-kazuho/connection-refused-error/draft-ietf-quic-transport.txt
    A revert-3694-kazuho/connection-refused-error/index.html

  Log Message:
  -----------
  Script updating gh-pages from d55a0343. [ci skip]



From nobody Tue May 26 20:51: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 DADAF3A0DDB for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:51:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 kvw7wQVahhFQ for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:51:52 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A29B03A0DD8 for <quic-issues@ietf.org>; Tue, 26 May 2020 20:51:52 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 0FED91C0E90 for <quic-issues@ietf.org>; Tue, 26 May 2020 20:51:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590551512; bh=McqDRYT3aSFsXHF1yJurs3sCiarEKpcuL6HPShPc0EM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Rl1RnQ6muEIFmwD9js/+9NIiH7gZoSFoKdAOomo/nsksQNz1Zmu1RSqZUpBAPFNny J2wIkQGx3LHMMXdf5c/BCeouwNO4D6YaKfpO9vT5Qr9ROlnwBOD+VImqK/jxYKNedB DmhGcAfQZhCAiZa5eGhcPzsRpAFk/YV+xhQuAqos=
Date: Tue, 26 May 2020 20:51:52 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYD5WP6UYIRH6Z47QV43HCNPEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/634411751@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecde3d8e04_5c7e3ff8e22cd95c346745"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wyA1cU4RHeV0QJ93GMDpYoh7yeQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 03:51:54 -0000

----==_mimepart_5ecde3d8e04_5c7e3ff8e22cd95c346745
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Based on a request on #3964.  I have also opened #3704.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634411751
----==_mimepart_5ecde3d8e04_5c7e3ff8e22cd95c346745
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Based on a request on #3964.  I have also opened <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="625355132" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3704" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3704/hovercard" href="https://github.com/quicwg/base-drafts/pull/3704">#3704</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634411751">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYOEPRUUYCYY3OAGYLRTSE5RANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6OMN24JFNWNTJKDJTRTSE5RA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXIFVZY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634411751",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634411751",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecde3d8e04_5c7e3ff8e22cd95c346745--


From nobody Tue May 26 20:52:29 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 1439C3A0DDB for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:52:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 xky7ZT3Mehux for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 20:52:27 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E31C13A0DD8 for <quic-issues@ietf.org>; Tue, 26 May 2020 20:52:26 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 35C251210DC for <quic-issues@ietf.org>; Tue, 26 May 2020 20:52:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590551546; bh=v62GNlTtwGDcJ46GJ4+zAjCCf7TT1zC4ZE7w7VhLkjI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yvofyUMXmL2Wq01cQ2ECLYmizMFspu0w17XYTcU9nTr1oKVKFF1Kamo5a2h7qrxz6 MIG8jvJHcjSZk7h9OJ//+RK7wsWEGvk/30cO1Y+WVaRa1/IhORasgvboV3VeZdif+n ZzYzI+KTC89gL3N3BTr9snOBIHEEHQ2H7Ai3jhvs=
Date: Tue, 26 May 2020 20:52:25 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2HZNAA4RLE72XPSWN43HCPTEVBNHHCKRRJPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3704/c634411898@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3704@github.com>
References: <quicwg/base-drafts/pull/3704@github.com>
Subject: Re: [quicwg/base-drafts] Revert "rename SERVER_BUSY to CONNECTION_REFUSED" (#3704)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecde3f9e51db_7dd43fbeed2cd9683186ce"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dx7zc5f_irZ0Y2NnlY8s7De07m8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 03:52:28 -0000

----==_mimepart_5ecde3f9e51db_7dd43fbeed2cd9683186ce
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Creating this to track the discussion on #3696.  I personally don't think that this is a good change, but we didn't give the previous change a fair hearing.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3704#issuecomment-634411898
----==_mimepart_5ecde3f9e51db_7dd43fbeed2cd9683186ce
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Creating this to track the discussion on <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624597339" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3696" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3696/hovercard" href="https://github.com/quicwg/base-drafts/pull/3696">#3696</a>.  I personally don't think that this is a good change, but we didn't give the previous change a fair hearing.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3704#issuecomment-634411898">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4C3M6BUWULBPELP5LRTSE7TANCNFSM4NLWNO4Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5LVW2F2LZ4J5QAPQ3RTSE7TA5CNFSM4NLWNO42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXIFW6Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3704#issuecomment-634411898",
"url": "https://github.com/quicwg/base-drafts/pull/3704#issuecomment-634411898",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecde3f9e51db_7dd43fbeed2cd9683186ce--


From nobody Tue May 26 21:07:51 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 5E7E03A0DFB for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 21:07:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Aey0pNUUz5jp for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 21:07:48 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 68EC03A0DFA for <quic-issues@ietf.org>; Tue, 26 May 2020 21:07:48 -0700 (PDT)
Received: from github-lowworker-fb56993.ac4-iad.github.net (github-lowworker-fb56993.ac4-iad.github.net [10.52.19.31]) by smtp.github.com (Postfix) with ESMTP id A6EDD6E06C7 for <quic-issues@ietf.org>; Tue, 26 May 2020 21:07:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590552467; bh=UydpDue1W6HLzAlFqmnS0Tx9sV/hsWntpBOXFbHuI34=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Qd4qZhZ/pV7AwTqDr00ILKjdxkBohJ7sQl58/yfbKNr+St6Bmr+W7LDk6RyZo9IXP wAxJaS88NAWlQx7ZDngyfPaxMHiGj61qOnnJqTXB/Cpq+XX7ZxXwI/J0EeoawK7DT6 MNiXLHJel155ebjajajA5QI26QlDN4H9TjKBfwEk=
Date: Tue, 26 May 2020 21:07:47 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/push/5133373617@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecde793838d7_4c93fa1c08cd95c219739"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bDR6vRQI7vi-wADWZlY3PhTm1KA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 04:07:49 -0000

----==_mimepart_5ecde793838d7_4c93fa1c08cd95c219739
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann pushed 1 commit.

065e9aa278211b463d125d3afc376e32375bf084  use PROTOCOL_VIOLATIONs for the retry_source_connection_id checks


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691/files/994f32dd4fe1c160ad8ac1c88180e5b2b059e5a9..065e9aa278211b463d125d3afc376e32375bf084

----==_mimepart_5ecde793838d7_4c93fa1c08cd95c219739
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/marten-seemann" class="user-mention">@marten-seemann</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/065e9aa278211b463d125d3afc376e32375bf084">065e9aa</a>  use PROTOCOL_VIOLATIONs for the retry_source_connection_id checks</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3691/files/994f32dd4fe1c160ad8ac1c88180e5b2b059e5a9..065e9aa278211b463d125d3afc376e32375bf084">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2HN7Y3XNJPVEUS6ADRTSGZHANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYRFFFW5HLZLMVXYM3RTSGZHA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDEMZWGA3DCMSQOVZWQIZVGEZTGMZXGM3DCNY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691/files/994f32dd4fe1c160ad8ac1c88180e5b2b059e5a9..065e9aa278211b463d125d3afc376e32375bf084",
"url": "https://github.com/quicwg/base-drafts/pull/3691/files/994f32dd4fe1c160ad8ac1c88180e5b2b059e5a9..065e9aa278211b463d125d3afc376e32375bf084",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecde793838d7_4c93fa1c08cd95c219739--


From nobody Tue May 26 21:07:56 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 C5CB13A0E02 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 21:07:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 fQU1vgZoLI8Y for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 21:07:50 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8C36B3A0DF9 for <quic-issues@ietf.org>; Tue, 26 May 2020 21:07:50 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id E10168C0CA9 for <quic-issues@ietf.org>; Tue, 26 May 2020 21:07:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590552469; bh=ebrreE1Ol2Rei5p0ue+4j5Uh5RGdBehPkwUqpKG8vew=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=l/RT7Mf7oQBkJcyM27s8rp/SSMmiRBXmbioaJ1QvPZ6S++E1jx1ISssr3kPLWwW1U b5wo6RJiTWWqon/IoSd1nAuFE3orpvE+mrBYfS2g5hJ+6ukg3fBAoVC3V5wJRCGT0f UFt+vZUysGqHVMUqO9jEKCMDFBpc4P/c16qeYewo=
Date: Tue, 26 May 2020 21:07:49 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3HKL7EK74C7ZJH5A543HEJLEVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/review/418843012@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecde795d199a_29893fcde5ccd95c456018"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ioorWcwAjPfueeiblqiyaGQaY0E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 04:07:52 -0000

----==_mimepart_5ecde795d199a_29893fcde5ccd95c456018
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann commented on this pull request.



>  carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
-treat any of the following as a connection error of type PROTOCOL_VIOLATION:
+treat any of the following as a connection error of type
+TRANSPORT_PARAMETER_ERROR:

Agreed. And fixed.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#discussion_r430845740
----==_mimepart_5ecde795d199a_29893fcde5ccd95c456018
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430845740">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
-treat any of the following as a connection error of type PROTOCOL_VIOLATION:
+treat any of the following as a connection error of type
+TRANSPORT_PARAMETER_ERROR:
</pre>
<p>Agreed. And fixed.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430845740">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5CGDKTOGAQFHKLW7DRTSGZLANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYGWHHYGCVAWL4BI7DRTSGZLA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD3QTBA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430845740",
"url": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430845740",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecde795d199a_29893fcde5ccd95c456018--


From nobody Tue May 26 21:16:12 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 1DF5D3A0E0A for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 21:16:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 lHu_6u4lkk7G for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 21:16:09 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DCD683A0E08 for <quic-issues@ietf.org>; Tue, 26 May 2020 21:16:09 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 1EFED8C012A for <quic-issues@ietf.org>; Tue, 26 May 2020 21:16:09 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590552969; bh=zkoiNWcpGT+sxHn5FluNNF/K/Hkqn/aECe5qarblqJU=; h=Date:From:To:Subject:From; b=t8sUrBYv9NpBGsYIxYQTZchXwHvIiN5VrHeqspnS9kDrX2XR9MeQZsSNW5iEiY0mk t8oItO5eTMNZPTKAn24sSnruN6gWHl1C04qBHasPd/2r9ikEClgMWqN+qtu18Ev8bc C3gIFvXxUS6nUTOAmWFaTmqL0ldOF+/Lu9qCRfVM=
Date: Tue, 26 May 2020 21:16:09 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/3691-prose/000000-e241f4@github.com>
Subject: [quicwg/base-drafts] 994f32: use TRANSPORT_PARAMETER_ERROR when authenticating ...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Sj59s41imPSnVgMILfuN37zqY78>
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: Wed, 27 May 2020 04:16:11 -0000

  Branch: refs/heads/3691-prose
  Home:   https://github.com/quicwg/base-drafts
  Commit: 994f32dd4fe1c160ad8ac1c88180e5b2b059e5a9
      https://github.com/quicwg/base-drafts/commit/994f32dd4fe1c160ad8ac1c88180e5b2b059e5a9
  Author: Marten Seemann <martenseemann@gmail.com>
  Date:   2020-05-24 (Sun, 24 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs


  Commit: 065e9aa278211b463d125d3afc376e32375bf084
      https://github.com/quicwg/base-drafts/commit/065e9aa278211b463d125d3afc376e32375bf084
  Author: Marten Seemann <martenseemann@gmail.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  use PROTOCOL_VIOLATIONs for the retry_source_connection_id checks


  Commit: e241f42ed92765c3393c406f7aedc560c4609f04
      https://github.com/quicwg/base-drafts/commit/e241f42ed92765c3393c406f7aedc560c4609f04
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Turn the absence clauses into prose


Compare: https://github.com/quicwg/base-drafts/compare/994f32dd4fe1%5E...e241f42ed927


From nobody Tue May 26 21:17:28 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 8BC353A0E08 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 21:17:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ON8l0-xTI9vF for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 21:17:26 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 686A03A0968 for <quic-issues@ietf.org>; Tue, 26 May 2020 21:17:26 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id A51C66A0A9D for <quic-issues@ietf.org>; Tue, 26 May 2020 21:17:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590553045; bh=ymcvsmOuPHvADqHsw+1jClxN6xm0z4WtElTQwv2Zvlo=; h=Date:From:To:Subject:From; b=CDNIyN0Z9vKaDQ5puGE23RDq8uE/v+tMJ6byLtwSNIoeHDXv5qwpHwWv5vmIjPH21 MrYdWT0dHQ8AAu+tFEpy1L5Dhmhx+xUMlFUZc6PBQV7xSi9FYZxojgZn2BERgiDUGG WwZBfHYBm6aseMizUavlIgjTcaFUpbjlrQZMafHA=
Date: Tue, 26 May 2020 21:17:25 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/ae436f-1cba82@github.com>
Subject: [quicwg/base-drafts] 1cba82: Script updating gh-pages from e241f42e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AKQFX0iK9a02rRjirSojNEWHQ5Y>
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: Wed, 27 May 2020 04:17:28 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1cba82893a3cbbe8a4877dd89151de2765eb3774
      https://github.com/quicwg/base-drafts/commit/1cba82893a3cbbe8a4877dd89151de2765eb3774
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    A 3691-prose/draft-ietf-quic-http.html
    A 3691-prose/draft-ietf-quic-http.txt
    A 3691-prose/draft-ietf-quic-invariants.html
    A 3691-prose/draft-ietf-quic-invariants.txt
    A 3691-prose/draft-ietf-quic-qpack.html
    A 3691-prose/draft-ietf-quic-qpack.txt
    A 3691-prose/draft-ietf-quic-recovery.html
    A 3691-prose/draft-ietf-quic-recovery.txt
    A 3691-prose/draft-ietf-quic-tls.html
    A 3691-prose/draft-ietf-quic-tls.txt
    A 3691-prose/draft-ietf-quic-transport.html
    A 3691-prose/draft-ietf-quic-transport.txt
    A 3691-prose/index.html
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from e241f42e. [ci skip]



From nobody Tue May 26 21:22:24 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 B14473A0E19 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 21:22:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 f0CCWVDCMQm0 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 21:22:21 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 83D413A0E14 for <quic-issues@ietf.org>; Tue, 26 May 2020 21:22:21 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 691D996075B for <quic-issues@ietf.org>; Tue, 26 May 2020 21:22:20 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590553340; bh=BaRPdcHYpxLK3kAqp+WfUvMBd1kGN0oM99V54riTGNk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=FGIKQo10NkXj8ij3K/BBGaC6Xo4hNLpQ9NmASLt0sOrPdzCW5CgU1Z670OLwCWXYz 3h7Qipido+F9fNBmPfFO1eqmgeHIs4XYrM6MNIlB742V0EEo/Pli24L0Un8hXlpKFa ZJ9Rllgjo2hkpBCv5GWsu5kd0pd7RS31xP9hvwas=
Date: Tue, 26 May 2020 21:22:20 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7YVI74B2V4H5UZMZN43HF7ZEVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/review/418846632@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdeafc58d10_71493fb4d20cd96c541195"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5fwgWMV4l7Itu-EMzEuGtpB6wEY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 04:22:23 -0000

----==_mimepart_5ecdeafc58d10_71493fb4d20cd96c541195
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



>  carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
-treat any of the following as a connection error of type PROTOCOL_VIOLATION:
+treat any of the following as a connection error of type
+TRANSPORT_PARAMETER_ERROR:

I made a prose suggestion in a PR, which you can take or leave.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#discussion_r430848695
----==_mimepart_5ecdeafc58d10_71493fb4d20cd96c541195
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430848695">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
-treat any of the following as a connection error of type PROTOCOL_VIOLATION:
+treat any of the following as a connection error of type
+TRANSPORT_PARAMETER_ERROR:
</pre>
<p>I made a prose suggestion in a PR, which you can take or leave.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430848695">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY3D5U37F2DEZKR3CLRTSIPZANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6SOHD5XNMY7F4NTZDRTSIPZA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD3RPKA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430848695",
"url": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430848695",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdeafc58d10_71493fb4d20cd96c541195--


From nobody Tue May 26 22:00:03 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 AE0213A00E0 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 22:00:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 RdlbEEI2lIVo for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 22:00:00 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 783933A00D9 for <quic-issues@ietf.org>; Tue, 26 May 2020 22:00:00 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 32C4D8C0FAF for <quic-issues@ietf.org>; Tue, 26 May 2020 21:59:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590555597; bh=kAAxhkOjE8i/vNJUJnvSZKDhF0dY0fDcSEJeiT3xx1o=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jWWYkUNOmGXlA0aEdH3beyKaCR0bV++qwCjbMyhXK0RR24nlz6wk67Gj5C2Zg4eIE BxIvhXwFQQUagEmNzo2nPUwDS0zuWd279jsmUUbf9GmGYF2kIW9UtXCGkIXXkuMwnb 3DtweZ6DQ+WgmnNmqoL6A7QeKR/6mre7Q8jbZbLk=
Date: Tue, 26 May 2020 21:59:57 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/push/5133510781@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdf3cd1f5d8_8dc3f92040cd96c5768bb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tjtRQp8yVV0UFGCZY7rAXRdlUbg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 05:00:02 -0000

----==_mimepart_5ecdf3cd1f5d8_8dc3f92040cd96c5768bb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann pushed 2 commits.

e241f42ed92765c3393c406f7aedc560c4609f04  Turn the absence clauses into prose
bb533c01f7947d39d94074c8e7459c1ded3f077c  Merge pull request #6 from quicwg/3691-prose


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691/files/065e9aa278211b463d125d3afc376e32375bf084..bb533c01f7947d39d94074c8e7459c1ded3f077c

----==_mimepart_5ecdf3cd1f5d8_8dc3f92040cd96c5768bb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/marten-seemann" class="user-mention">@marten-seemann</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/e241f42ed92765c3393c406f7aedc560c4609f04">e241f42</a>  Turn the absence clauses into prose</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/bb533c01f7947d39d94074c8e7459c1ded3f077c">bb533c0</a>  Merge pull request #6 from quicwg/3691-prose</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3691/files/065e9aa278211b463d125d3afc376e32375bf084..bb533c01f7947d39d94074c8e7459c1ded3f077c">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5DMDR2H4JQZLQFTZTRTSM43ANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2RVXNATYPQ26PNI2DRTSM43A5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDEMZWGA3DCMSQOVZWQIZVGEZTGNJRGA3TQMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691/files/065e9aa278211b463d125d3afc376e32375bf084..bb533c01f7947d39d94074c8e7459c1ded3f077c",
"url": "https://github.com/quicwg/base-drafts/pull/3691/files/065e9aa278211b463d125d3afc376e32375bf084..bb533c01f7947d39d94074c8e7459c1ded3f077c",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecdf3cd1f5d8_8dc3f92040cd96c5768bb--


From nobody Tue May 26 22:00:11 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 274953A00E0 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 22:00:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 VC11YZMkgmtc for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 22:00:09 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 245613A00D9 for <quic-issues@ietf.org>; Tue, 26 May 2020 22:00:09 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 4F7D01C0281 for <quic-issues@ietf.org>; Tue, 26 May 2020 22:00:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590555608; bh=P2YZuriI42pxoS08q6DbyVIj0PV/pbQEBE0JXKFbdVo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=tmL7kM3wZtncO1vHZfN1GKdcNtGeckyBOWn+vr9II0hDBvLVuorkpPADWC5gogg+3 r+kd/pBDYHGM0luNGEhgjPjadazLEplufeKd2oudnLzMwkR4jY6Pv07UPZlfeP93G8 nmevVwVjVjsrWrJWl0xW2RWbwqnx2bPwspqIhNMw=
Date: Tue, 26 May 2020 22:00:08 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZKBXFTGIDUS7YZJLN43HKNREVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/review/418857426@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdf3d840490_543f3fa12bccd95c5121b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ULLQeuW6l5n-p9qFlftuQdghdj8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 05:00:10 -0000

----==_mimepart_5ecdf3d840490_543f3fa12bccd95c5121b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann commented on this pull request.



>  carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
-treat any of the following as a connection error of type PROTOCOL_VIOLATION:
+treat any of the following as a connection error of type
+TRANSPORT_PARAMETER_ERROR:

Thank you. Merged.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#discussion_r430857545
----==_mimepart_5ecdf3d840490_543f3fa12bccd95c5121b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430857545">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  carrying attacker-chosen connection IDs during the handshake. An endpoint MUST
-treat any of the following as a connection error of type PROTOCOL_VIOLATION:
+treat any of the following as a connection error of type
+TRANSPORT_PARAMETER_ERROR:
</pre>
<p>Thank you. Merged.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430857545">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZCEIIDW5LU6SPFZZLRTSM5RANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6CUAHHIBFFKP4TFS3RTSM5RA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD3UDUQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430857545",
"url": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430857545",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdf3d840490_543f3fa12bccd95c5121b--


From nobody Tue May 26 22:35:22 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 9E6B93A0542 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 22:35:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 aIdnFancaHKj for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 22:35:19 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D26F03A00C0 for <quic-issues@ietf.org>; Tue, 26 May 2020 22:35:18 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 0F63B52110C for <quic-issues@ietf.org>; Tue, 26 May 2020 22:35:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590557718; bh=h7l6gbCVjXm/GjM3sObdH+Z8leH2W6ZMUzSITI1JFHc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=sMkUa8BxSu1PQNsdebzchdA9y9syuOLemUGJtb6O2UcqXGTmj0lzgmikZ1Kq3gKuF pU/TfztOM56s2nRjWEWVyCj+49uEKDdFP3alhf+bmjU8r5knhPELXTq3pEEqSqv3Io gLcXNOZsGvxuGSDmpA36N4lx/2o+mhkHa8QjS3JU=
Date: Tue, 26 May 2020 22:35:18 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3IE6F7XM6AB3TY64543HORLEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/634438868@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdfc16c35_5c773ff8e22cd95c81668c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Z24IzPw1kyZjYMUwhtfpJn8omTg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 05:35:21 -0000

----==_mimepart_5ecdfc16c35_5c773ff8e22cd95c81668c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

I can see why this issue being classified as a design change, though at t=
he same time, I think that #3694 was a good editorial change.=0D
=0D
#3694 made things better=E3=80=82We now have an error code for server ind=
icating that it rejected the connection even though nothing seemed to be =
wrong with the handshake. Without having CONNECTION_REFUSED_ERROR, a clie=
nt had to guess if PROTOCOL_VIOLATION meant a problem in the handshake, o=
r if it was simply a refusal.=0D
=0D
>From now on, on this issue, I hope that we can concentrate on discussing =
if we want to have more than one error code indicating the specifics of c=
onnection refusals (e.g., SERVER_BUSY). Unsurprisingly, my position is th=
at we cannot have specific codes due to the reasons laid out above.=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634438868=

----==_mimepart_5ecdfc16c35_5c773ff8e22cd95c81668c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p>I can see why this issue being classified as a design change, though a=
t the same time, I think that <a class=3D"issue-link js-issue-link" data-=
error-text=3D"Failed to load title" data-id=3D"624436695" data-permission=
-text=3D"Title is private" data-url=3D"https://github.com/quicwg/base-dra=
fts/issues/3694" data-hovercard-type=3D"pull_request" data-hovercard-url=3D=
"/quicwg/base-drafts/pull/3694/hovercard" href=3D"https://github.com/quic=
wg/base-drafts/pull/3694">#3694</a> was a good editorial change.</p>=0D
<p><a class=3D"issue-link js-issue-link" data-error-text=3D"Failed to loa=
d title" data-id=3D"624436695" data-permission-text=3D"Title is private" =
data-url=3D"https://github.com/quicwg/base-drafts/issues/3694" data-hover=
card-type=3D"pull_request" data-hovercard-url=3D"/quicwg/base-drafts/pull=
/3694/hovercard" href=3D"https://github.com/quicwg/base-drafts/pull/3694"=
>#3694</a> made things better=E3=80=82We now have an error code for serve=
r indicating that it rejected the connection even though nothing seemed t=
o be wrong with the handshake. Without having CONNECTION_REFUSED_ERROR, a=
 client had to guess if PROTOCOL_VIOLATION meant a problem in the handsha=
ke, or if it was simply a refusal.</p>=0D
<p>From now on, on this issue, I hope that we can concentrate on discussi=
ng if we want to have more than one error code indicating the specifics o=
f connection refusals (e.g., SERVER_BUSY). Unsurprisingly, my position is=
 that we cannot have specific codes due to the reasons laid out above.</p=
>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/issues/3690#issuecomment-634438868">view it on GitHub</a>,=
 or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJKYF=
FQIN7UV42YMKNADRTSRBNANCNFSM4NIGTQSA">unsubscribe</a>.<img src=3D"https:/=
/github.com/notifications/beacon/AFTOJK7KWFNER7M5HY2OPPLRTSRBNA5CNFSM4NIG=
TQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXIMJVA.g=
if" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment=
-634438868",=0D
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-63=
4438868",=0D
"name": "View Issue"=0D
},=0D
"description": "View this Issue on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecdfc16c35_5c773ff8e22cd95c81668c--


From nobody Tue May 26 22:47:02 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 A52F73A07C2 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 22:47:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 RpigQBycFDt7 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 22:46:59 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 443323A07BD for <quic-issues@ietf.org>; Tue, 26 May 2020 22:46:59 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 23049521925 for <quic-issues@ietf.org>; Tue, 26 May 2020 22:46:58 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590558418; bh=oVwBrNxFpPDCbHT7wBd2yjKo6+BR/B55l6uxyouU+P4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Rsf7oJ8dWs3BwUGaC3up2jzSIjdgAHAsUUtUPODQLlWDBIZAjd1Mqs/y36y+WO75k 5sAM6TNFv29LZGxuo5pyi60MxQLB/Y5TWfVqis7q0FHY/vM9sK7I2nE1aiW/uu7vG1 eeq+v7Qob9njpMXECD1hbO7ghbTtJ/eAxSoQKu3A=
Date: Tue, 26 May 2020 22:46:58 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3XRFURNEMFQNJCOCF43HP5FEVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/review/418872644@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecdfed212937_3a373fa97c2cd96c7933e6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aNoOvfSRnbjl8oSx-MlRQs7xiSU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 05:47:01 -0000

----==_mimepart_5ecdfed212937_3a373fa97c2cd96c7933e6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho commented on this pull request.



>  
-* absence of the original_destination_connection_id transport parameter from
-  the server,
+An endpoint MUST treat the following as a connection error of type
+PROTOCOL_VIOLATION:
 
 * absence of the retry_source_connection_id transport parameter from the server
   after receiving a Retry packet,

I think my preference would be to allow either PROTOCOL_VIOLATION or TRANSPORT_PARAMETER_ERROR to be used when retry_source_connection_id is missing (or when it exists for no reason).

This is borderline, and in the past, we have allowed more than one error code to be used when that is reasonable. In this specific case, the QUIC stack can ask the decoder of Transport Parameters to provide source_connection_id (or to not provide one). In such a design, it is reasonable for the decoder of the Transport Parameters to raise an error when that expectation does not match.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-418872644
----==_mimepart_5ecdfed212937_3a373fa97c2cd96c7933e6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@kazuho</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430870159">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-* absence of the original_destination_connection_id transport parameter from
-  the server,
+An endpoint MUST treat the following as a connection error of type
+PROTOCOL_VIOLATION:
 
 * absence of the retry_source_connection_id transport parameter from the server
   after receiving a Retry packet,
</pre>
<p>I think my preference would be to allow either PROTOCOL_VIOLATION or TRANSPORT_PARAMETER_ERROR to be used when retry_source_connection_id is missing (or when it exists for no reason).</p>
<p>This is borderline, and in the past, we have allowed more than one error code to be used when that is reasonable. In this specific case, the QUIC stack can ask the decoder of Transport Parameters to provide source_connection_id (or to not provide one). In such a design, it is reasonable for the decoder of the Transport Parameters to raise an error when that expectation does not match.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-418872644">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK67UH5U3ZA3Z3MSIG3RTSSNFANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6NOIMPHOA4WGJTZWLRTSSNFA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD3X2RA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-418872644",
"url": "https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-418872644",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecdfed212937_3a373fa97c2cd96c7933e6--


From nobody Tue May 26 22:55:42 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 4E02E3A07E5 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 22:55:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 OwX7-6N-o8I7 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 22:55:38 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B0EA23A07E3 for <quic-issues@ietf.org>; Tue, 26 May 2020 22:55:38 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id BC0BF1C0AE0 for <quic-issues@ietf.org>; Tue, 26 May 2020 22:55:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590558936; bh=EM0SlehbhuiVWP3pkiIq6Q+Fv1fdgjhbS7RYlPWGb0E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Jq+iEspNRcLGwbcwnLCwbhBpUw3UaUSWpkxDkFUheOeouovtIyjsRSZ+q+iqTvzy8 CADsfBguqb3v4pkssML7acujMa7WMBmBO30whyS2iD2jP2GpBXhiHgw05bKt5V23Q5 V5V4sHOC8j02xb3JdY1x+95IBYT08iK+Oy9FlgnE=
Date: Tue, 26 May 2020 22:55:36 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK67T2IQJWPJ3RK3VVN43HQ5REVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/review/418875978@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece00d8abdc3_785f3ff8362cd96879944b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Pq00UBufeJe55-RWoOe_8VIdxW8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 05:55:40 -0000

----==_mimepart_5ece00d8abdc3_785f3ff8362cd96879944b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



>  
-* absence of the original_destination_connection_id transport parameter from
-  the server,
+An endpoint MUST treat the following as a connection error of type
+PROTOCOL_VIOLATION:
 
 * absence of the retry_source_connection_id transport parameter from the server
   after receiving a Retry packet,

I think that the existing rules we basically permit either.  Is there some way you would prefer to phrase this?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#discussion_r430872936
----==_mimepart_5ece00d8abdc3_785f3ff8362cd96879944b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430872936">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-* absence of the original_destination_connection_id transport parameter from
-  the server,
+An endpoint MUST treat the following as a connection error of type
+PROTOCOL_VIOLATION:
 
 * absence of the retry_source_connection_id transport parameter from the server
   after receiving a Retry packet,
</pre>
<p>I think that the existing rules we basically permit either.  Is there some way you would prefer to phrase this?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430872936">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7DETVKQERF5PBV37TRTSTNRANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4YN67MRTIE7CC6Y73RTSTNRA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD3YUSQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430872936",
"url": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430872936",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece00d8abdc3_785f3ff8362cd96879944b--


From nobody Tue May 26 22:58:26 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 590113A07EE for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 22:58:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 A9kAKHJRlfjX for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 22:58:23 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 04DB63A07ED for <quic-issues@ietf.org>; Tue, 26 May 2020 22:58:22 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 1F565660BD9 for <quic-issues@ietf.org>; Tue, 26 May 2020 22:58:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590559102; bh=ZjGPitCeDXIjttZEgue9hNzvqGs6Gp0f4eni2hDsXoc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EXzCrmtsLSVJ7bI9tRUM7n9z9AKzpkhNkyfXo7IDqh0O+meC9Acmyyz18uDj5VRnO i+uHYQ0HPY5JRou8EJIFWygpDcbm/rORLuLkYtqY3Gr5mvYl4Bkq1ocxBUwNrHe6p4 XupN5e+8yrbis4bPx5fHpM0UV/LB2rhM+rKnWhpM=
Date: Tue, 26 May 2020 22:58:22 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7VRXOY422YKBUMO3F43HRH5EVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/review/418844024@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece017efb31_28cf3ff5deccd9686593bf"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/b46FeQxZkB52FAWbsCqHPy3FM4A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 05:58:24 -0000

----==_mimepart_5ece017efb31_28cf3ff5deccd9686593bf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann requested changes on this pull request.



>        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = smoothed_rtt +
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)

I believe you're missing a pair of brackets here.

>        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = smoothed_rtt +
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):
+    return (now() + duration), Initial

This breaks the following case: As a client, I need to send a Handshake packet to unblock the server's amplification limit, if the Initial packet number space was already dropped.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-418844024
----==_mimepart_5ece017efb31_28cf3ff5deccd9686593bf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> requested changes on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3681#discussion_r430846580">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = smoothed_rtt +
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)
</pre>
<p>I believe you're missing a pair of brackets here.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3681#discussion_r430873809">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = smoothed_rtt +
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):
+    return (now() + duration), Initial
</pre>
<p>This breaks the following case: As a client, I need to send a Handshake packet to unblock the server's amplification limit, if the Initial packet number space was already dropped.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-418844024">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6FUNO5C3CTSLS6J3LRTSTX5ANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5V3DZ6I75BVYMXEMTRTSTX5A5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD3Q26A.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-418844024",
"url": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-418844024",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece017efb31_28cf3ff5deccd9686593bf--


From nobody Tue May 26 23:00:38 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 DFB4E3A07FC for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 23:00:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ItR2jKvfYQty for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 23:00:35 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3D81D3A060A for <quic-issues@ietf.org>; Tue, 26 May 2020 23:00:35 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 8624696074A for <quic-issues@ietf.org>; Tue, 26 May 2020 23:00:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590559234; bh=iTV+jDUa8bA5YK2/ZpGl+qri8wk0IH5JZylT+wwRo+Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=WehbhQnlb/w03iuErPuWUiVsiREwXi763q3ReEiZ1i6XAIsn2MJi/3AOl3zaqS97U I9sMSGV2R1L97Z2hTtIOPbYYjQZuooYBLyUjkJz70t05JWJu9mln0nHiTQ5C9ACfr2 pCVkhCRYyuaa23HZgcpSXnnZgkZ4Qyq2Vtscwy3M=
Date: Tue, 26 May 2020 23:00:34 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYBOYDAYFNVZ5YMOO543HRQFEVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/review/418877908@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece020276dac_5b993ff0894cd95c54438"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PhvYINbwsOVcFZL8HW0iKVxxFBA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 06:00:37 -0000

----==_mimepart_5ece020276dac_5b993ff0894cd95c54438
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann commented on this pull request.



>  
-* absence of the original_destination_connection_id transport parameter from
-  the server,
+An endpoint MUST treat the following as a connection error of type
+PROTOCOL_VIOLATION:
 
 * absence of the retry_source_connection_id transport parameter from the server
   after receiving a Retry packet,

We permit specific error codes to be replaced by PROTOCOL_VIOLATION, not the other way round, iirc.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#discussion_r430874546
----==_mimepart_5ece020276dac_5b993ff0894cd95c54438
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430874546">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-* absence of the original_destination_connection_id transport parameter from
-  the server,
+An endpoint MUST treat the following as a connection error of type
+PROTOCOL_VIOLATION:
 
 * absence of the retry_source_connection_id transport parameter from the server
   after receiving a Retry packet,
</pre>
<p>We permit specific error codes to be replaced by PROTOCOL_VIOLATION, not the other way round, iirc.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430874546">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5R5X3CSZVXAB23XHDRTSUAFANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYMLUCYNAAFAU7JZKDRTSUAFA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD3ZDVA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430874546",
"url": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430874546",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece020276dac_5b993ff0894cd95c54438--


From nobody Tue May 26 23:02:13 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 8E16A3A080B for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 23:02:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 1MuIxALYFzpD for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 23:02:11 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 38DCC3A0808 for <quic-issues@ietf.org>; Tue, 26 May 2020 23:02:11 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id AEF58120350 for <quic-issues@ietf.org>; Tue, 26 May 2020 23:02:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590559330; bh=aX44Xa4qeDTdwJsCU/qv22ZCqLQn9VWICmGDewf8Q7Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=t3MaZjZsmqfrGQBQ2Ae1K3IqxRAWP0fsAakKD0voJ3N1+BrnISIlc4kfwJsnA63ic 0kCBIKyQ/HpHr8gxESQeZiEURv4Zz9vpZmK0nlrFEGS/QUodfuMykd35lzNIGvi9Xs lCk35vwOtP0qnYK/KWB/RL4YnMbNppmXU5kkOJkY=
Date: Tue, 26 May 2020 23:02:10 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ4IRYRDM2OPPY5FE543HRWFEVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/review/418878529@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece026269305_4ee43ff1042cd960929349"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/88GhDR4-3Cf2_KkKFDGDTnVyLKM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 06:02:13 -0000

----==_mimepart_5ece026269305_4ee43ff1042cd960929349
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho commented on this pull request.



>  
-* absence of the original_destination_connection_id transport parameter from
-  the server,
+An endpoint MUST treat the following as a connection error of type
+PROTOCOL_VIOLATION:
 
 * absence of the retry_source_connection_id transport parameter from the server
   after receiving a Retry packet,

The simplest change would be to move these two cases that deal with `retry_source_connection_id` above, so that they would be classified as TRANSPORT_PARAMETER_ERROR. Doing so does not forbid endpoints from sending PROTOCOL_VIOLATION, as we have a catch-all clause stating that sending PROTOCOL_VIOLATION in place of other error code is permitted.

If want to be verbose, we could say that _An endpoint MUST treat the following as a connection error of type PROTOCOL_VIOLATION or TRANSPORT_PARAMETER_ERROR: (list the two bullet points covering `retry_source_connection_id`)_.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#discussion_r430875128
----==_mimepart_5ece026269305_4ee43ff1042cd960929349
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@kazuho</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430875128">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-* absence of the original_destination_connection_id transport parameter from
-  the server,
+An endpoint MUST treat the following as a connection error of type
+PROTOCOL_VIOLATION:
 
 * absence of the retry_source_connection_id transport parameter from the server
   after receiving a Retry packet,
</pre>
<p>The simplest change would be to move these two cases that deal with <code>retry_source_connection_id</code> above, so that they would be classified as TRANSPORT_PARAMETER_ERROR. Doing so does not forbid endpoints from sending PROTOCOL_VIOLATION, as we have a catch-all clause stating that sending PROTOCOL_VIOLATION in place of other error code is permitted.</p>
<p>If want to be verbose, we could say that <em>An endpoint MUST treat the following as a connection error of type PROTOCOL_VIOLATION or TRANSPORT_PARAMETER_ERROR: (list the two bullet points covering <code>retry_source_connection_id</code>)</em>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430875128">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4ISVSN7NJI2HMBKMTRTSUGFANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7G36HQBGIT54GPJ7DRTSUGFA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD3ZIQI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430875128",
"url": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430875128",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece026269305_4ee43ff1042cd960929349--


From nobody Tue May 26 23:48:34 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 9466D3A0893 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 23:48:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 RZMUPvRKhitn for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 23:48:32 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4011A3A0899 for <quic-issues@ietf.org>; Tue, 26 May 2020 23:48:32 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id C07AFC60241 for <quic-issues@ietf.org>; Tue, 26 May 2020 23:48:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590562110; bh=IVK2raruH8iNCme5goBcRHkLB/bN5HaGAvxEj1FqR9Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wy2hV3DJ+vLpbCd0DTgV9NvvjCADjqYhrxNMC5Go2+oXdHVhtgsSpB0qjMRdMMkC0 CDZg2FJFAA1U1teIOdPamVf4CSjtYu0UGqvDwOXdCLZ6r0aV0qausR5/zdrfMbKd0z 03b/bhOrDhX3XusF9jtIxDXNs5SQZ2LNkcGWfTps=
Date: Tue, 26 May 2020 23:48:30 -0700
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7IYRVV24VTZVFCPCN43HXD5EVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/634464079@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece0d3eb0070_48683ff2de8cd960742089"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: larseggert
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LgqTZZb0WPIaIylJpJhk-N04aJM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 06:48:34 -0000

----==_mimepart_5ece0d3eb0070_48683ff2de8cd960742089
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

+1 to @mnot's suggestion. If we want to make changes for v, they need to happen now, and they must be in a form that can let us get consensus.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-634464079
----==_mimepart_5ece0d3eb0070_48683ff2de8cd960742089
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>+1 to <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/mnot/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mnot">@mnot</a>'s suggestion. If we want to make changes for v, they need to happen now, and they must be in a form that can let us get consensus.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3529#issuecomment-634464079">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYT6YGMMKCJYMUKGYTRTSZT5ANCNFSM4LOJ4RQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5L6BA62TJZI3EPRVTRTSZT5A5CNFSM4LOJ4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXISOTY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-634464079",
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-634464079",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece0d3eb0070_48683ff2de8cd960742089--


From nobody Tue May 26 23:50:30 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 19AE13A08EB for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 23:50:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 bDsAwfMOAW8A for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 23:50:29 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C71F93A0899 for <quic-issues@ietf.org>; Tue, 26 May 2020 23:50:28 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 581E26E083B for <quic-issues@ietf.org>; Tue, 26 May 2020 23:50:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590562227; bh=zlQAwk574mKMGc24MtuEOoS2k4hZM5Ulaw9uvLz1sXM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=YZKQlzfo9U0ttyoq+BHZswYXQphNZcw5d77+7yHLa1loIWnJM5njUgb66QhiIMz/j vVDSUmYhfHmcfupAdts3e4LGEErONJ4SetTXHiNxJn7MdYuwA5AhFB3zn7gUBGpH1e Nz4KGhLGKpY2n6d8+kG35pgiLTYKPDE1eOG7uBUc=
Date: Tue, 26 May 2020 23:50:27 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZQTK2Z3OUNTX3RMDF43HXLHEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/634464816@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece0db346806_488a3fbe80acd96410974b8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vD8cJNEHtHDscJ77awwKQDvJ1Ug>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 06:50:30 -0000

----==_mimepart_5ece0db346806_488a3fbe80acd96410974b8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree with @kazuho in that #3694 was good (and I don't want to revert it).  I also don't think we need anything more than an appropriately generic error code for the stated problem, so I believe that that PR was adequate.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634464816
----==_mimepart_5ece0db346806_488a3fbe80acd96410974b8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I agree with <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/kazuho/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a> in that <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624436695" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3694" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3694/hovercard" href="https://github.com/quicwg/base-drafts/pull/3694">#3694</a> was good (and I don't want to revert it).  I also don't think we need anything more than an appropriately generic error code for the stated problem, so I believe that that PR was adequate.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634464816">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK744ALJYB3HISGFOWDRTSZ3HANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4CBUBMWANLFRX24RDRTSZ3HA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXISUMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634464816",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-634464816",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece0db346806_488a3fbe80acd96410974b8--


From nobody Tue May 26 23:51:40 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 A5D023A0900 for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 23:51:38 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZHpnUL-eLWKB for <quic-issues@ietfa.amsl.com>; Tue, 26 May 2020 23:51:37 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6EFD43A08EB for <quic-issues@ietf.org>; Tue, 26 May 2020 23:51:37 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id C8B318C0D74 for <quic-issues@ietf.org>; Tue, 26 May 2020 23:51:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590562296; bh=GeWe3WqsCjFk5KEcw329Xx5mlnQ7QYOTscqq8zV1gEQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dDO7IqCgyh90BWxLBchlmiT04rDUdAZjT9FuwbgQf7ePS75ce18cwektXmDYXPCjT qlWLUfn9qBvqyjXcrAFadBzUNrUW7KzdfuiW2ymG7uztxVh90DXwPr0jbK2+oScPXB Wc2IF/HFz8qFtYR9g/CjJEuybLdODqFxmU5qnmyU=
Date: Tue, 26 May 2020 23:51:36 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3TOOXLJEA54H7BEOV43HXPREVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/review/418901659@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece0df8b9799_789c3ff8362cd9686452b3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WAs-o7TwS3wSR_HHF_83x3IMybI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 06:51:39 -0000

----==_mimepart_5ece0df8b9799_789c3ff8362cd9686452b3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



>  
-* absence of the original_destination_connection_id transport parameter from
-  the server,
+An endpoint MUST treat the following as a connection error of type
+PROTOCOL_VIOLATION:
 
 * absence of the retry_source_connection_id transport parameter from the server
   after receiving a Retry packet,

WFM

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#discussion_r430893414
----==_mimepart_5ece0df8b9799_789c3ff8362cd9686452b3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430893414">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-* absence of the original_destination_connection_id transport parameter from
-  the server,
+An endpoint MUST treat the following as a connection error of type
+PROTOCOL_VIOLATION:
 
 * absence of the retry_source_connection_id transport parameter from the server
   after receiving a Retry packet,
</pre>
<p>WFM</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r430893414">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ZIBITIQG7UXNDYHLRTSZ7RANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYOVM24VHQUCRMLXM3RTSZ7RA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD365GY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430893414",
"url": "https://github.com/quicwg/base-drafts/pull/3691#discussion_r430893414",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece0df8b9799_789c3ff8362cd9686452b3--


From nobody Wed May 27 00:05:25 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 79ED23A0A66 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:05:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 o4c5CSKNQ2es for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:05:16 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 22B3B3A0A82 for <quic-issues@ietf.org>; Wed, 27 May 2020 00:05:16 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 6D9448C0C59 for <quic-issues@ietf.org>; Wed, 27 May 2020 00:05:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590563115; bh=2YPcyLVvfwxNEubIl6F/im1ZJHPGTvgcJCjWJ88V3BA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fLwm/M4z527pwBzIrS4ooCCu86CW91Cdpuk1nWSxXx7y2jQ2i6P45ggXrbrz1R/W3 rOruurYBpsf7vQUcTn5f2HhhpnQSfMxTqrS+UpFYs51w7uPbSOTnM84Q082TTNQo6L TacWpEKFYzxehkS9GNLGsC1dgUtNkGpmwNWesouA=
Date: Wed, 27 May 2020 00:05:15 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ3JMRGVSS3C52LEC543HZCXEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418909333@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece112b5d8c2_1c73f9a2a2cd9649805af"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ciU7vGhHbsdOecF2SmDXU2axn7w>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 07:05:24 -0000

----==_mimepart_5ece112b5d8c2_1c73f9a2a2cd9649805af
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



>  The endpoint SHOULD ignore all ICMP messages that fail validation.
 
 An endpoint MUST NOT increase PMTU based on ICMP messages; see Section 3, clause
 6 of {{!DPLPMTUD}}.  Any reduction in the QUIC maximum packet size in response
 to ICMP messages MAY be provisional until QUIC's loss detection algorithm
 determines that the quoted packet has actually been lost.
 
+### PMTUD Probes with Handshake packets

OK - Can we say that explicitly? 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430899311
----==_mimepart_5ece112b5d8c2_1c73f9a2a2cd9649805af
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430899311">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  The endpoint SHOULD ignore all ICMP messages that fail validation.
 
 An endpoint MUST NOT increase PMTU based on ICMP messages; see Section 3, clause
 6 of {{!DPLPMTUD}}.  Any reduction in the QUIC maximum packet size in response
 to ICMP messages MAY be provisional until QUIC&#39;s loss detection algorithm
 determines that the quoted packet has actually been lost.
 
+### PMTUD Probes with Handshake packets
</pre>
<p>OK - Can we say that explicitly?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430899311">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7UHECTN2ZMXGKWDXDRTS3SXANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6Q5NGDYVRBSE3YON3RTS3SXA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD4AZFI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430899311",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430899311",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece112b5d8c2_1c73f9a2a2cd9649805af--


From nobody Wed May 27 00:11:35 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 3CFA53A0A4A for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:11:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 DqAs2oxK5K9N for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:11:32 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 726AB3A0A44 for <quic-issues@ietf.org>; Wed, 27 May 2020 00:11:32 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 6F47B6E039E for <quic-issues@ietf.org>; Wed, 27 May 2020 00:11:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590563491; bh=p7JtYxc4/X5WjwX0BzjFnPuR8hn17YTBolNfBHjfYDo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=octqLIT1akGfFSTR4fPPchpQXm9SzUncjlS7nwQdbj7krRv9aA/Vd/O2v8adCFh/2 nDqz0fgT6RwRb+0s3J0GwD8+GEOE9NBDb5kTCB25hMd3uxBKnQWshj8Fl12X3iiaHq 7BXzuhWm2Wwue8hewUEe45npi+d7Wm1LESqLF3SQ=
Date: Wed, 27 May 2020 00:11:31 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7XJUKUZBR4QAKB3AV43HZ2HEVBNHHCKIHBQM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3684/review/418913105@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3684@github.com>
References: <quicwg/base-drafts/pull/3684@github.com>
Subject: Re: [quicwg/base-drafts] Invariant independent (#3684)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece12a3612b0_48ad3ff2de8cd96011807c7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qv5sWCRf4WDcj9de0RUukhP-waQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 07:11:34 -0000

----==_mimepart_5ece12a3612b0_48ad3ff2de8cd96011807c7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



>  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.

And the points I raised were not "problems" - I will take them as things that I think need to be mentioned in the transport ID. I'll check that next time I review.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3684#discussion_r430902096
----==_mimepart_5ece12a3612b0_48ad3ff2de8cd96011807c7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3684#discussion_r430902096">draft-ietf-quic-invariants.md</a>:</p>
<pre style='color:#555'>&gt;  # QUIC Packet Headers
 
-A QUIC packet is the content of the UDP datagrams exchanged by QUIC endpoints.
-This document describes the contents of those datagrams.
+QUIC endpoints exchange UDP datagrams that contain one or more QUIC packets.
+This section describes the invariant characteristics of a QUIC packet.  A
+version of QUIC could permit multiple QUIC packets in a single UDP datagram, but
+the invariant properties only describe the first packet in a datagram.
</pre>
<p>And the points I raised were not "problems" - I will take them as things that I think need to be mentioned in the transport ID. I'll check that next time I review.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3684#discussion_r430902096">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3EIZZOM2WYNFXRWPLRTS4KHANCNFSM4NHNPZHA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7KDWCYG35MZRZMIJTRTS4KHA5CNFSM4NHNPZHKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD4BWUI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3684#discussion_r430902096",
"url": "https://github.com/quicwg/base-drafts/pull/3684#discussion_r430902096",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece12a3612b0_48ad3ff2de8cd96011807c7--


From nobody Wed May 27 00:19:50 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 BD8633A0A82 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:19:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 5MRX_der6ICe for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:19:46 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8F5C43A0A7E for <quic-issues@ietf.org>; Wed, 27 May 2020 00:19:46 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id C7CBDC60211 for <quic-issues@ietf.org>; Wed, 27 May 2020 00:19:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590563985; bh=NE+MZ+JB2JSxcOFMtHcCYIcOEfpzUj8YSdJRV5zP7hU=; h=Date:From:To:Subject:From; b=fMHyr7syrjy3q5sAB5jupjShPnyXEZ/ydjXUtaunqwxPPf5mRSG571T5XAbygLHrE nJKXxNmzyMd/PEyHDDrGUnNM5Udseg24Zpj5DM5giZx6Fz3qzVuzjYRBsmWSA1ds9x q9u2EtmVragX5mu/F3oF7F++0OWsn3epxr75iKvw=
Date: Wed, 27 May 2020 00:19:45 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dplpmtud-merge/1a9c86-cbfb4d@github.com>
Subject: [quicwg/base-drafts] cbfb4d: Use long header packets generically and explain why
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/YcpKmv7k4e1LutQQ5eU7BOHp_cQ>
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: Wed, 27 May 2020 07:19:48 -0000

  Branch: refs/heads/dplpmtud-merge
  Home:   https://github.com/quicwg/base-drafts
  Commit: cbfb4d1d7e5edaca5829327d82c3f983c5c32cd8
      https://github.com/quicwg/base-drafts/commit/cbfb4d1d7e5edaca5829327d82c3f983c5c32cd8
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Use long header packets generically and explain why



From nobody Wed May 27 00:19:58 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 7DEBB3A0A67 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:19:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 qcmqyaA9vQHN for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:19:56 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0BEFF3A0A6C for <quic-issues@ietf.org>; Wed, 27 May 2020 00:19:56 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id E9C5D661160 for <quic-issues@ietf.org>; Wed, 27 May 2020 00:19:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590563994; bh=DJK3QVPEX40D0AcI99/W/eAkx2S4V3IDkRomiryXORA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oBGpE3xGpSuFIiZFCs7LGAaJcchXlQR/7LZWzE3/evqzF9io4PMu7EnhcLpWcpfY7 v9FNZ+sPtf+ga4g1DKtBBUkE7yy/5Y5ohuchDbpI8sfTYIRTQ68I1pYv6sm6Mkb6Xk XcwNRj5F1cld/l67pm2a0tn3Vr66ubQQsDsAZl64=
Date: Wed, 27 May 2020 00:19:54 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/push/5133997445@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece149ada63f_7713f850b2cd95c67555a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bu-x7pmJR_Ix8zr8mrMfJ_m2xUg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 07:19:58 -0000

----==_mimepart_5ece149ada63f_7713f850b2cd95c67555a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

cbfb4d1d7e5edaca5829327d82c3f983c5c32cd8  Use long header packets generically and explain why


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702/files/1a9c864eef75fa0e2d9dd78db7c714dae9b84625..cbfb4d1d7e5edaca5829327d82c3f983c5c32cd8

----==_mimepart_5ece149ada63f_7713f850b2cd95c67555a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/cbfb4d1d7e5edaca5829327d82c3f983c5c32cd8">cbfb4d1</a>  Use long header packets generically and explain why</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3702/files/1a9c864eef75fa0e2d9dd78db7c714dae9b84625..cbfb4d1d7e5edaca5829327d82c3f983c5c32cd8">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4XVPJB5IBRQNTQXXDRTS5JVANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZUVVCJ6HA3OHEWXM3RTS5JVA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDGNJTGUZDMM2QOVZWQIZVGEZTGOJZG42DINI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702/files/1a9c864eef75fa0e2d9dd78db7c714dae9b84625..cbfb4d1d7e5edaca5829327d82c3f983c5c32cd8",
"url": "https://github.com/quicwg/base-drafts/pull/3702/files/1a9c864eef75fa0e2d9dd78db7c714dae9b84625..cbfb4d1d7e5edaca5829327d82c3f983c5c32cd8",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ece149ada63f_7713f850b2cd95c67555a--


From nobody Wed May 27 00:20:16 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 4C4523A0A6C for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:20:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 vh5IK799RvYh for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:20:14 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 123223A0A67 for <quic-issues@ietf.org>; Wed, 27 May 2020 00:20:14 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 9D3546A0083 for <quic-issues@ietf.org>; Wed, 27 May 2020 00:20:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590564012; bh=BQwCy9BnQgyB4IHOPXAlujYZ4uI50FtMRpvrkyMdQsc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LITD14kTObwIy5X52gBG/iWBmAwCWGfnohixczYfUw0vXIrsOw/PfbQIIkGPZUUO1 mFN+V5kGUvCt5Stwyccy8Cdfsb3t4j1HD+JH6Zj/FqW7mkd3sw1DD/uz/T4JrKSd1I T/Myvcf+TJ1tK5MyFXi3z8kmYjagDALJNAS8NiLU=
Date: Wed, 27 May 2020 00:20:12 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6NW2ZA7JSRCU2WQOF43H22ZEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/418918732@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece14ac8e1f4_72a3f850b2cd95c142647f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AkBeZVX3RsPSZeaQRA2uXcycUTo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 07:20:15 -0000

----==_mimepart_5ece14ac8e1f4_72a3f850b2cd95c142647f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



>  The endpoint SHOULD ignore all ICMP messages that fail validation.
 
 An endpoint MUST NOT increase PMTU based on ICMP messages; see Section 3, clause
 6 of {{!DPLPMTUD}}.  Any reduction in the QUIC maximum packet size in response
 to ICMP messages MAY be provisional until QUIC's loss detection algorithm
 determines that the quoted packet has actually been lost.
 
+### PMTUD Probes with Handshake packets

Please take a look at #3702 for a proposed tweak.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430906382
----==_mimepart_5ece14ac8e1f4_72a3f850b2cd95c142647f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430906382">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  The endpoint SHOULD ignore all ICMP messages that fail validation.
 
 An endpoint MUST NOT increase PMTU based on ICMP messages; see Section 3, clause
 6 of {{!DPLPMTUD}}.  Any reduction in the QUIC maximum packet size in response
 to ICMP messages MAY be provisional until QUIC&#39;s loss detection algorithm
 determines that the quoted packet has actually been lost.
 
+### PMTUD Probes with Handshake packets
</pre>
<p>Please take a look at <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="625286625" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3702" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3702/hovercard" href="https://github.com/quicwg/base-drafts/pull/3702">#3702</a> for a proposed tweak.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430906382">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3U4NREJBDRDZCR6YLRTS5KZANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZSV36WSQQ33WOGHXTRTS5KZA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD4DCTA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430906382",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430906382",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece14ac8e1f4_72a3f850b2cd95c142647f--


From nobody Wed May 27 00:21:14 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 034163A0A7D for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:21:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 1GbXwyh_AdsQ for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:21:11 -0700 (PDT)
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 AB78B3A0A6C for <quic-issues@ietf.org>; Wed, 27 May 2020 00:21:11 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 2BC61282917 for <quic-issues@ietf.org>; Wed, 27 May 2020 00:21:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590564070; bh=2wHFHi0DKLo2/P/PD8YwXPfP8w8vtfM52mgAVXm67IM=; h=Date:From:To:Subject:From; b=NLp556U4Nxw8e9hu/O+x7aWc5NmN3b7kOF0cUWJI4ILa1tzue/Epxmi2oYxR+b3Xb sge59myXX8d8kbHE0Q6FpZpFmGGJ7mUSWU8UimkS2WinUjChZVegJrBoBSyIIFYfFQ Uk7SOOPHzmMnkX4NzaMAY27NLfLjKfaVdM7e+iDo=
Date: Wed, 27 May 2020 00:21:10 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1cba82-0528e4@github.com>
Subject: [quicwg/base-drafts] 0528e4: Script updating gh-pages from cbfb4d1d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ECHyL3JC0rtyjdFjxawDPr5XJjM>
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: Wed, 27 May 2020 07:21:13 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0528e4f0f018ec2d411202d6d198297c39a7d65c
      https://github.com/quicwg/base-drafts/commit/0528e4f0f018ec2d411202d6d198297c39a7d65c
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M dplpmtud-merge/draft-ietf-quic-transport.html
    M dplpmtud-merge/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from cbfb4d1d. [ci skip]



From nobody Wed May 27 00:21:27 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 A6FC03A0A6C for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:21:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 U26G5_MrBQEi for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:21:24 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9AE973A0A7D for <quic-issues@ietf.org>; Wed, 27 May 2020 00:21:24 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 8F28CA0844 for <quic-issues@ietf.org>; Wed, 27 May 2020 00:21:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590564083; bh=j8XOGmwTmKocL3Ljm7q3ON/mxoj4rbYgogHZvd+E1PM=; h=Date:From:To:Subject:From; b=CsrgOkue3O14xh5Bb5eX55SNeiJ0d5mfcgtwzNqRwta5MKTpyRRIFBjit8LJiTxUx 8e/f4mRpu2zv2+jsKXJShVQcuY6yViqsPDHcgyEI7jDmMgst2yPBD2TTC2baUlBzYf 0McG56q1iBrvA0zA/0R3m1kqm1/sMfxbeBR89sA4=
Date: Wed, 27 May 2020 00:21:23 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/0528e4-af6580@github.com>
Subject: [quicwg/base-drafts] af6580: Script updating archive at 2020-05-27T07:21:03Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/z-s7nHPYaiPpTWKfKvT9cVvOnwE>
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: Wed, 27 May 2020 07:21:26 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: af65802f481a80cd0c29c31823b59baff7905a86
      https://github.com/quicwg/base-drafts/commit/af65802f481a80cd0c29c31823b59baff7905a86
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-27T07:21:03Z. [ci skip]



From nobody Wed May 27 00:43:50 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 331C33A0AF0 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:43:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.553
X-Spam-Level: 
X-Spam-Status: No, score=-1.553 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, 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 wxPmO2xZJ3LK for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:43:47 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8C9F43A0AE7 for <quic-issues@ietf.org>; Wed, 27 May 2020 00:43:47 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id B26466A0DF3 for <quic-issues@ietf.org>; Wed, 27 May 2020 00:43:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590565426; bh=eCpl4qjC9QasOVDDbDUInOY0p6xfZkclIkol35DxJio=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Jgv+hY/dLDpJR/9wKkya0k5ayjKDve6LEw7+lfyCKx+1fao5/iMHmbhp32qM3Z6dY SeTQfRDFptZ9KGKp+nbPeUmnhZXhtBzN5Wnio6fupog6y+F9BDioULj3hWah1kk9G4 4szEQpIhh+SIjwAjU/7ODb+dNRWnoAVFoby8ar0c=
Date: Wed, 27 May 2020 00:43:46 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5134103994@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece1a32a08b9_3a113fa97c2cd96c17473a9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/gEnsf-4EcOpHwGF2khlGj6e8_3A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 07:43:49 -0000

----==_mimepart_5ece1a32a08b9_3a113fa97c2cd96c17473a9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/acda596362122e5239713c1d3d24531f20d6ef5a..0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc

----==_mimepart_5ece1a32a08b9_3a113fa97c2cd96c17473a9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc">0d82ddc</a>  Update draft-ietf-quic-transport.md
</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/acda596362122e5239713c1d3d24531f20d6ef5a..0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYHUYZUX37R7NUKDEDRTTADFANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4R2XOANDMSDUOLMA3RTTADFA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZTIMJQGM4TSNA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/acda596362122e5239713c1d3d24531f20d6ef5a..0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/acda596362122e5239713c1d3d24531f20d6ef5a..0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ece1a32a08b9_3a113fa97c2cd96c17473a9--


From nobody Wed May 27 00:49:00 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 D39DE3A0AF8 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:48:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 71XhTRRnPURI for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 00:48:57 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9FBF13A0AF5 for <quic-issues@ietf.org>; Wed, 27 May 2020 00:48:57 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 139AA2C1153 for <quic-issues@ietf.org>; Wed, 27 May 2020 00:48:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590565736; bh=yR7ksTcwfj1c9JZaxMOwkk2yNK1XKU+YTnlGFZ/BTks=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=N1nXo/OW0udzcnzGnOD4EYT9orVuh3sWxHBuD2+JPt70p14EwBa/wVw3UbuJA6mBM p7pP3rPZ8sKWqglWyHczNTPN49ZxntNnXvnMkGQZ1x4GVMNR0SB74QAJJCIKz+lQhq b5b6P/YUpiw6gqXIV++QGOxaTQT94bc+lKLm5Qsw=
Date: Wed, 27 May 2020 00:48:56 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/push/5134127881@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece1b682ed8_1ff53fea4a2cd96c2500f3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3OFn2Oivc9zMXLfXkYnmQ2HUZsY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 07:48:59 -0000

----==_mimepart_5ece1b682ed8_1ff53fea4a2cd96c2500f3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair pushed 1 commit.

4692d921098e16403fb2406aca767a5d1475520b  Update draft-ietf-quic-transport.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693/files/0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc..4692d921098e16403fb2406aca767a5d1475520b

----==_mimepart_5ece1b682ed8_1ff53fea4a2cd96c2500f3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/gorryfair" class="user-mention">@gorryfair</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/4692d921098e16403fb2406aca767a5d1475520b">4692d92</a>  Update draft-ietf-quic-transport.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3693/files/0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc..4692d921098e16403fb2406aca767a5d1475520b">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2NV42JBNVXDX6WI4DRTTAWRANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5DYZROF2DEX4BAR3TRTTAWRA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDENZVGMYTMNCQOVZWQIZVGEZTIMJSG44DQMI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693/files/0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc..4692d921098e16403fb2406aca767a5d1475520b",
"url": "https://github.com/quicwg/base-drafts/pull/3693/files/0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc..4692d921098e16403fb2406aca767a5d1475520b",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ece1b682ed8_1ff53fea4a2cd96c2500f3--


From nobody Wed May 27 02:24:21 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 45A4F3A0BF5 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 02:24:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 284GHgJXTJUN for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 02:24:17 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1637B3A0BF0 for <quic-issues@ietf.org>; Wed, 27 May 2020 02:24:17 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 9DDE31C0D3E for <quic-issues@ietf.org>; Wed, 27 May 2020 02:24:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590571455; bh=BgPjZNaHWSjDHeSwdyXCOqgXgryC+JkenZ15YkvkStE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bBoCsf6/K0w1cPxxNRdVuTUZ8Hev10cuVbdTJ6H7Iirb9yCQjHmCongjidfGqSTUc Fj+eH1k6GP27m7T4PuAgwm645oKi6+OPcOnOLFnzP2cerB/5s7BfwywWdHD2jYbfY1 PdsrEZNUiNy5XdhImSLm59MgHmiZ1kaqSRpLHlGM=
Date: Wed, 27 May 2020 02:24:15 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4XFQAVYUWBEYDXQM543IJL7EVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/418950412@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece31bf8d177_75683fa5f5ccd9603476c7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/w3IK0yrsgXDdlmLBJGknv5dk8Aw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 09:24:19 -0000

----==_mimepart_5ece31bf8d177_75683fa5f5ccd9603476c7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.

This reflow of the text seems clear to me, and seems nearly ready. I have carefully checked the text and I think this covers all issues and responds to all discussion, thanks. There are a small number of NiTs and one or two small questions remain.

>  
-The considerations for processing ICMP messages in the previous section also
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has
+established a 1-RTT key.

I think we agreed to remove the 1-RTT clause (as not needed)?

> -
-One way to construct a probe for the path MTU is to coalesce (see
-{{packet-coalesce}}) a Handshake packet ({{packet-handshake}}) with a short
-header packet in a single UDP datagram.  If the UDP datagram reaches the
-endpoint, the Handshake packet will be ignored, but the short header packet will
-be acknowledged.  If the UDP datagram causes an ICMP message to be sent, the
-first part of the datagram will be quoted in that message.  If the source
-connection ID is within the quoted portion of the UDP datagram, that could be
-used for routing.
+packets are likely to require that the connection ID be included in
+PMTUD/DPLPMTUD probe packets to route any resulting ICMP messages
+({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a

Re-reading this: Is this only for PMTUD? 

The text seems to describe a probe packet that is ack-eliciting, which may mean it can be used with PLPMTUD?
Should we say PMTUD/DPLPMTUD

>  
-The considerations for processing ICMP messages in the previous section also
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has
+established a 1-RTT key.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame therefore implement "Probing using padding data", as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current

Please check: This may leave data in probe packets slightly under-described, and I think more may need to be said:

The transmission of data in probe packets in discussed in
section 4.1 of {{!DPLPMTUD}}. Probe packets that use a PADDING frame or that coalesce packets with no data implement DPLPMTUD with "Probing using padding data".

> @@ -3797,19 +3797,24 @@ later time in the connection.
 The QUIC packet size includes the QUIC header and protected payload, but not the
 UDP or IP header.
 
+QUIC depends upon a minimum packet size of at least 1280 bytes.  This is the

The protocol layer relating to "packet size" needs clarification - is it an IP packet or an IP payload, or QUIC packet?

>  A client MUST expand the payload of all UDP datagrams carrying Initial packets
 to at least 1200 bytes, by adding PADDING frames to the Initial packet or by
 coalescing the Initial packet; see {{packet-coalesce}}.  Sending a UDP datagram
 of this size ensures that the network path from the client to the server
-supports a reasonable Maximum Transmission Unit (MTU).  Padding datagrams also
-helps reduce the amplitude of amplification attacks caused by server responses
-toward an unverified client address; see {{address-validation}}.
+supports a reasonable Path Maximum Transmission Unit (PMTU).  Padding datagrams

/reasonable/minimum size required by QUIC/

>  A client MUST expand the payload of all UDP datagrams carrying Initial packets
 to at least 1200 bytes, by adding PADDING frames to the Initial packet or by
 coalescing the Initial packet; see {{packet-coalesce}}.  Sending a UDP datagram
 of this size ensures that the network path from the client to the server
-supports a reasonable Maximum Transmission Unit (MTU).  Padding datagrams also
-helps reduce the amplitude of amplification attacks caused by server responses
-toward an unverified client address; see {{address-validation}}.
+supports a reasonable Path Maximum Transmission Unit (PMTU).  Padding datagrams

... If coalescing also has this property, should we say:
/Passing datagrams/Using the minimum packet size/


> -used for routing.
+packets are likely to require that the connection ID be included in
+PMTUD/DPLPMTUD probe packets to route any resulting ICMP messages
+({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+

used for routing ... add: /and for validation of an ICMP message./

> +({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+
+Note:
+: The purpose of using a packet with a long header is only to ensure that the
+  quoted packet contained in the ICMP message contains a Source Connection ID

/SCID/ may already be defined if you prefer.

> +packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+
+Note:
+: The purpose of using a packet with a long header is only to ensure that the
+  quoted packet contained in the ICMP message contains a Source Connection ID
+  field that can be use for routing.  This packet does not need to be a valid

...only for routing? Does this help with validation (the editor will know best).

> -first part of the datagram will be quoted in that message.  If the source
-connection ID is within the quoted portion of the UDP datagram, that could be
-used for routing.
+packets are likely to require that the connection ID be included in
+PMTUD/DPLPMTUD probe packets to route any resulting ICMP messages
+({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of

I think these may already be defined, you could use them if toy prefer: /CID/ or /SCID/.

> +DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.
+
+
+### Validating the QUIC Path with DPLPMTUD
+
+QUIC provides an acknowledged PL, therefore a sender does not implement the
+DPLPMTUD CONFIRMATION_TIMER while in the SEARCH_COMPLETE state.
+
+
+### Handling of ICMP Messages by DPLPMTUD
+
+An endpoint using DPLPMTUD requires the validation of any received PTB message
+before using the PTB information, as defined in Section 4.6 of {{!DPLPMTUD}}.
+In addition to UDP Port validation, QUIC validates an ICMP message by using
+other PL information (e.g., validation of connection identifiers (CIDs) in the

I think /CID/ is already defined at this point in the ID.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-418950412
----==_mimepart_5ece31bf8d177_75683fa5f5ccd9603476c7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<p>This reflow of the text seems clear to me, and seems nearly ready. I have carefully checked the text and I think this covers all issues and responds to all discussion, thanks. There are a small number of NiTs and one or two small questions remain.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r430931408">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-The considerations for processing ICMP messages in the previous section also
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has
+established a 1-RTT key.
</pre>
<p>I think we agreed to remove the 1-RTT clause (as not needed)?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r430933519">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -
-One way to construct a probe for the path MTU is to coalesce (see
-{{packet-coalesce}}) a Handshake packet ({{packet-handshake}}) with a short
-header packet in a single UDP datagram.  If the UDP datagram reaches the
-endpoint, the Handshake packet will be ignored, but the short header packet will
-be acknowledged.  If the UDP datagram causes an ICMP message to be sent, the
-first part of the datagram will be quoted in that message.  If the source
-connection ID is within the quoted portion of the UDP datagram, that could be
-used for routing.
+packets are likely to require that the connection ID be included in
+PMTUD/DPLPMTUD probe packets to route any resulting ICMP messages
+({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
</pre>
<p>Re-reading this: Is this only for PMTUD?</p>
<p>The text seems to describe a probe packet that is ack-eliciting, which may mean it can be used with PLPMTUD?<br>
Should we say PMTUD/DPLPMTUD</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r430939823">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-The considerations for processing ICMP messages in the previous section also
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has
+established a 1-RTT key.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame therefore implement &quot;Probing using padding data&quot;, as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current
</pre>
<p>Please check: This may leave data in probe packets slightly under-described, and I think more may need to be said:</p>
<p>The transmission of data in probe packets in discussed in<br>
section 4.1 of {{!DPLPMTUD}}. Probe packets that use a PADDING frame or that coalesce packets with no data implement DPLPMTUD with "Probing using padding data".</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r430943870">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3797,19 +3797,24 @@ later time in the connection.
 The QUIC packet size includes the QUIC header and protected payload, but not the
 UDP or IP header.
 
+QUIC depends upon a minimum packet size of at least 1280 bytes.  This is the
</pre>
<p>The protocol layer relating to "packet size" needs clarification - is it an IP packet or an IP payload, or QUIC packet?</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r430945291">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  A client MUST expand the payload of all UDP datagrams carrying Initial packets
 to at least 1200 bytes, by adding PADDING frames to the Initial packet or by
 coalescing the Initial packet; see {{packet-coalesce}}.  Sending a UDP datagram
 of this size ensures that the network path from the client to the server
-supports a reasonable Maximum Transmission Unit (MTU).  Padding datagrams also
-helps reduce the amplitude of amplification attacks caused by server responses
-toward an unverified client address; see {{address-validation}}.
+supports a reasonable Path Maximum Transmission Unit (PMTU).  Padding datagrams
</pre>
<p>/reasonable/minimum size required by QUIC/</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r430946728">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  A client MUST expand the payload of all UDP datagrams carrying Initial packets
 to at least 1200 bytes, by adding PADDING frames to the Initial packet or by
 coalescing the Initial packet; see {{packet-coalesce}}.  Sending a UDP datagram
 of this size ensures that the network path from the client to the server
-supports a reasonable Maximum Transmission Unit (MTU).  Padding datagrams also
-helps reduce the amplitude of amplification attacks caused by server responses
-toward an unverified client address; see {{address-validation}}.
+supports a reasonable Path Maximum Transmission Unit (PMTU).  Padding datagrams
</pre>
<p>... If coalescing also has this property, should we say:<br>
/Passing datagrams/Using the minimum packet size/</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r430970096">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -used for routing.
+packets are likely to require that the connection ID be included in
+PMTUD/DPLPMTUD probe packets to route any resulting ICMP messages
+({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+
</pre>
<p>used for routing ... add: /and for validation of an ICMP message./</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r430970284">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+
+Note:
+: The purpose of using a packet with a long header is only to ensure that the
+  quoted packet contained in the ICMP message contains a Source Connection ID
</pre>
<p>/SCID/ may already be defined if you prefer.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r430971213">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+
+Note:
+: The purpose of using a packet with a long header is only to ensure that the
+  quoted packet contained in the ICMP message contains a Source Connection ID
+  field that can be use for routing.  This packet does not need to be a valid
</pre>
<p>...only for routing? Does this help with validation (the editor will know best).</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r430971264">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -first part of the datagram will be quoted in that message.  If the source
-connection ID is within the quoted portion of the UDP datagram, that could be
-used for routing.
+packets are likely to require that the connection ID be included in
+PMTUD/DPLPMTUD probe packets to route any resulting ICMP messages
+({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
</pre>
<p>I think these may already be defined, you could use them if toy prefer: /CID/ or /SCID/.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r430971712">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.
+
+
+### Validating the QUIC Path with DPLPMTUD
+
+QUIC provides an acknowledged PL, therefore a sender does not implement the
+DPLPMTUD CONFIRMATION_TIMER while in the SEARCH_COMPLETE state.
+
+
+### Handling of ICMP Messages by DPLPMTUD
+
+An endpoint using DPLPMTUD requires the validation of any received PTB message
+before using the PTB information, as defined in Section 4.6 of {{!DPLPMTUD}}.
+In addition to UDP Port validation, QUIC validates an ICMP message by using
+other PL information (e.g., validation of connection identifiers (CIDs) in the
</pre>
<p>I think /CID/ is already defined at this point in the ID.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-418950412">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6AFJ2X36FY7JKY3NTRTTL37ANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3FDTJBO3YCF6EZRLDRTTL37A5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD4K2DA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-418950412",
"url": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-418950412",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece31bf8d177_75683fa5f5ccd9603476c7--


From nobody Wed May 27 02:31:52 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 A13F03A0C05 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 02:31:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 o5MG7B2Frmb1 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 02:31:48 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 60A413A0C03 for <quic-issues@ietf.org>; Wed, 27 May 2020 02:31:48 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 8046D8C0F72 for <quic-issues@ietf.org>; Wed, 27 May 2020 02:31:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590571907; bh=7M8a2kb6e8OweivOSr5WDtIsoesBJSZ3Wml+3Csw950=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Iap7V/f3L/R8iDFTd9R81GkKl9ZQAPeV/QgXuo+7he77A2Ush1AW+bFnHDdOSR5d6 uRoEk3LCI5gpaT2/VZAu89EubuUDbXwC+U5HBqgnni2aSojw2RFlILMMLxUh48QH1x B1EqW17qGedLr0naWRwtXXLS6B8rH5XfSlRG+NnM=
Date: Wed, 27 May 2020 02:31:47 -0700
From: Bob Briscoe <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYCRBEBVWX6TMB37V543IKIHEVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/634544299@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece338370fb8_2dae3fc6d60cd9603662f4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: bbriscoe
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HRU5z1l-MwtKbJpNotuv8bTR6so>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 09:31:50 -0000

----==_mimepart_5ece338370fb8_2dae3fc6d60cd9603662f4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


To be clear, when I said that having a default policy is not a matter of 
interoperability, that's only strictly true if QUIC supports something 
like draft-iyengar-quic-delayed-ack for the sender to ask the receiver 
to use a certain policy.


Bob

-- 
________________________________________________________________
Bob Briscoe                               http://bobbriscoe.net/



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-634544299
----==_mimepart_5ece338370fb8_2dae3fc6d60cd9603662f4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<br>
To be clear, when I said that having a default policy is not a matter of <br>
interoperability, that&#39;s only strictly true if QUIC supports something <br>
like draft-iyengar-quic-delayed-ack for the sender to ask the receiver <br>
to use a certain policy.<br>
<br>
<br>
Bob<br>
<br>
-- <br>
________________________________________________________________<br>
Bob Briscoe                               http://bobbriscoe.net/<br>
<br>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3529#issuecomment-634544299">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7BRIMGKDQEHBFOBQ3RTTMYHANCNFSM4LOJ4RQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ3PFCBHKO7GWDMXS3RTTMYHA5CNFSM4LOJ4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXJGBKY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-634544299",
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-634544299",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece338370fb8_2dae3fc6d60cd9603662f4--


From nobody Wed May 27 02:37:05 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 8D5FC3A0C0E for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 02:37:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 sPy8KhDZVPTh for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 02:37:02 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2F1E53A0C0D for <quic-issues@ietf.org>; Wed, 27 May 2020 02:37:02 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 6FEC2A050A for <quic-issues@ietf.org>; Wed, 27 May 2020 02:37:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590572221; bh=F8DZ/LXFYsDRCmVwnyHDQxwzosnbA+QLyPad8JGpBUc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ANI8oTNDGUulFh7FLQr3bObu0mih7GQpEcquQS3M/AjMQbpj1Wkz7eSHxzq1YMM67 Iu4dwH4oDulxsSnGXSqvDIpHioBF6kAhl0BxU++LeNFG3QTm4V7bNHWRhguBB6p7lE 7kp1Yf7aFIk1u9YQuUMGCsaz2+aVaqi00UeT+yCk=
Date: Wed, 27 May 2020 02:37:01 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6R2FP4CUL6M3XUY7543IK33EVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/review/419022892@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece34bd60b1d_470e3fd86e0cd95c62029c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dVWl8AYhDluwVvgSdbGOksLcbas>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 09:37:04 -0000

----==_mimepart_5ece34bd60b1d_470e3fd86e0cd95c62029c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



> +state when the QUIC connection handshake has been completed and
+the endpoint has established a 1-RTT key.

This seems like the best direction to me - I leave to you whether (got 1-RTT keys) needs to be mentioned as not, and included that in your PR in case you wish to edit (or not).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#discussion_r430987519
----==_mimepart_5ece34bd60b1d_470e3fd86e0cd95c62029c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430987519">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +state when the QUIC connection handshake has been completed and
+the endpoint has established a 1-RTT key.
</pre>
<p>This seems like the best direction to me - I leave to you whether (got 1-RTT keys) needs to be mentioned as not, and included that in your PR in case you wish to edit (or not).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#discussion_r430987519">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5RIFMTLQ6TUIWHU4DRTTNL3ANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5HDRUCB5IUKTTPDMTRTTNL3A5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD44QLA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430987519",
"url": "https://github.com/quicwg/base-drafts/pull/3693#discussion_r430987519",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece34bd60b1d_470e3fd86e0cd95c62029c--


From nobody Wed May 27 05:03:18 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 D249F3A0DD3 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 05:03:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 dtVzOP3NE6FO for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 05:03:15 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B14F23A0DF7 for <quic-issues@ietf.org>; Wed, 27 May 2020 05:03:01 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id D5E352C1F6D for <quic-issues@ietf.org>; Wed, 27 May 2020 05:03:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590580980; bh=N/KHBplbpgSrd2v2bTR1urjxPGy90/75QpzpecAlNAY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RbIUXpa1uJO9ZhFSNnfYQemdn8QN/KDvmByk6auK6nhoQFUXex6MdiRZHX1wLX3Zk E33Ov3POT0dWnFGIBFjJE2xgRbOophUA9ZvBwIVZiZW3SuCTXoNm3CUXP6yg98IEjh OXeP89Z6smmsHp4Ogeau1Ss3h5CPn8e95hkPvsC8=
Date: Wed, 27 May 2020 05:03:00 -0700
From: Dragana Damjanovic <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6URG3JTCOE3V2E6NN43I37JEVBNHHCKREEAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3700/review/419122310@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3700@github.com>
References: <quicwg/base-drafts/pull/3700@github.com>
Subject: Re: [quicwg/base-drafts] Servers should always send CANCEL_PUSH (#3700)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece56f4c6452_32053fba068cd96c92162"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ddragana
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JLB2HgbCaRa-pnMhGTxN0evmnZ4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 12:03:17 -0000

----==_mimepart_5ece56f4c6452_32053fba068cd96c92162
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ddragana commented on this pull request.



>  When a server sends CANCEL_PUSH, it is indicating that it will not be fulfilling
-a promise and has not created a push stream.  The client should not expect the
-corresponding promise to be fulfilled.
+a promise.  The client cannot expect the corresponding promise to be fulfilled.
+A server SHOULD send a CANCEL_PUSH even if it has opened the corresponding
+stream.

I think that is the right call.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3700#discussion_r431063892
----==_mimepart_5ece56f4c6452_32053fba068cd96c92162
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ddragana</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3700#discussion_r431063892">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt;  When a server sends CANCEL_PUSH, it is indicating that it will not be fulfilling
-a promise and has not created a push stream.  The client should not expect the
-corresponding promise to be fulfilled.
+a promise.  The client cannot expect the corresponding promise to be fulfilled.
+A server SHOULD send a CANCEL_PUSH even if it has opened the corresponding
+stream.
</pre>
<p>I think that is the right call.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3700#discussion_r431063892">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZHEUTSBWVGGQEECYLRTT6PJANCNFSM4NLJ4YMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYGJ7DQGNL3TJQFW6LRTT6PJA5CNFSM4NLJ4YM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD5UZBQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3700#discussion_r431063892",
"url": "https://github.com/quicwg/base-drafts/pull/3700#discussion_r431063892",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece56f4c6452_32053fba068cd96c92162--


From nobody Wed May 27 05:07:42 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 7C9003A0DDC for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 05:07:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 zGITfiaEmIJi for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 05:07:39 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3ADA53A0DDB for <quic-issues@ietf.org>; Wed, 27 May 2020 05:07:39 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 7CD832C21F1 for <quic-issues@ietf.org>; Wed, 27 May 2020 05:07:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590581258; bh=h6EFZ8jhvCESP2ASMN6eURkBuLjJQl2EmMfGYER+aYo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CEoMMfT1Sq3bTqoQGwe5Dka/x5Hb383uX5YzbuD3ST4XUkf4DyVwXKAHNB0sDc7j0 yw6hagbpROfPDNizPOQK6AvfG4wLw9nT8Kzfq5yFWPKCzeub1d1VQbjQEuiE/4/SJv kF3GXaEqKfTbUfMkqbddUSOEzzv7B8LTjjP9znCg=
Date: Wed, 27 May 2020 05:07:38 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY4JQC4RDON6YUA2GV43I4QVEVBNHHCKREEAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3700/review/419125544@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3700@github.com>
References: <quicwg/base-drafts/pull/3700@github.com>
Subject: Re: [quicwg/base-drafts] Servers should always send CANCEL_PUSH (#3700)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece580a6ae51_31313fa52d2cd9601138a5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/foeNPsFTOd7ilVAFwJzm-cFKG4o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 12:07:41 -0000

----==_mimepart_5ece580a6ae51_31313fa52d2cd9601138a5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



>  When a server sends CANCEL_PUSH, it is indicating that it will not be fulfilling
-a promise and has not created a push stream.  The client should not expect the
-corresponding promise to be fulfilled.
+a promise.  The client cannot expect the corresponding promise to be fulfilled.
+A server SHOULD send a CANCEL_PUSH even if it has opened the corresponding
+stream.

That matches what would occur in transport, so it does seem like the right call.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3700#discussion_r431066300
----==_mimepart_5ece580a6ae51_31313fa52d2cd9601138a5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3700#discussion_r431066300">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt;  When a server sends CANCEL_PUSH, it is indicating that it will not be fulfilling
-a promise and has not created a push stream.  The client should not expect the
-corresponding promise to be fulfilled.
+a promise.  The client cannot expect the corresponding promise to be fulfilled.
+A server SHOULD send a CANCEL_PUSH even if it has opened the corresponding
+stream.
</pre>
<p>That matches what would occur in transport, so it does seem like the right call.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3700#discussion_r431066300">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZDY52P6HIABHVIJI3RTT7AVANCNFSM4NLJ4YMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5AEPDNYOE3BQYRDH3RTT7AVA5CNFSM4NLJ4YM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD5VSKA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3700#discussion_r431066300",
"url": "https://github.com/quicwg/base-drafts/pull/3700#discussion_r431066300",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece580a6ae51_31313fa52d2cd9601138a5--


From nobody Wed May 27 05:30:29 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 817213A0E0C for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 05:30:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 LhN1-IZ-XkJC for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 05:30:26 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D60693A0DFF for <quic-issues@ietf.org>; Wed, 27 May 2020 05:30:25 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 1C51A6A004B for <quic-issues@ietf.org>; Wed, 27 May 2020 05:30:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590582625; bh=hk+5EZh38vZMfUFLDH3EAVHhRmaBMwB+W+I5LRxjpt4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oidJei0DlJm4jsB7cliJDXBo7OtdW4WLi3fKfOjijtJB7Zw2y3o+dWdFsiOFVduWa Sni5oLgB+iCu3pJjIiMeBy6qrMMXrtr172Rwyi4Ahiw4qIu4zuXc++YD5nupEDcZiM /+d42sFV84x1234PRmyQDMDXIsZf5uSTteqW7tjY=
Date: Wed, 27 May 2020 05:30:25 -0700
From: mirjak <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK25Y3X7RTGOAS5RUPN43I7GDEVBNHHCHVTIIM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3585/634627412@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3585@github.com>
References: <quicwg/base-drafts/issues/3585@github.com>
Subject: Re: [quicwg/base-drafts] Text on ECN probing (#3585)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece5d61df84_6d593f9b50ecd9683095ca"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: mirjak
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HW-bVTzk2v5Szo6-xOJjcPhOaIA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 12:30:28 -0000

----==_mimepart_5ece5d61df84_6d593f9b50ecd9683095ca
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

#3669 does not address this issue. This was just a side comment that came up. I think the minimum would be to replace

"To reduce the chances of misinterpreting congestive loss as packets dropped by a
faulty network element..."

by

"If there is as a concern for a certain network that all ECT-marked packets might be dropped by a faulty network element and would therefore cause a performance drop, then..."

However, I would still prefer to give a bit more context than this (basically one more sentence as proposed). I don't think this fits in the applicability statement as I don't think there is any intention here to provide an interface to specify the ECN probing behaviour and therefore a "user" of QUIC, which is the audience for the applicability statement, would not know what to do about this information. If we want an interface and move this to applicability, I think the whole text should be moved there with some more discussion rather than giving a random recommendation in the base spec.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634627412
----==_mimepart_5ece5d61df84_6d593f9b50ecd9683095ca
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621329616" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3669" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3669/hovercard" href="https://github.com/quicwg/base-drafts/pull/3669">#3669</a> does not address this issue. This was just a side comment that came up. I think the minimum would be to replace</p>
<p>"To reduce the chances of misinterpreting congestive loss as packets dropped by a<br>
faulty network element..."</p>
<p>by</p>
<p>"If there is as a concern for a certain network that all ECT-marked packets might be dropped by a faulty network element and would therefore cause a performance drop, then..."</p>
<p>However, I would still prefer to give a bit more context than this (basically one more sentence as proposed). I don't think this fits in the applicability statement as I don't think there is any intention here to provide an interface to specify the ECN probing behaviour and therefore a "user" of QUIC, which is the audience for the applicability statement, would not know what to do about this information. If we want an interface and move this to applicability, I think the whole text should be moved there with some more discussion rather than giving a random recommendation in the base spec.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634627412">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6SPFX3PO36PFYM2BDRTUBWDANCNFSM4MJ5KMKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7ECV5DU7BEG6KL2KDRTUBWDA5CNFSM4MJ5KMK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXJ2KVA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634627412",
"url": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634627412",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece5d61df84_6d593f9b50ecd9683095ca--


From nobody Wed May 27 06:47:07 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 AC8CC3A0ABC for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 06:47:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 A4t7OyNdUZCu for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 06:47:04 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 616A33A0AB1 for <quic-issues@ietf.org>; Wed, 27 May 2020 06:47:04 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id 8DDBB960C14 for <quic-issues@ietf.org>; Wed, 27 May 2020 06:47:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590587223; bh=/0OgeQgwc5smaOr3F3/fh2nzC+ovoBlpGBBxkwtci+s=; h=Date:From:To:Subject:From; b=lhjKfSHUXw5ojTsvjPQ5CTeIkF+D8lY66Eb8mXTV/FuJSludsXnSB81SXhYOGk1h5 GfmMeY/85qrW4AaGlUjqZGgujD37+n75lVjZ7Xz+O4yiGXb29raDjX9erjD9SDUxNQ lwdyi8QoTQ7BdmruhL68Mg3sZwGI00hUdCLQm1zY=
Date: Wed, 27 May 2020 06:47:03 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/should_cancel_push/618010-745efc@github.com>
Subject: [quicwg/base-drafts] 745efc: Fulfilled before cancel
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xqt__ZmIibGPOFJgxy9doCK5wwQ>
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: Wed, 27 May 2020 13:47:06 -0000

  Branch: refs/heads/http/should_cancel_push
  Home:   https://github.com/quicwg/base-drafts
  Commit: 745efc5d984a479629d973e0c062837c5cdd3cc7
      https://github.com/quicwg/base-drafts/commit/745efc5d984a479629d973e0c062837c5cdd3cc7
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Fulfilled before cancel



From nobody Wed May 27 06:47:18 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 32F193A0ADA for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 06:47:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 gFTIhVYopGMw for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 06:47:15 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E7E923A0AD8 for <quic-issues@ietf.org>; Wed, 27 May 2020 06:47:14 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id BAD176E1F86 for <quic-issues@ietf.org>; Wed, 27 May 2020 06:47:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590587232; bh=Bu1s3zo5KCedyBdv86p07WHWTvs0iYrI7AFPaYescrI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=VTM0O56EvEc9SHGLd3vNFfxFbLGZrOPMlL9ZHVI6BF8Elb38MtLCSLLI2gk6DvzkU lNsxXej24y9q2Dnikc6VDoTLFb2POXXtOylaJC4eqIgvfgMVPke/k0XKReJAHor7mt UX1gW8kJsWrOW6kPUsjaXcePdKxC6UDCzdz5LpJA=
Date: Wed, 27 May 2020 06:47:12 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3700/push/5135953847@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3700@github.com>
References: <quicwg/base-drafts/pull/3700@github.com>
Subject: Re: [quicwg/base-drafts] Servers should always send CANCEL_PUSH (#3700)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece6f60abf49_2333ffd55ccd96c386e9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/B1hWat9IzEBhs0fRuaWMYp1qGlM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 13:47:16 -0000

----==_mimepart_5ece6f60abf49_2333ffd55ccd96c386e9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop pushed 1 commit.

745efc5d984a479629d973e0c062837c5cdd3cc7  Fulfilled before cancel


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3700/files/618010e47dc5045b154e7bd62577e1e0a59dd178..745efc5d984a479629d973e0c062837c5cdd3cc7

----==_mimepart_5ece6f60abf49_2333ffd55ccd96c386e9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/MikeBishop" class="user-mention">@MikeBishop</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/745efc5d984a479629d973e0c062837c5cdd3cc7">745efc5</a>  Fulfilled before cancel</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3700/files/618010e47dc5045b154e7bd62577e1e0a59dd178..745efc5d984a479629d973e0c062837c5cdd3cc7">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4CW4HNF3DVBROT4FLRTUKWBANCNFSM4NLJ4YMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZRYZPSMWG2OUFRL63RTUKWBA5CNFSM4NLJ4YM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDGNJQGMZDQN2QOVZWQIZVGEZTKOJVGM4DINY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3700/files/618010e47dc5045b154e7bd62577e1e0a59dd178..745efc5d984a479629d973e0c062837c5cdd3cc7",
"url": "https://github.com/quicwg/base-drafts/pull/3700/files/618010e47dc5045b154e7bd62577e1e0a59dd178..745efc5d984a479629d973e0c062837c5cdd3cc7",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ece6f60abf49_2333ffd55ccd96c386e9--


From nobody Wed May 27 06:48:05 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 AD3313A0D86 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 06:47:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 8UoEJbBVdtCz for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 06:47:56 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 890C23A0E60 for <quic-issues@ietf.org>; Wed, 27 May 2020 06:47:56 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 4E1BF2C0C56 for <quic-issues@ietf.org>; Wed, 27 May 2020 06:47:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590587275; bh=2Yn+U1Hxoa9xd013CgKq5591cjZLJ1DNa7d80oH8TmQ=; h=Date:From:To:Subject:From; b=DilHF4jAg7NzVfpnSfrOnoC0d9AAz6VvqD6r2mC94ui42VfYPcp7axr3c3FKDWbLb b8Za/BP8c7slNzVoVlKhpTjpRNhPzhWnt6/Klh2aluzvfBZvvmtt/VVFbc4ZItJxYT Ec+21GMFxn4qQRAJTZ15WVNM9O2xUlBtPt66iuxc=
Date: Wed, 27 May 2020 06:47:55 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/af6580-2f9f01@github.com>
Subject: [quicwg/base-drafts] 2f9f01: Script updating gh-pages from 745efc5d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/D5F3WNxHZ3osSMSS5XXwUyanTB4>
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: Wed, 27 May 2020 13:48:03 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2f9f017d75913f4528dc90a6d77a5c3f366c0a4a
      https://github.com/quicwg/base-drafts/commit/2f9f017d75913f4528dc90a6d77a5c3f366c0a4a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M http/should_cancel_push/draft-ietf-quic-http.html
    M http/should_cancel_push/draft-ietf-quic-http.txt
    M http/should_cancel_push/draft-ietf-quic-invariants.html
    M http/should_cancel_push/draft-ietf-quic-invariants.txt
    M http/should_cancel_push/draft-ietf-quic-qpack.html
    M http/should_cancel_push/draft-ietf-quic-qpack.txt
    M http/should_cancel_push/draft-ietf-quic-recovery.html
    M http/should_cancel_push/draft-ietf-quic-recovery.txt
    M http/should_cancel_push/draft-ietf-quic-tls.html
    M http/should_cancel_push/draft-ietf-quic-tls.txt
    M http/should_cancel_push/draft-ietf-quic-transport.html
    M http/should_cancel_push/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 745efc5d. [ci skip]



From nobody Wed May 27 06:49:21 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 632F33A0ADA for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 06:49:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 kfXw_pn6Kjf9 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 06:49:19 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 112BC3A0AD8 for <quic-issues@ietf.org>; Wed, 27 May 2020 06:49:19 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 32D068C0F18 for <quic-issues@ietf.org>; Wed, 27 May 2020 06:49:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590587357; bh=we1/qYotpuPFkD2YYYu5P/Xqwis9tFhmZeVdmSX2Pco=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bTcaAnUmA5M0ia3z6M8P5hiYk54PDcXdYsJXneip7glBbC1Dk4fgGrmuHsLsTGP9v 22pQVK7Koi4LpIjZV+gZwLODaN0HwFUF+FC8qNvnJsCzppesMO/0gsba/u78JdHRCn JpHqkpQNynPbb7TdzlXjM1TMH0+gdGBESYLTG250=
Date: Wed, 27 May 2020 06:49:17 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6DIJI6LKPLRWUQVFF43JIN3EVBNHHCKREEAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3700/review/419226448@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3700@github.com>
References: <quicwg/base-drafts/pull/3700@github.com>
Subject: Re: [quicwg/base-drafts] Servers should always send CANCEL_PUSH (#3700)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece6fdd238ca_4e193f83e44cd964125089"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FnVAiqnwcGKhLZ9sXkxlnW7zhas>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 13:49:20 -0000

----==_mimepart_5ece6fdd238ca_4e193f83e44cd964125089
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop commented on this pull request.



>  When a server sends CANCEL_PUSH, it is indicating that it will not be fulfilling
-a promise and has not created a push stream.  The client should not expect the
-corresponding promise to be fulfilled.
+a promise.  The client cannot expect the corresponding promise to be fulfilled.
+A server SHOULD send a CANCEL_PUSH even if it has opened the corresponding
+stream.

Added text to this effect.  And that in fact could happen -- if we're suggesting a CANCEL_PUSH whenever the server abandons a stream (i.e. RESET_STREAM), it could be doing that to abort retransmissions even after writing the full payload.  The full payload might still have arrived if there's no loss.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3700#discussion_r431145538
----==_mimepart_5ece6fdd238ca_4e193f83e44cd964125089
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3700#discussion_r431145538">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt;  When a server sends CANCEL_PUSH, it is indicating that it will not be fulfilling
-a promise and has not created a push stream.  The client should not expect the
-corresponding promise to be fulfilled.
+a promise.  The client cannot expect the corresponding promise to be fulfilled.
+A server SHOULD send a CANCEL_PUSH even if it has opened the corresponding
+stream.
</pre>
<p>Added text to this effect.  And that in fact could happen -- if we're suggesting a CANCEL_PUSH whenever the server abandons a stream (i.e. RESET_STREAM), it could be doing that to abort retransmissions even after writing the full payload.  The full payload might still have arrived if there's no loss.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3700#discussion_r431145538">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYAR5TXNTSXFQE6HELRTUK53ANCNFSM4NLJ4YMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2Z6RY56HHZOGMCNWTRTUK53A5CNFSM4NLJ4YM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD6OGUA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3700#discussion_r431145538",
"url": "https://github.com/quicwg/base-drafts/pull/3700#discussion_r431145538",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece6fdd238ca_4e193f83e44cd964125089--


From nobody Wed May 27 06:49:28 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 133853A0ADA for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 06:49:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 lvjjKyfXyoTl for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 06:49:26 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B50E93A0AD8 for <quic-issues@ietf.org>; Wed, 27 May 2020 06:49:26 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 177ED962231 for <quic-issues@ietf.org>; Wed, 27 May 2020 06:49:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590587366; bh=8uHrXSFLvADFjygbQ7EHHJHIN6Hk3g4NXfeK+fjObkw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=agddELdOTLJkIV1xXA/201fAoMvu9ZxF5R7W63qzB4O5Ryw2meKTzljTBhZCWLz70 pSLbsB87sbFaMYI2XpsT6vFJmUG9O+vHHyXYvUW/yQZcrguS2E5K20S8DhsgkhvkJk Rl8HE4GLTN6QEMmrkLm5RcMbmTrvWtHva/E+5VDI=
Date: Wed, 27 May 2020 06:49:26 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3C2YSX2C5TCAIZKGF43JIONEVBNHHCHVTIIM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3585/634673693@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3585@github.com>
References: <quicwg/base-drafts/issues/3585@github.com>
Subject: Re: [quicwg/base-drafts] Text on ECN probing (#3585)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece6fe671c4_6b053fd2b3acd96898866"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/z_DNtiGtsWk8XZfgq3Na2M2lVTU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 13:49:28 -0000

----==_mimepart_5ece6fe671c4_6b053fd2b3acd96898866
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks for the clarification, that makes sense.

As someone not familiar with ECN and just reading the specification, I'm struggling to see what the crux of the issue is. And I would hypothesise that this is a contributing factor to it getting stalled. 

As an inexperienced implementer I find the current text a bit weak but I'm not sure more context helps me.

If I were to distil it down I'd take the current text:

>   To reduce the chances of misinterpreting congestive loss as packets
   dropped by a faulty network element, an endpoint could set the ECT(0)
   codepoint in the first ten outgoing packets on a path, or for a
   period of three RTTs, whichever occurs first.

and simply editorialize it to

> ECN-marked packets might be dropped by a faulty network element. To reduce the chances of confusing this with congestive loss of packets, an endpoint could set the ECT(0) codepoint for only the first ten outgoing packets on a path, or for a period of three RTTs, whichever occurs first.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634673693
----==_mimepart_5ece6fe671c4_6b053fd2b3acd96898866
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Thanks for the clarification, that makes sense.</p>
<p>As someone not familiar with ECN and just reading the specification, I'm struggling to see what the crux of the issue is. And I would hypothesise that this is a contributing factor to it getting stalled.</p>
<p>As an inexperienced implementer I find the current text a bit weak but I'm not sure more context helps me.</p>
<p>If I were to distil it down I'd take the current text:</p>
<blockquote>
<p>To reduce the chances of misinterpreting congestive loss as packets<br>
dropped by a faulty network element, an endpoint could set the ECT(0)<br>
codepoint in the first ten outgoing packets on a path, or for a<br>
period of three RTTs, whichever occurs first.</p>
</blockquote>
<p>and simply editorialize it to</p>
<blockquote>
<p>ECN-marked packets might be dropped by a faulty network element. To reduce the chances of confusing this with congestive loss of packets, an endpoint could set the ECT(0) codepoint for only the first ten outgoing packets on a path, or for a period of three RTTs, whichever occurs first.</p>
</blockquote>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634673693">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK27W5BFBOT6DURPOZ3RTUK6NANCNFSM4MJ5KMKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ4HKZLLFFFAIFRLVLRTUK6NA5CNFSM4MJ5KMK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXKFUHI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634673693",
"url": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634673693",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece6fe671c4_6b053fd2b3acd96898866--


From nobody Wed May 27 06:54:28 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 86D123A0B08 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 06:54:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 9tacG2omzE3R for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 06:54:25 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 645A33A0B03 for <quic-issues@ietf.org>; Wed, 27 May 2020 06:54:25 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id A519C520D74 for <quic-issues@ietf.org>; Wed, 27 May 2020 06:54:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590587664; bh=CndyYNwgD0kOjfMjOLkvooxk9F86f/jfciI7Wa1MtTU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JZ7Idr3G94g1Mf+SBtsw+y+hq+ZmWxZpvuc+usw9bYg53vpUTSWrHpYYaf6p1xGqV gcfIe2EV7AjNo2KL9PoZ8Gti+L/lkcj239KrF3PFW282fuSjFsQiac2cWz/bC6N8cB Yyt/wNohqNKPBYwD64J/teqSWcnFd3Djl1qFyXHk=
Date: Wed, 27 May 2020 06:54:24 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK57OHTEB4MJAL2KBWV43JJBBEVBNHHCKREEAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3700/review/419231741@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3700@github.com>
References: <quicwg/base-drafts/pull/3700@github.com>
Subject: Re: [quicwg/base-drafts] Servers should always send CANCEL_PUSH (#3700)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece711096027_3c013fc21a4cd9681838df"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dkOMf7rZMjDMWlXD96b3l85RaDM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 13:54:27 -0000

----==_mimepart_5ece711096027_3c013fc21a4cd9681838df
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue approved this pull request.

lgtm



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-419231741
----==_mimepart_5ece711096027_3c013fc21a4cd9681838df
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@LPardue</b> approved this pull request.</p>

<p>lgtm</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-419231741">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5PHGQLE2WAHVK3MSTRTULRBANCNFSM4NLJ4YMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2FMW4GB4LTA3HTJDLRTULRBA5CNFSM4NLJ4YM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD6PP7I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-419231741",
"url": "https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-419231741",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece711096027_3c013fc21a4cd9681838df--


From nobody Wed May 27 07:35:22 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 9088A3A0E6A for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 07:35:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 H3hSjdb7T1GY for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 07:35:19 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 524BE3A0E62 for <quic-issues@ietf.org>; Wed, 27 May 2020 07:35:19 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 9B3BC960DD3 for <quic-issues@ietf.org>; Wed, 27 May 2020 07:35:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590590117; bh=0TUvRF8n7Z1HUsK4SSX/cMA/+S8Rj9rLJBATlEy9EhQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QMcA8ir57CVM3/E3/L5VHFbZBGD8FOalkNINm6BkI9xkn9F5rA/vmFZog1jS2ZnAU txZiUj4YYj/T6cRrs6pkiItq2MyDVixxNu3wTmunfaW3I5k9R8BNlL8NizSAVHu1oL SmWDdjkdqDZ6gAhk+fDHjUGsiXWSyzDte0KD+fck=
Date: Wed, 27 May 2020 07:35:17 -0700
From: mirjak <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK66M2YSCDU34AQHOG543JN2LEVBNHHCHVTIIM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3585/634702506@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3585@github.com>
References: <quicwg/base-drafts/issues/3585@github.com>
Subject: Re: [quicwg/base-drafts] Text on ECN probing (#3585)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece7aa58b2b8_34e03fa50b8cd96887916"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: mirjak
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/IzReSJVUpeyfqwfjgQIS_Vy-oP4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 14:35:21 -0000

----==_mimepart_5ece7aa58b2b8_34e03fa50b8cd96887916
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This doesn't address my point. Today there is little to no evidence that these faulty network elements still exists. So my recommendation would be to not add any complexity by implementing these schemes. The current text makes it look like this, however, is a common problem, which is not the case, and therefore indictes that this scheme is recommended to be implemented.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634702506
----==_mimepart_5ece7aa58b2b8_34e03fa50b8cd96887916
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>This doesn't address my point. Today there is little to no evidence that these faulty network elements still exists. So my recommendation would be to not add any complexity by implementing these schemes. The current text makes it look like this, however, is a common problem, which is not the case, and therefore indictes that this scheme is recommended to be implemented.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634702506">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKY7JS23O4RA6PGAJB3RTUQKLANCNFSM4MJ5KMKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2QTO2IV4DO2YSUGZTRTUQKLA5CNFSM4MJ5KMK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXKMVKQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634702506",
"url": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634702506",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece7aa58b2b8_34e03fa50b8cd96887916--


From nobody Wed May 27 07:36:36 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 A67D23A0E65 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 07:36:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 OuCrqVDYlfR0 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 07:36:33 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D6F273A0E63 for <quic-issues@ietf.org>; Wed, 27 May 2020 07:36:32 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id A09CF660327 for <quic-issues@ietf.org>; Wed, 27 May 2020 07:36:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590590191; bh=FVGc3Td/qCAUMeNqNiM47bLVVeUX0fpyu7pWe/CHuCY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dK3eomRBQlEBAkdTWXaTxHgmSaERvKyBAcjgR+hEqwbnS6FOP1AYCg+wR8K98QIQH NXdJ1KH2DuZ0WN8vkcQGhMFtyx/sYUW+ul0yOANrWFJSxKEKSRA+DQzs22pg8Hf42w EAMBZRK0FBAY9nGYthJL+LDly3NRiD8XAOiLt/ww=
Date: Wed, 27 May 2020 07:36:31 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZUH4QS5UDO3PJRFDN43JN67EVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/review/419280843@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece7aef90df9_215b3fde156cd968162015"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JgSGDY4zjkEhFVkJVAdFQshoo0E>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 14:36:35 -0000

----==_mimepart_5ece7aef90df9_215b3fde156cd968162015
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



>        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = smoothed_rtt +
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)

Good catch, thanks.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#discussion_r431186068
----==_mimepart_5ece7aef90df9_215b3fde156cd968162015
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3681#discussion_r431186068">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = smoothed_rtt +
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)
</pre>
<p>Good catch, thanks.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3681#discussion_r431186068">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK55I44D67YUHL5YJILRTUQO7ANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK43SWQLZIFOLDMKVZ3RTUQO7A5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD63PSY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681#discussion_r431186068",
"url": "https://github.com/quicwg/base-drafts/pull/3681#discussion_r431186068",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece7aef90df9_215b3fde156cd968162015--


From nobody Wed May 27 07:38:27 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 7C9FB3A0E6B for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 07:38:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Xd7oOnslLSwH for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 07:38:25 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DFE173A0E65 for <quic-issues@ietf.org>; Wed, 27 May 2020 07:38:24 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 2761C2C21F1 for <quic-issues@ietf.org>; Wed, 27 May 2020 07:38:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590590304; bh=xJ9MpDqtfc8JtTEYsaaetIhet2IRp4F+V7RWAmJhgQo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=APqQM2+f6/1ewVC6BSfzRKlfFcoOvYnGfc/x7wE5y4PaxVEFvi/QJoE09N6ZJe+km 6zxYjCHVuiFZiBhDYNeNUxJe48XbXI8OKmY09tgeRB810N3zwitk+BSyKzxhVWd7uG 2L2E5zA0soavQkaXDdXT8c0ciRcI2Fq/mXv2P6vU=
Date: Wed, 27 May 2020 07:38:24 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK25JSLSZU6SMMYFR4543JOGBEVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/review/419282690@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece7b601680a_15353fea98ecd96c138521"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fjYo8vB1Sz7iLHkqSyWkrkoSnVw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 14:38:27 -0000

----==_mimepart_5ece7b601680a_15353fea98ecd96c138521
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



>        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = smoothed_rtt +
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):
+    return (now() + duration), Initial

Thanks.  The amplification factor is the gift that keeps on giving.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#discussion_r431187955
----==_mimepart_5ece7b601680a_15353fea98ecd96c138521
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3681#discussion_r431187955">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = smoothed_rtt +
+      max(4 * rttvar, kGranularity) * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):
+    return (now() + duration), Initial
</pre>
<p>Thanks.  The amplification factor is the gift that keeps on giving.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3681#discussion_r431187955">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ECA7X263FWN5MVSLRTUQWBANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYZI2AACUDR22W4ZRDRTUQWBA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD636AQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681#discussion_r431187955",
"url": "https://github.com/quicwg/base-drafts/pull/3681#discussion_r431187955",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece7b601680a_15353fea98ecd96c138521--


From nobody Wed May 27 07:39:45 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 D6B1F3A0DE1 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 07:39:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 z0DxIycZoT6b for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 07:39:43 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C48953A0DE0 for <quic-issues@ietf.org>; Wed, 27 May 2020 07:39:43 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id A7890A0DF3 for <quic-issues@ietf.org>; Wed, 27 May 2020 07:39:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590590382; bh=vLncZv0Wb+VMYMtQZ3qZmexHXaL4QW3r/1xjH5UhVWQ=; h=Date:From:To:Subject:From; b=H08xUdB8Arr2icEOc5oDA83uhxnnyEMWkwjV5UzaFs2X5HN7IPVoeoxtQsjZipj5e gklYg1Yam0tkwOxkCcwSvk1xzwHGtlksldMSZwGlsHd1HF7efb41y+bj9oyyzfl6VM 8iCv1voKcqn/RxK1B9EfYy3wKYJT5PXHyZMVtXQU=
Date: Wed, 27 May 2020 07:39:42 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-split-pto-pseudocode/7a3302-6ce4f9@github.com>
Subject: [quicwg/base-drafts] 6ce4f9: Marten's suggestions
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/RwYRuR9rKocLL0W1tvMgWpJD7Mg>
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: Wed, 27 May 2020 14:39:45 -0000

  Branch: refs/heads/ianswett-split-pto-pseudocode
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a
      https://github.com/quicwg/base-drafts/commit/6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Marten's suggestions



From nobody Wed May 27 07:39:54 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 D64C13A0DE1 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 07:39:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 brj7Jh09GOuF for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 07:39:51 -0700 (PDT)
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 977883A0DE0 for <quic-issues@ietf.org>; Wed, 27 May 2020 07:39:51 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id CEB1E2819EF for <quic-issues@ietf.org>; Wed, 27 May 2020 07:39:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590590390; bh=lAkVdNzL9k9sq2Mnbp8WtdQB9UHVNSDim6xkdKqlwLA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=lEY+HdmmUOkbuuRMbgx4ZYgpa+Nr41yDWfMJPny3E+ff6ZXyU9TSs4pMrYSBYRcVQ WIe9CqXkE666biZpxl+xOFAbcZ2t7cEAkU1hQgpvet34M3I6sU0ukbAcIlG8Zohide LZFCxnTPf4a0o6lFeUSTUtGeR3GK5yYZ2feBeB1M=
Date: Wed, 27 May 2020 07:39:50 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/push/5136278863@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece7bb6c04f0_3ca63fd1a2acd95c708a4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jzvMnmzdGfVs7aJvwKxRo9QUHBY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 14:39:53 -0000

----==_mimepart_5ece7bb6c04f0_3ca63fd1a2acd95c708a4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a  Marten's suggestions


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681/files/7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8..6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a

----==_mimepart_5ece7bb6c04f0_3ca63fd1a2acd95c708a4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a">6ce4f9b</a>  Marten&#39;s suggestions</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3681/files/7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8..6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7Z4UIZHPSOROGRLFLRTUQ3NANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZYINVI4DLJESW23ILRTUQ3NA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDAOBUGU4TEOKQOVZWQIZVGEZTMMRXHA4DMMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681/files/7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8..6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a",
"url": "https://github.com/quicwg/base-drafts/pull/3681/files/7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8..6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ece7bb6c04f0_3ca63fd1a2acd95c708a4--


From nobody Wed May 27 07:40:44 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 965C53A0E65 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 07:40:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 M4N9DlduwPYT for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 07:40:41 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 70D503A0DE1 for <quic-issues@ietf.org>; Wed, 27 May 2020 07:40:41 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 990C16E1F7F for <quic-issues@ietf.org>; Wed, 27 May 2020 07:40:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590590440; bh=l0lHvFprAlIf2uR0MW5kMs14hyT0+8TMsb6PDLGbph8=; h=Date:From:To:Subject:From; b=k4RCjWoB7vwbAdSlVUKXfqiyMeaM2AjE5sgbRss9rgVZ/LSQpWMpuKoPM/K+5TgGs XNMVUJzANNxoh9JEw7wTj/A4FzVgujI22PZqaLjPOGNej86e6gTNn37+NLar3E2xYb zMqmwbuTALPkIk73orA6xkvt9aMkzOBQ3/8Vsoiw=
Date: Wed, 27 May 2020 07:40:40 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/2f9f01-8a12cb@github.com>
Subject: [quicwg/base-drafts] 8a12cb: Script updating gh-pages from 6ce4f9b1. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XsPLPih6Y6ikjDf14mqDLACZ2Jg>
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: Wed, 27 May 2020 14:40:43 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8a12cbc5a649ef05981ab4c05bc1e61a6f111f28
      https://github.com/quicwg/base-drafts/commit/8a12cbc5a649ef05981ab4c05bc1e61a6f111f28
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M ianswett-split-pto-pseudocode/draft-ietf-quic-http.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-http.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-invariants.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-invariants.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-qpack.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-qpack.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-tls.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-tls.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-transport.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6ce4f9b1. [ci skip]



From nobody Wed May 27 08:19:12 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 3F9943A0E92 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:19:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.696
X-Spam-Level: 
X-Spam-Status: No, score=-1.696 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 Ju7Nzk14zRsJ for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:19:08 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 91D873A0E8D for <quic-issues@ietf.org>; Wed, 27 May 2020 08:19:08 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id 5910C6E1F3F for <quic-issues@ietf.org>; Wed, 27 May 2020 08:19:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590592746; bh=/Da+E5LlCRNd4f+U3aLQMMoXybMd5hjgNm8QfTj6Ozk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cxl4l7bCPCBY0AAGyvYfKX5gB35/MMUgbEveCdPVJkYP1CQuyBycPwXWJaRWfenhM 5XUevjVqruJo4chzpzR6xTLVxA/NaCOJEk0NfOv54fGBY704hBzQT+27EIxvxrJMvT Y75cEGa9ilkZOAsAQzAVSLJ/sWWCiypwB6I5z0f8=
Date: Wed, 27 May 2020 08:19:06 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2LRJGEAXRAI4MVCNN43JS6VEVBNHHCKKKFHA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3689/review/419325576@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3689@github.com>
References: <quicwg/base-drafts/pull/3689@github.com>
Subject: Re: [quicwg/base-drafts] Improve HTTP draft wording: frames carry identifier values (#3689)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece84ea4a459_28023fcd01ccd9641850c4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/dYYb_ejT17vYRGf0ipIw9jzCSrg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 15:19:10 -0000

----==_mimepart_5ece84ea4a459_28023fcd01ccd9641850c4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop commented on this pull request.

Maybe, given the ambiguity, the right answer is to get rid of "they" in the first place?

> @@ -954,7 +954,7 @@ might have acted on.
 A client that is unable to retry requests loses all requests that are in flight
 when the server closes the connection.  An endpoint MAY send multiple GOAWAY
 frames indicating different identifiers, but MUST NOT increase the identifier

```suggestion
frames indicating different identifiers, but the identifier in each frame
```

> +value they carry, since clients might already have retried unprocessed requests
 on another connection.

```suggestion
MUST NOT be greater than the identifier in any previous frame, since clients
might already have retried unprocessed requests on another connection.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3689#pullrequestreview-419325576
----==_mimepart_5ece84ea4a459_28023fcd01ccd9641850c4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@MikeBishop</b> commented on this pull request.</p>=0D
=0D
<p>Maybe, given the ambiguity, the right answer is to get rid of "they" i=
n the first place?</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3689#discussi=
on_r431219743">draft-ietf-quic-http.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -954,7 +954,7 @@ might have acted on.=0D=

 A client that is unable to retry requests loses all requests that are in=
 flight=0D
 when the server closes the connection.  An endpoint MAY send multiple GO=
AWAY=0D
 frames indicating different identifiers, but MUST NOT increase the ident=
ifier=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-frames indicating different identifiers, but =
MUST NOT increase the identifier=0D
+frames indicating different identifiers, but the identifier in each fram=
e=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3689#discussi=
on_r431222474">draft-ietf-quic-http.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +value they carry, since clients might alr=
eady have retried unprocessed requests=0D
 on another connection.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-value they carry, since clients might already=
 have retried unprocessed requests=0D
-on another connection.=0D
+MUST NOT be greater than the identifier in any previous frame, since cli=
ents=0D
+might already have retried unprocessed requests on another connection.=0D=

</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3689#pullrequestreview-419325576">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KYMN7XAMFMRX2C5GBDRTUVOVANCNFSM4NIDL3PQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK6PHEYJ2E6USIG7KELRTUVOVA5CNFSM4=
NIDL3P2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODD7GNCA.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3689#pullrequestrev=
iew-419325576",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3689#pullrequestreview=
-419325576",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ece84ea4a459_28023fcd01ccd9641850c4--


From nobody Wed May 27 08:23:04 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 ABCD13A0EA6 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:23:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 qrl2Vd3TNAU8 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:23:01 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6E80C3A0EA2 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:23:01 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 41694E15B9 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:23:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590592980; bh=pDuzq556hDVAOiM9dEg8/aapp/NoHu2dTOv2OqyPXmo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=r03KJuyc9zKbiCgDiSwjrDtS4tPCbL+za9ZIAUVT1/bvfU568Yoam33qTT7YDy1Pr ziUnJbjRdrd8auuIKHrHQoguVjr+MAC5n5jJkskISXo2W0PW1JTbSIRV7v1nsaVFok cSuJHPBRJ+in/YWLkDHbqcjQire5jSnwTHwj1z3s=
Date: Wed, 27 May 2020 08:23:00 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3689/push/5136547723@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3689@github.com>
References: <quicwg/base-drafts/pull/3689@github.com>
Subject: Re: [quicwg/base-drafts] Improve HTTP draft wording: frames carry identifier values (#3689)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece85d431718_5cf23fc679ecd964215265"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/S6bXzIm3YBna61cdGQN8vUfmIYQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 15:23:03 -0000

----==_mimepart_5ece85d431718_5cf23fc679ecd964215265
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@dtikhonov pushed 1 commit.

ec59b1d50b6b947667aaedf4709269216496ace3  Update draft-ietf-quic-http.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3689/files/c559ffd9bf727ae5a8c37cae44f0831086417f36..ec59b1d50b6b947667aaedf4709269216496ace3

----==_mimepart_5ece85d431718_5cf23fc679ecd964215265
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/dtikhonov" class="user-mention">@dtikhonov</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/ec59b1d50b6b947667aaedf4709269216496ace3">ec59b1d</a>  Update draft-ietf-quic-http.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3689/files/c559ffd9bf727ae5a8c37cae44f0831086417f36..ec59b1d50b6b947667aaedf4709269216496ace3">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3CD3PQAMIAUDILJMTRTUV5JANCNFSM4NIDL3PQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7EUC2DZKWUYJLAMQLRTUV5JA5CNFSM4NIDL3P2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDEMJSG4ZDCMSQOVZWQIZVGEZTMNJUG43TEMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3689/files/c559ffd9bf727ae5a8c37cae44f0831086417f36..ec59b1d50b6b947667aaedf4709269216496ace3",
"url": "https://github.com/quicwg/base-drafts/pull/3689/files/c559ffd9bf727ae5a8c37cae44f0831086417f36..ec59b1d50b6b947667aaedf4709269216496ace3",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ece85d431718_5cf23fc679ecd964215265--


From nobody Wed May 27 08:23:11 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 424F63A0EA2 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:23:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 BJEvcBmXOB55 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:23:08 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 090DE3A0EA6 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:23:08 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 56CE82C218E for <quic-issues@ietf.org>; Wed, 27 May 2020 08:23:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590592986; bh=pxNX5oK02UzCv0y3Xp2YurvDL+uj87pk/Z7FPe9SANs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=K/q4PclsrtBm0f/3K0l+3dZiu0ux6BWjxQCUTh5yOkDSfNOk2nGqNoruIwj7ecD63 hsYUlNzY1+l3M9UKCjlMX5u+x7SQ/KrO/qEy0CHLXuPwLBvu+CW4S3gFo0EBsXcOGr G3LCLgMzQFgDNdqJgSI5PJXvbfBVlU1e21a1gfhQ=
Date: Wed, 27 May 2020 08:23:06 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3689/push/5136548343@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3689@github.com>
References: <quicwg/base-drafts/pull/3689@github.com>
Subject: Re: [quicwg/base-drafts] Improve HTTP draft wording: frames carry identifier values (#3689)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece85da41e5d_43e53fe0b5ecd968186765"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/BAs75DD3IzNiZXdW_M9XoDEU3vM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 15:23:09 -0000

----==_mimepart_5ece85da41e5d_43e53fe0b5ecd968186765
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@dtikhonov pushed 1 commit.

3541315cebf536990718f017beb83b4bd292587f  Update draft-ietf-quic-http.md


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3689/files/ec59b1d50b6b947667aaedf4709269216496ace3..3541315cebf536990718f017beb83b4bd292587f

----==_mimepart_5ece85da41e5d_43e53fe0b5ecd968186765
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/dtikhonov" class="user-mention">@dtikhonov</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/3541315cebf536990718f017beb83b4bd292587f">3541315</a>  Update draft-ietf-quic-http.md</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3689/files/ec59b1d50b6b947667aaedf4709269216496ace3..3541315cebf536990718f017beb83b4bd292587f">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZBGBXFRWK2VZIWTWLRTUV5VANCNFSM4NIDL3PQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2NSZ56XDITD3GJHGLRTUV5VA5CNFSM4NIDL3P2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDEMJSG4ZDCMSQOVZWQIZVGEZTMNJUHAZTIMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3689/files/ec59b1d50b6b947667aaedf4709269216496ace3..3541315cebf536990718f017beb83b4bd292587f",
"url": "https://github.com/quicwg/base-drafts/pull/3689/files/ec59b1d50b6b947667aaedf4709269216496ace3..3541315cebf536990718f017beb83b4bd292587f",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ece85da41e5d_43e53fe0b5ecd968186765--


From nobody Wed May 27 08:25:49 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 E4CC23A0EAA for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:25:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 v83cXQWHGarI for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:25:46 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CF6C83A0EA6 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:25:46 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 1B4AB6A0DF3 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:25:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590593146; bh=pAQSy4sCI35W1dNAuguib7OIwaxrxr4FVK3aMIee+os=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ief8EfoGHFtcnLWsumNOqj/WkU+/dm8lpufvpUyV+dVjdR1sL8i2risguYAf5YL36 6AXLB0ONG2agOL8Z5CbsdgFlRu40o6LTRq9EWOIPJM4YBzWmQ/voXlDpOpGDuQKDyl gdJ+9oTv/+vjXODrWZf0JYSFdLyWEw8MQZVfyH1A=
Date: Wed, 27 May 2020 08:25:46 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5IPHI75AXX5Q7YO3F43JTXVEVBNHHCKKKFHA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3689/c634738435@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3689@github.com>
References: <quicwg/base-drafts/pull/3689@github.com>
Subject: Re: [quicwg/base-drafts] Improve HTTP draft wording: frames carry identifier values (#3689)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece867ab9a2_39173fd2e82cd968148569"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9VXnHwhfmqtWn2HLKmq9DLgJNsM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 15:25:48 -0000

----==_mimepart_5ece867ab9a2_39173fd2e82cd968148569
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This looks good.

While we are at this paragraph, why say "client?"  GOAWAY can be sent by either side now.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634738435
----==_mimepart_5ece867ab9a2_39173fd2e82cd968148569
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>This looks good.</p>
<p>While we are at this paragraph, why say "client?"  GOAWAY can be sent by either side now.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634738435">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6ZDQQVKHY2PJ25N2DRTUWHVANCNFSM4NIDL3PQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK77BJKQH2JYAMUQGBDRTUWHVA5CNFSM4NIDL3P2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXKVOAY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634738435",
"url": "https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634738435",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece867ab9a2_39173fd2e82cd968148569--


From nobody Wed May 27 08:27:20 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 3CBB23A0EB0 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:27:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 xlAxcHw8gjGo for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:27:18 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 39CC33A0EAA for <quic-issues@ietf.org>; Wed, 27 May 2020 08:27:18 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id 82B1B8C0356 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:27:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590593237; bh=y25+CpCCxqP0HvTrQU9Md2oHpEoSt1l5S+WkB8ygf2A=; h=Date:From:To:Subject:From; b=x6Kq2sQ0TeNeT7xujG1X5EWUHBaJGVKR68h2e74M0BPCTuXrgYL3c2WneLgeakx1O SWB1B6TODhcmnO6tasWnMYMbe2KM7h47E1dqjZbLkHNUFW9qawIk/xLyb/8cd7CQ91 k2LgOVny2k8xOM4t2BBWq8FCVFM9Dw9CAvcaO35s=
Date: Wed, 27 May 2020 08:27:17 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/should_cancel_push/745efc-8934b2@github.com>
Subject: [quicwg/base-drafts] 8934b2: A suggested text about a push stream after a CANCE...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fTbD9jGhOHhLEtBIui6M1pwKp70>
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: Wed, 27 May 2020 15:27:19 -0000

  Branch: refs/heads/http/should_cancel_push
  Home:   https://github.com/quicwg/base-drafts
  Commit: 8934b25be9a655b73da54bdcfe411cb03b0ea71a
      https://github.com/quicwg/base-drafts/commit/8934b25be9a655b73da54bdcfe411cb03b0ea71a
  Author: Dragana Damjanovic <dragana.damjano@gmail.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  A suggested text about a push stream after a CANCEL_PUSH



From nobody Wed May 27 08:27:29 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 927653A0EB7 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:27:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 UyMQAVcRpxco for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:27:27 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6E8A03A0EB0 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:27:27 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id B639DE0E2B for <quic-issues@ietf.org>; Wed, 27 May 2020 08:27:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590593246; bh=vz3znb3jRKCjY5KiVjW/EWxw8E1oQIPuEDrhtgjMKbE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=D+8DPJ7Ztci0JsgXRFaj6jG4XZTgH3V6koRPf2puQ+4WDs18EKI412q4Ap9eHq6CY Go3+z81UTl4Au5qDTbKG5TCJQ6GcHYs6kUsGVR42JViHt6VcxxFuz5DC/Th562iG0b vUnn89R5CQihA09ryYA8jL5j7Nq/KYaobfwP23p0=
Date: Wed, 27 May 2020 08:27:26 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3700/push/5136574110@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3700@github.com>
References: <quicwg/base-drafts/pull/3700@github.com>
Subject: Re: [quicwg/base-drafts] Servers should always send CANCEL_PUSH (#3700)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece86dea633f_18873f9ff06cd96c2279fe"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ev30SGdxxD2-0WSIGRvMwu_ek_c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 15:27:29 -0000

----==_mimepart_5ece86dea633f_18873f9ff06cd96c2279fe
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop pushed 1 commit.

8934b25be9a655b73da54bdcfe411cb03b0ea71a  A suggested text about a push stream after a CANCEL_PUSH


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3700/files/745efc5d984a479629d973e0c062837c5cdd3cc7..8934b25be9a655b73da54bdcfe411cb03b0ea71a

----==_mimepart_5ece86dea633f_18873f9ff06cd96c2279fe
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/MikeBishop" class="user-mention">@MikeBishop</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/8934b25be9a655b73da54bdcfe411cb03b0ea71a">8934b25</a>  A suggested text about a push stream after a CANCEL_PUSH</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3700/files/745efc5d984a479629d973e0c062837c5cdd3cc7..8934b25be9a655b73da54bdcfe411cb03b0ea71a">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2CJTXOMVGPQFBDCXTRTUWN5ANCNFSM4NLJ4YMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZO25A6B5TMHU3USJ3RTUWN5A5CNFSM4NLJ4YM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDGNJQGMZDQN2QOVZWQIZVGEZTMNJXGQYTCMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3700/files/745efc5d984a479629d973e0c062837c5cdd3cc7..8934b25be9a655b73da54bdcfe411cb03b0ea71a",
"url": "https://github.com/quicwg/base-drafts/pull/3700/files/745efc5d984a479629d973e0c062837c5cdd3cc7..8934b25be9a655b73da54bdcfe411cb03b0ea71a",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ece86dea633f_18873f9ff06cd96c2279fe--


From nobody Wed May 27 08:28:04 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 62AF73A0EB0 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:28:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 LQ-v-7ZNLQ00 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:28:01 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9290C3A0EB7 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:28:01 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id D1EF06E1FA3 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:28:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590593280; bh=1aE4kXtuWptHB0PSIDnJQVfKvc6hT7jjJhe0IJY024w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UT8yFMqrr1/CDQA8Oy/6/tmr4VZVwZR+vO8uMSuyr1fB/uuk7tnw1/UT+hM16Zesw 2bMYBSfOhaqaCNatWAlEXp4pojRg22clNA4ilfoR7IePkDlV2g3XhC18bF3pMKkVWi 39FwVTP+hjUi16tYpyB1tCrsG9X/KEzuyvguGj68=
Date: Wed, 27 May 2020 08:28:00 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ5SM2XV5KOL3F7SAV43JUABEVBNHHCKP4UYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3699/c634740104@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3699@github.com>
References: <quicwg/base-drafts/pull/3699@github.com>
Subject: Re: [quicwg/base-drafts] A suggested text about a push stream after a CANCEL_PUSH (#3699)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece8700c1962_70c3f8132ecd964235793"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xMmfuUEq99I2aNp0RQAOaZqBTFk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 15:28:03 -0000

----==_mimepart_5ece8700c1962_70c3f8132ecd964235793
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This overlaps the change in #3700.  I've cherry-picked it into that branch and we'll address them together.  I believe that will also address @martinthomson's comment, since #3700 already discusses the server side.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3699#issuecomment-634740104
----==_mimepart_5ece8700c1962_70c3f8132ecd964235793
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>
<p>This overlaps the change in <a class=3D"issue-link js-issue-link" data=
-error-text=3D"Failed to load title" data-id=3D"625247236" data-permissio=
n-text=3D"Title is private" data-url=3D"https://github.com/quicwg/base-dr=
afts/issues/3700" data-hovercard-type=3D"pull_request" data-hovercard-url=
=3D"/quicwg/base-drafts/pull/3700/hovercard" href=3D"https://github.com/q=
uicwg/base-drafts/pull/3700">#3700</a>.  I've cherry-picked it into that =
branch and we'll address them together.  I believe that will also address=
 <a class=3D"user-mention" data-hovercard-type=3D"user" data-hovercard-ur=
l=3D"/users/martinthomson/hovercard" data-octo-click=3D"hovercard-link-cl=
ick" data-octo-dimensions=3D"link_type:self" href=3D"https://github.com/m=
artinthomson">@martinthomson</a>'s comment, since <a class=3D"issue-link =
js-issue-link" data-error-text=3D"Failed to load title" data-id=3D"625247=
236" data-permission-text=3D"Title is private" data-url=3D"https://github=
.com/quicwg/base-drafts/issues/3700" data-hovercard-type=3D"pull_request"=
 data-hovercard-url=3D"/quicwg/base-drafts/pull/3700/hovercard" href=3D"h=
ttps://github.com/quicwg/base-drafts/pull/3700">#3700</a> already discuss=
es the server side.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3699#issuecomment-634740104">view it on GitHub</a>, o=
r <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJKZ4IK=
YLHEOGZBUKP2TRTUWQBANCNFSM4NKLLZRA">unsubscribe</a>.<img src=3D"https://g=
ithub.com/notifications/beacon/AFTOJK7AWPLTQDPFNMIOTDLRTUWQBA5CNFSM4NKLLZ=
RKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXKV3CA.gif=
" height=3D"1" width=3D"1" alt=3D"" /></p>
<script type=3D"application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3699#issuecomment-6=
34740104",
"url": "https://github.com/quicwg/base-drafts/pull/3699#issuecomment-6347=
40104",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>=

----==_mimepart_5ece8700c1962_70c3f8132ecd964235793--


From nobody Wed May 27 08:28:08 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 A5C973A0F08 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:28:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 uPb2WO3RmlbC for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:28:05 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 6A38E3A0EB0 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:28:05 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id CECF52828B7 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:28:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590593283; bh=PjIl7TNB4/Wp70OKmkL+pjVe8m1ZuMiv1hvwQfxZXuY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=A9XhV2pnWMqzxW9kHXg6VgGmYKz6twBe6pLcftNGpIBGQQiBr+D5ULFpAv4lQpuac WQo/Cx921TvvfRfFE4zUJrxZBR+FNbRB3yU4RRdIdFmGosLDIgpPnUmSQ6XZ43SbID P/NuWy+5kzEngEx770SYGvPsWvkUPAJPlmLaD5hc=
Date: Wed, 27 May 2020 08:28:03 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6AMB2WXHU5GWAMX4N43JUAHEVBNHHCKP4UYY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3699/issue_event/3378728294@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3699@github.com>
References: <quicwg/base-drafts/pull/3699@github.com>
Subject: Re: [quicwg/base-drafts] A suggested text about a push stream after a CANCEL_PUSH (#3699)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece8703bfdd3_65933fbce26cd96c84174"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ws-ZsMHFe3UKTfOVGst2IT91PTo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 15:28:07 -0000

----==_mimepart_5ece8703bfdd3_65933fbce26cd96c84174
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3699.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3699#event-3378728294
----==_mimepart_5ece8703bfdd3_65933fbce26cd96c84174
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="624923846" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3699" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3699/hovercard" href="https://github.com/quicwg/base-drafts/pull/3699">#3699</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3699#event-3378728294">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4I2JXBIACATVULLN3RTUWQHANCNFSM4NKLLZRA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3XV2HQ4CBX4NLX3XDRTUWQHA5CNFSM4NKLLZRKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZFRU2ZQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3699#event-3378728294",
"url": "https://github.com/quicwg/base-drafts/pull/3699#event-3378728294",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece8703bfdd3_65933fbce26cd96c84174--


From nobody Wed May 27 08:28:12 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 9304E3A0ECA for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:28:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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] 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 WRit5du7yfmy for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:28:08 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 223E03A0ED5 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:28:08 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 4E5B7120C9A for <quic-issues@ietf.org>; Wed, 27 May 2020 08:28:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590593287; bh=rDYsPx8Q8S7ZozsJXzOHtYIQh5Ur4Hg1auR9fcSQ8Os=; h=Date:From:To:Subject:From; b=bbdRZWnn/ilvpDyvLD5GPA6iKxVN+bp+DscihjTqn9JH2xI8AcZwqlX5yWFfoTlh3 X5QNqPb0qyjU7PH4+kqCtTt4PJLSTme9xitB/MwrVEbXOYtfLtnh98jBxo8BFwR567 3Zsh4HjD3NP/xJQMQqP6zGIxuV50CuC8dH3oDyc0=
Date: Wed, 27 May 2020 08:28:07 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/8a12cb-62d6bc@github.com>
Subject: [quicwg/base-drafts] 62d6bc: Script updating gh-pages from 8934b25b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/jnMQjbkfRX4jUdaTJFMrBgNrh7s>
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: Wed, 27 May 2020 15:28:10 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 62d6bcde2d093fa7c30909ca55cd74511a196f13
      https://github.com/quicwg/base-drafts/commit/62d6bcde2d093fa7c30909ca55cd74511a196f13
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M http/should_cancel_push/draft-ietf-quic-http.html
    M http/should_cancel_push/draft-ietf-quic-http.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 8934b25b. [ci skip]



From nobody Wed May 27 08:28:21 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 ECAEF3A0EC8 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:28:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 qQ5UtlKa-fbo for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:28:18 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B87BA3A0EC5 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:28:18 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id E24BC5205DB for <quic-issues@ietf.org>; Wed, 27 May 2020 08:28:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590593297; bh=IyRXpIm/x6ndbHyW3WB7zZq/aD8MZeA9NFQHfvo7EUI=; h=Date:From:To:Subject:From; b=xAS/R9oOQiYD1PaEEl1PWF6d6X/dhfG16QrUN//lYmFe1qe1evFMJlPjkaHRvDBeS t5b9fFN8Fd5yMgk2yuz+ys5ivsrs+8AVtstEx71XnpPGKZWGnlhCD9+/BeoEdS3Srw NYwNCYZ09HQdmA95mTsGYEprM2SkhI1JKFt+dOy8=
Date: Wed, 27 May 2020 08:28:17 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/62d6bc-fcad8a@github.com>
Subject: [quicwg/base-drafts] fcad8a: Script updating archive at 2020-05-27T15:27:56Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QiWFtGoq0olMiTOJvOLSZr5NnYo>
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: Wed, 27 May 2020 15:28:20 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: fcad8a11439d2059d02b8186b31d2dcf9ead5a1f
      https://github.com/quicwg/base-drafts/commit/fcad8a11439d2059d02b8186b31d2dcf9ead5a1f
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-27T15:27:56Z. [ci skip]



From nobody Wed May 27 08:31:39 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 C11333A0ECA for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:31:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 av2X5AAkgoBj for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:31:36 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 847A03A0EC9 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:31:36 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id CC4652C1588 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:31:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590593495; bh=RfQnlksbX1M765uO6F8umQ3PwG76Aqi+YBXKQXRrdk0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=awtncyWbV3Zy4oPWm5DLrHENzHgWhZhCocdHSoPJgWhIuYV7UeXIco2vJP2a9qoDP 4S2KGWodS8cSiduQv2oRM97yZCztyldJ3CGje5/zOjFsIrd+MLtXvW+iAvVa6CDeoC YGS+H1LLi9FO4Da6tGHSaJdUPF3xwHux+bKY76W4=
Date: Wed, 27 May 2020 08:31:35 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY24DHDHJDN75PISA543JUNPEVBNHHCKKKFHA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3689/c634742791@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3689@github.com>
References: <quicwg/base-drafts/pull/3689@github.com>
Subject: Re: [quicwg/base-drafts] Improve HTTP draft wording: frames carry identifier values (#3689)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece87d7bd481_43fe3fbecdccd9601043cf"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eXGDVLZDLgVh5fOqOAbUrT-PEew>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 15:31:38 -0000

----==_mimepart_5ece87d7bd481_43fe3fbecdccd9601043cf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

It can, but a server isn't going to retry push streams on a new connection; it's going to decide *de novo* whether to push there.  Arguably, nothing breaks if the client increases the Push ID on the server after the fact.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634742791
----==_mimepart_5ece87d7bd481_43fe3fbecdccd9601043cf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>It can, but a server isn't going to retry push streams on a new connection; it's going to decide <em>de novo</em> whether to push there.  Arguably, nothing breaks if the client increases the Push ID on the server after the fact.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634742791">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4HYFTYUU2QYZ5XQHTRTUW5PANCNFSM4NIDL3PQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4Y4BOG3OPXMGMYDBDRTUW5PA5CNFSM4NIDL3P2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXKWQBY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634742791",
"url": "https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634742791",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece87d7bd481_43fe3fbecdccd9601043cf--


From nobody Wed May 27 08:32:56 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 90B6C3A0ED5 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:32:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 xIF7T7lZ1LJN for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:32:53 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 594A83A0ECE for <quic-issues@ietf.org>; Wed, 27 May 2020 08:32:53 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id A62CD6E1F8C for <quic-issues@ietf.org>; Wed, 27 May 2020 08:32:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590593572; bh=HTqJnSg/F6yOic1eUnu73I2eptKsLcCWmCYHRQr+qDc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=XO4LXTMPAQHKXrHTvEFhVQRdCzwhWTs75AWeAgj3TKZs0E6UlFJv8p1655xqHjY5T a9IvHcmsmv4XaI/sB1FZ4OU4JX/KqSr+SDqeT9O0AWhmtU3L36PIvKZWgNC5dEyAty WDrLSphcdvOhDhfMTxY/FspJP8payg4CkXi/0RVA=
Date: Wed, 27 May 2020 08:32:52 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2YOSZHPHTSKA2OYNV43JUSJEVBNHHCKKKFHA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3689/c634743717@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3689@github.com>
References: <quicwg/base-drafts/pull/3689@github.com>
Subject: Re: [quicwg/base-drafts] Improve HTTP draft wording: frames carry identifier values (#3689)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece882497c67_43853f89962cd96812298f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LGeSrPpMZR96rl_XGxlkhUX6z8A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 15:32:55 -0000

----==_mimepart_5ece882497c67_43853f89962cd96812298f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

BTW, thanks for catching this.  I appreciate how many of these ambiguities you're winkling out.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634743717
----==_mimepart_5ece882497c67_43853f89962cd96812298f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>BTW, thanks for catching this.  I appreciate how many of these ambiguities you're winkling out.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634743717">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZQROYQ2343E67HU33RTUXCJANCNFSM4NIDL3PQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3H467X6MDLGMFG2ADRTUXCJA5CNFSM4NIDL3P2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXKWXJI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634743717",
"url": "https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634743717",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece882497c67_43853f89962cd96812298f--


From nobody Wed May 27 08:38:35 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 B06C03A0F28 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:38:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 mqQ00WXhtWFE for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:38:32 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7A2183A0F20 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:38:32 -0700 (PDT)
Received: from github-lowworker-b2150d3.ash1-iad.github.net (github-lowworker-b2150d3.ash1-iad.github.net [10.56.113.12]) by smtp.github.com (Postfix) with ESMTP id A752DA1EBB for <quic-issues@ietf.org>; Wed, 27 May 2020 08:38:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590593911; bh=HnQXi44fOrQ8O2HlYEbNmTeq/l0Gbguv2C7HFpDt3vs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=jTw6X+L5ZitCLFFUJlOa8t8NJXJjwL/B/2o4waCA3G9Ud1b/AMnh59MtcWmrFG72c UBiWn0XYx4fC9irRHkA9vgd31cCCyZiG/hSxt1BkqxC/9mJgNuYktaqHM50sFgGPpW 6UraOfka49E5qF3HxOiUt+hoCsSxN2xunrzK48mw=
Date: Wed, 27 May 2020 08:38:31 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK56A4XLFPLQW6OSL4F43JVHPEVBNHHCHVTIIM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3585/634747389@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3585@github.com>
References: <quicwg/base-drafts/issues/3585@github.com>
Subject: Re: [quicwg/base-drafts] Text on ECN probing (#3585)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece897797e45_594a3fc7d08cd96c1742fe"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0-_azqfVvuz6YQGEM68FE9TGKbQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 15:38:34 -0000

----==_mimepart_5ece897797e45_594a3fc7d08cd96c1742fe
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Implementations have a bunch of complexity trade-offs to make. Since the text is non-normative I don't feel obliged to implement this technique. And if I understand it correctly, if I did implement this and ran it on a network path where there were no bad elements, then nothing bad will happen?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634747389
----==_mimepart_5ece897797e45_594a3fc7d08cd96c1742fe
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Implementations have a bunch of complexity trade-offs to make. Since the text is non-normative I don't feel obliged to implement this technique. And if I understand it correctly, if I did implement this and ran it on a network path where there were no bad elements, then nothing bad will happen?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634747389">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5TGUPJSATW6BOAIPDRTUXXPANCNFSM4MJ5KMKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2VPQQD7VGAMVWAQ5DRTUXXPA5CNFSM4MJ5KMK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXKXT7I.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634747389",
"url": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-634747389",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece897797e45_594a3fc7d08cd96c1742fe--


From nobody Wed May 27 08:45:35 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 0193B3A0E9F for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:45:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 WFw333uCT4Zq for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 08:45:32 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AEE2D3A0E9D for <quic-issues@ietf.org>; Wed, 27 May 2020 08:45:32 -0700 (PDT)
Received: from github-lowworker-1ac52d7.ash1-iad.github.net (github-lowworker-1ac52d7.ash1-iad.github.net [10.56.25.52]) by smtp.github.com (Postfix) with ESMTP id F41A56A0AA0 for <quic-issues@ietf.org>; Wed, 27 May 2020 08:45:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590594331; bh=aQd18Yv7r2Knh4XhM3OtcAj9OwCu0mosQxTfsY8zh0Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=C0IIXUnFg6Tu2AqMgePtptuk3B75rDTotvDKxkFSldOha/dw72dqjF3DMl2Ka7b2o RGX4qa1i6bSupXX8gCOBJrNSikJBEUIyTuhCJuHX8/xF+UZzeVyyp/RqkePNu/Gyzo l5GsvMZzZQl8U8DCpDXE4SO9ctlzmH44gyfov+rI=
Date: Wed, 27 May 2020 08:45:31 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5GYSAMDD46Y7Q2U7V43JWBXEVBNHHCKKKFHA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3689/review/419358131@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3689@github.com>
References: <quicwg/base-drafts/pull/3689@github.com>
Subject: Re: [quicwg/base-drafts] Improve HTTP draft wording: frames carry identifier values (#3689)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece8b1be4b9c_65893fbce26cd96c1956e9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vplpfEyU40-wZszuKs1CjEkWoCc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 15:45:34 -0000

----==_mimepart_5ece8b1be4b9c_65893fbce26cd96c1956e9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@LPardue commented on this pull request.



> +frames indicating different identifiers, but the identifier in each frame
+MUST NOT be greater than the identifier in any previous frame, since clients
+might already have retried unprocessed requests on another connection.

I like the improvement but will highlight that this is an alternative way to present the described behaviour later on 

```
Like the server, the client MAY send subsequent GOAWAY
frames so long as the specified Push ID is strictly smaller than all previously
sent values.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3689#pullrequestreview-419358131
----==_mimepart_5ece8b1be4b9c_65893fbce26cd96c1956e9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@LPardue</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3689#discussion_r431244781">draft-ietf-quic-http.md</a>:</p>
<pre style='color:#555'>&gt; +frames indicating different identifiers, but the identifier in each frame
+MUST NOT be greater than the identifier in any previous frame, since clients
+might already have retried unprocessed requests on another connection.
</pre>
<p>I like the improvement but will highlight that this is an alternative way to present the described behaviour later on</p>
<pre><code>Like the server, the client MAY send subsequent GOAWAY
frames so long as the specified Push ID is strictly smaller than all previously
sent values.
</code></pre>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3689#pullrequestreview-419358131">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4MA3AIVQSMBA5HJBDRTUYRXANCNFSM4NIDL3PQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7M62OMX3KGZSCN7MTRTUYRXA5CNFSM4NIDL3P2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODD7OLMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3689#pullrequestreview-419358131",
"url": "https://github.com/quicwg/base-drafts/pull/3689#pullrequestreview-419358131",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece8b1be4b9c_65893fbce26cd96c1956e9--


From nobody Wed May 27 09:34:10 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 ED21A3A0F15 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 09:34:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 1WiGYQ_o4-ZN for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 09:34:07 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3905D3A0F14 for <quic-issues@ietf.org>; Wed, 27 May 2020 09:34:07 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 6F3DE661EE9 for <quic-issues@ietf.org>; Wed, 27 May 2020 09:34:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590597246; bh=t0ItUjOnSeBlq0m07p7QaJj2LiZnA6E+HsPkRktSfww=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=M+u+4WiCSUPcHGsk91fyKcErDGBOqCMqPavJpxBayTBXaACGcbt1+FocfeMKVjXmH O8B1kuORfRhRqAehl4qasBa6lZdYiqjMCPq9Qz9oL3kF4lRUDkhR3cB4tJ//sPxvMF 9MkY8Oh7fYyeofIR3CdroSkFxZtcXVPFVxW2flqs=
Date: Wed, 27 May 2020 09:34:06 -0700
From: Dmitri Tikhonov <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7JB4JKAWC63D2A33N43J3X5EVBNHHCKKKFHA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3689/c634785711@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3689@github.com>
References: <quicwg/base-drafts/pull/3689@github.com>
Subject: Re: [quicwg/base-drafts] Improve HTTP draft wording: frames carry identifier values (#3689)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ece967e60795_71483fe65cecd95c457260"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: dtikhonov
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/hB-o8k484vGQa6IvJVOLvZTwUgE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 16:34:09 -0000

----==_mimepart_5ece967e60795_71483fe65cecd95c457260
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop, @LPardue, OK, lgtm, then.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634785711
----==_mimepart_5ece967e60795_71483fe65cecd95c457260
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/MikeBishop/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/MikeBishop">@MikeBishop</a>, <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/LPardue/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LPardue">@LPardue</a>, OK, lgtm, then.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634785711">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2YOPFUIN4YR22RAGTRTU6H5ANCNFSM4NIDL3PQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYYVD2NMLLKQ2DMLH3RTU6H5A5CNFSM4NIDL3P2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXLA7LY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634785711",
"url": "https://github.com/quicwg/base-drafts/pull/3689#issuecomment-634785711",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ece967e60795_71483fe65cecd95c457260--


From nobody Wed May 27 10:33:54 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 B339D3A0F61 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 10:33:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 YjCl57ioJvDX for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 10:33:43 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 13CB03A102B for <quic-issues@ietf.org>; Wed, 27 May 2020 10:33:42 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 3E8698C10F5 for <quic-issues@ietf.org>; Wed, 27 May 2020 10:33:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590600820; bh=7RzuS1JPGqeN283cjc3GIgrnekYlX769ebH+xGhyFeU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=qDsZlZpqz9m7Mg98C0m2rnESEQlAoa0LSPmKaX5TvGBBMJo1+v6JHa3ubnMln3Pzn E0CS4ro5H6MkJ83FRLSynlg9luIkfyxtFhfxlec+djYCMxIVqFJSX/GbIZK2ECUYx2 HXmbPw1s+oRiwRJDBycKOxThWKSdsl2l6MZueMzM=
Date: Wed, 27 May 2020 10:33:40 -0700
From: mjoras <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK24442PQLJDU5UVUZV43KCXJEVBNHHCFNKKLA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3526/634822736@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3526@github.com>
References: <quicwg/base-drafts/issues/3526@github.com>
Subject: Re: [quicwg/base-drafts] QUIC PTO is too conservative, causing a measurable regression in tail latency (#3526)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecea4742f3c3_49533fd6414cd964194667"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: mjoras
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MKTUQrPHXmlG5gOfVCJAzrVGNbM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 17:33:52 -0000

----==_mimepart_5ecea4742f3c3_49533fd6414cd964194667
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Following up, I ran a test for 4 days on a major country. The results are mostly in line with what @ianswett saw. 

1. Tail response latency (p95) saw a measurable but small decrease of about 1 percent.
2. Various application-level outlier metrics (e.g. time to load images, time to load a feed, etc.) showed slight improvements that also correspond with the change.
3. There were no regressions in any other metrics.

Based on this I think the strategy of arming the first PTO based on max(left_edge + SRTT+4RTTVar, right_edge + 1.5SRTT) is indeed an improvement, but it is not huge.

Based on this I would agree with punting work on this to v2, since we plausibly will have time to come up with different strategies here that may be a larger improvement.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3526#issuecomment-634822736
----==_mimepart_5ecea4742f3c3_49533fd6414cd964194667
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Following up, I ran a test for 4 days on a major country. The results are mostly in line with what <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ianswett/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</a> saw.</p>
<ol>
<li>Tail response latency (p95) saw a measurable but small decrease of about 1 percent.</li>
<li>Various application-level outlier metrics (e.g. time to load images, time to load a feed, etc.) showed slight improvements that also correspond with the change.</li>
<li>There were no regressions in any other metrics.</li>
</ol>
<p>Based on this I think the strategy of arming the first PTO based on max(left_edge + SRTT+4RTTVar, right_edge + 1.5SRTT) is indeed an improvement, but it is not huge.</p>
<p>Based on this I would agree with punting work on this to v2, since we plausibly will have time to come up with different strategies here that may be a larger improvement.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3526#issuecomment-634822736">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6DCHY25UKXHNDNW2TRTVFHJANCNFSM4LMHRHIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZF7ZHMNBLTX6JTIK3RTVFHJA5CNFSM4LMHRHIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXLKAUA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment-634822736",
"url": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment-634822736",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecea4742f3c3_49533fd6414cd964194667--


From nobody Wed May 27 12:46:22 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 8A2603A0AFA for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 12:46:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 nSmhMU6dnqaL for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 12:46:17 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B42593A0AEF for <quic-issues@ietf.org>; Wed, 27 May 2020 12:46:17 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 04EF76A10AD for <quic-issues@ietf.org>; Wed, 27 May 2020 12:46:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590608777; bh=w3my2OBOwAVf5ScJQjd0eLXOk7mLJfLS0KoO6mIhI3g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Y/gPCTmNsMMPQfNc+w1/RtL86HdQLXQ3sDFRRSdPGVKw9nUusf/q+kd7ixOk2Sd1i NfB95Iqex53/VS49KNR/PUlUmUNsdXP/WX8k8OV9hrWyOp0N0T0CZU6uxznj6enPmk yFimL+FmwBGKzxK3y8G9hippr47a/VJFOk8ZsI48=
Date: Wed, 27 May 2020 12:46:16 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK53TEBIELIBYDFQ35N43KSIREVBNHHCFNKKLA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3526/634901504@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3526@github.com>
References: <quicwg/base-drafts/issues/3526@github.com>
Subject: Re: [quicwg/base-drafts] QUIC PTO is too conservative, causing a measurable regression in tail latency (#3526)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecec388e802b_5eeb3fe5b04cd96827083f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aD9NXhY0fey8qSYoo8mlqMOJHM8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 19:46:20 -0000

----==_mimepart_5ecec388e802b_5eeb3fe5b04cd96827083f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks for the data @mjoras !

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3526#issuecomment-634901504
----==_mimepart_5ecec388e802b_5eeb3fe5b04cd96827083f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Thanks for the data <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/mjoras/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mjoras">@mjoras</a> !</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3526#issuecomment-634901504">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7H2OFEBWNKORX5ZNTRTVUYRANCNFSM4LMHRHIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6ZK23TH7NFN5WPPO3RTVUYRA5CNFSM4LMHRHIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXL5IAA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment-634901504",
"url": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment-634901504",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecec388e802b_5eeb3fe5b04cd96827083f--


From nobody Wed May 27 13:11:24 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 9B6593A0B26 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 13:11:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 7ZugR3VtOOuE for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 13:11:22 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0CB643A0B25 for <quic-issues@ietf.org>; Wed, 27 May 2020 13:11:21 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 2E7AF8C119C for <quic-issues@ietf.org>; Wed, 27 May 2020 13:11:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590610281; bh=mzEq6VcmAJCbLL+1A5fDE/nC0gPC3wDT5yRaaQvFdcc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LKtJ1IiCSgpwSz6xRhM88JG/z+HdJ2komWtDd9nooWiMwiNVyNE8/2TBlvKB+wiES 4HxQVXnLGPdbyB77fbIY7SyLAST+P2EsVF8syRnL6h4FQ+4LARo1hIsRYTgmYxfmXO Lg2mxmMwoiJ73qoF9UaaGvIHBqzN1Kj3e/rbheA4=
Date: Wed, 27 May 2020 13:11:21 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK336CAJFLW444WBXAF43KVGTEVBNHHCKOBF24@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3694/c634913499@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3694@github.com>
References: <quicwg/base-drafts/pull/3694@github.com>
Subject: Re: [quicwg/base-drafts] rename SERVER_BUSY to CONNECTION_REFUSED (#3694)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecec9691f965_74a83fd484acd96895545"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/32mRsHnTMyRPsqIDzksaswMMgEo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 20:11:24 -0000

----==_mimepart_5ecec9691f965_74a83fd484acd96895545
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

There was previously no requirement to send this error code under any particular circumstances nor any requirement to take action upon receipt of this error code, and therefore those requirements cannot have been changed.  This modifies the prose around an error code the server could use to reject a connection attempt to make the recommendation more narrow.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3694#issuecomment-634913499
----==_mimepart_5ecec9691f965_74a83fd484acd96895545
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>There was previously no requirement to send this error code under any particular circumstances nor any requirement to take action upon receipt of this error code, and therefore those requirements cannot have been changed.  This modifies the prose around an error code the server could use to reject a connection attempt to make the recommendation more narrow.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3694#issuecomment-634913499">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZI3XTE4PWOE2MQ5U3RTVXWTANCNFSM4NJWVD7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7EKTAYUMCKXCV622TRTVXWTA5CNFSM4NJWVD7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXMAFWY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3694#issuecomment-634913499",
"url": "https://github.com/quicwg/base-drafts/pull/3694#issuecomment-634913499",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecec9691f965_74a83fd484acd96895545--


From nobody Wed May 27 13:14:07 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 26F4F3A0B29 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 13:14:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 X8auUq-lVFrx for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 13:14:04 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DAB5A3A0B27 for <quic-issues@ietf.org>; Wed, 27 May 2020 13:14:03 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 1EEE7C605ED for <quic-issues@ietf.org>; Wed, 27 May 2020 13:14:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590610443; bh=qLXso0hQtJkcMbGKtrTkAzpZwlu1d6L2piQqj56y89E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=S/7rF/EfyLAfYBQs+/Xdc0ucLSR4aRqta5ku5IGJG736iuYHMJfN2O+VODDmhrLIh Pl6qar6t8+ss5pyiS3SvaGBef0EW6vafQUh9sOzNjFTmrxTmTnsd8YnrcZFNOqBOJf 4X6LyxtCeZxOgqy3WIFy0N64wEzeiDuip2/cBSUU=
Date: Wed, 27 May 2020 13:14:03 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5K3JMSD6DWVVALUDF43KVQXEVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/review/419573888@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ececa0bfef0_2f363ff6fc6cd9689004c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LhEk46OfUrIn6DLf8X1LAmlPxqo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 20:14:05 -0000

----==_mimepart_5ececa0bfef0_2f363ff6fc6cd9689004c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop commented on this pull request.



>  
 * absence of the retry_source_connection_id transport parameter from the server
   after receiving a Retry packet,
 
 * presence of the retry_source_connection_id transport parameter when no Retry
-  packet was received, or

Why no "or"?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-419573888
----==_mimepart_5ececa0bfef0_2f363ff6fc6cd9689004c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@MikeBishop</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3691#discussion_r431415227">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
 * absence of the retry_source_connection_id transport parameter from the server
   after receiving a Retry packet,
 
 * presence of the retry_source_connection_id transport parameter when no Retry
-  packet was received, or
</pre>
<p>Why no "or"?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-419573888">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK25TMF6AUOWSKOAERLRTVYAXANCNFSM4NIXGKBA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2LM2EPQKMUWFZ34ATRTVYAXA5CNFSM4NIXGKBKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEBDBAA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-419573888",
"url": "https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-419573888",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ececa0bfef0_2f363ff6fc6cd9689004c--


From nobody Wed May 27 14:07:37 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 6ABDA3A0BE1 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 14:07:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.553
X-Spam-Level: 
X-Spam-Status: No, score=-1.553 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, 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 LAedzQM9hAjO for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 14:07:33 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9AD503A0BDB for <quic-issues@ietf.org>; Wed, 27 May 2020 14:07:33 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 9F6DE521F19 for <quic-issues@ietf.org>; Wed, 27 May 2020 14:07:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590613652; bh=/1bCPTfo8MmTYblcPVM5u+u7qJ5+hMnh5Ti3YEcjfrM=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=eu1pDbl99eYB2LyzUHiDNRv1Nbwa7z58WJpDlr/rn0uQujcpbgm7fNQ1YyZeYrO44 2X0YEjWBmtv3TwT38348nOFCrUsP19hGqD7sH9Wn4cuuaPw4O6yAFiRL2tDavlan6R 23MXpZ2PItGAKQa4LE9o9zPnbclbm82+BhMyJg10=
Date: Wed, 27 May 2020 14:07:32 -0700
From: Rui Paulo <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5VSEEGSWBXDI5HHZ543K3ZJEVBNHHCKUD27U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3705@github.com>
Subject: [quicwg/base-drafts] Fix pseudocode typo in OnPacketNumberSpaceDiscarded(). (#3705)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5eced6948fb43_3cc63fabe1ecd96c274653"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: rpaulo
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/XobGcX-IYPLQSoohvPghDkxeH7k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 21:07:35 -0000

----==_mimepart_5eced6948fb43_3cc63fabe1ecd96c274653
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit


You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3705

-- Commit Summary --

  * Fix pseudocode typo in OnPacketNumberSpaceDiscarded().

-- File Changes --

    M draft-ietf-quic-recovery.md (2)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3705.patch
https://github.com/quicwg/base-drafts/pull/3705.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3705

----==_mimepart_5eced6948fb43_3cc63fabe1ecd96c274653
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3705'>https://github.com/quicwg/base-drafts/pull/3705</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Fix pseudocode typo in OnPacketNumberSpaceDiscarded().</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3705/files#diff-98295c891c68edd662536cf2a42bf089">draft-ietf-quic-recovery.md</a>
    (2)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3705.patch'>https://github.com/quicwg/base-drafts/pull/3705.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3705.diff'>https://github.com/quicwg/base-drafts/pull/3705.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3705">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYZOQOHNWU7WNCU5X3RTV6JJANCNFSM4NMQAREA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4FRX2DLO7QWAX6COTRTV6JJA5CNFSM4NMQAREKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JKQPL6Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3705",
"url": "https://github.com/quicwg/base-drafts/pull/3705",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5eced6948fb43_3cc63fabe1ecd96c274653--


From nobody Wed May 27 16:30:18 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 0A7CC3A0D9E for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:30:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 YRHlHj9qs0e0 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:30:15 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9594C3A0B6D for <quic-issues@ietf.org>; Wed, 27 May 2020 16:30:15 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 96F292C0FF6 for <quic-issues@ietf.org>; Wed, 27 May 2020 16:30:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590622214; bh=w/Obb/O+80EP61OswZWe/dw1Z7bR3nKtnZNoFE7yvWw=; h=Date:From:To:Subject:From; b=Sg0+5rkvPFImKaFdZia5M82X7ymaYVgKcBaibmgfZJv/vbIMg1ZSNaY6BrO0QUjI5 f8JeNQsBFaxlpvDn8eu1udtmrGlZa8BDF9VIZ1otCfj72vQvKU3fvRR7rFzLXVEHMD 8Zztnq4TSb0VbpBmn5hj2ry76T0CQq1MZ6SdYhIM=
Date: Wed, 27 May 2020 16:30:14 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dplpmtud-merge/cbfb4d-0d20f5@github.com>
Subject: [quicwg/base-drafts] 0d82dd: Update draft-ietf-quic-transport.md=0D
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Atd75fjRQ9eWcIvm_Kg8aAI-qZA>
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: Wed, 27 May 2020 23:30:17 -0000

  Branch: refs/heads/dplpmtud-merge
  Home:   https://github.com/quicwg/base-drafts
  Commit: 0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc
      https://github.com/quicwg/base-drafts/commit/0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Understood, and corrected.

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: 4692d921098e16403fb2406aca767a5d1475520b
      https://github.com/quicwg/base-drafts/commit/4692d921098e16403fb2406aca767a5d1475520b
  Author: Gorry Fairhurst <gorry@erg.abdn.ac.uk>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Update draft-ietf-quic-transport.md

Changes to resolve description of probe packets and need to explain the maximum size.


  Commit: 0d20f5448aa08f89ae439e49bbeb9653aa62d5b3
      https://github.com/quicwg/base-drafts/commit/0d20f5448aa08f89ae439e49bbeb9653aa62d5b3
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge branch 'patch-2' of https://github.com/gorryfair/base-drafts into dplpmtud-merge

Integrate latest changes from the source


Compare: https://github.com/quicwg/base-drafts/compare/cbfb4d1d7e5e...0d20f5448aa0


From nobody Wed May 27 16:30:26 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 E62F43A0DA7 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:30:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 vj_6N9ZILpgu for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:30:23 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C19473A0B6D for <quic-issues@ietf.org>; Wed, 27 May 2020 16:30:23 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 272A62C0AC3 for <quic-issues@ietf.org>; Wed, 27 May 2020 16:30:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590622223; bh=YWPKgvUz68A0H5eEtv4OWD+Ls/B4ap0JEIwUdaZVynU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=dlO/oWI5+dqHDtoxe5Zn8C5FNxIYVJphUFvhq5wXWeIwgnfqmYIX2vznGc+dTjVRe A3Ss/pJPjEsuAzyVjJyAliE6P80J58pNhw6PetHT8CbBnYZsVJYVIv00/ZSiR8Cz35 qIzKc7ToivPmYtkMjYBU5Bm3P7Lm1ufEStu4UkN0=
Date: Wed, 27 May 2020 16:30:23 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/push/5138765898@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecef80f1780c_4ebd3fcd1b4cd95c1646bb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/D93LFPqlIQJ_IRPNaoAuBqmqb5g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 23:30:25 -0000

----==_mimepart_5ecef80f1780c_4ebd3fcd1b4cd95c1646bb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 3 commits.

0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc  Update draft-ietf-quic-transport.md
4692d921098e16403fb2406aca767a5d1475520b  Update draft-ietf-quic-transport.md
0d20f5448aa08f89ae439e49bbeb9653aa62d5b3  Merge branch 'patch-2' of https://github.com/gorryfair/base-drafts into dplpmtud-merge


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702/files/cbfb4d1d7e5edaca5829327d82c3f983c5c32cd8..0d20f5448aa08f89ae439e49bbeb9653aa62d5b3

----==_mimepart_5ecef80f1780c_4ebd3fcd1b4cd95c1646bb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 3 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/0d82ddcf5def2a4c3cc72d31384d302a1e7cd4dc">0d82ddc</a>  Update draft-ietf-quic-transport.md
</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/4692d921098e16403fb2406aca767a5d1475520b">4692d92</a>  Update draft-ietf-quic-transport.md</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/0d20f5448aa08f89ae439e49bbeb9653aa62d5b3">0d20f54</a>  Merge branch &#39;patch-2&#39; of https://github.com/gorryfair/base-drafts into dplpmtud-merge</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3702/files/cbfb4d1d7e5edaca5829327d82c3f983c5c32cd8..0d20f5448aa08f89ae439e49bbeb9653aa62d5b3">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZQAPGJ5QG2XQ4ZJ7DRTWPA7ANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7JVSIG2AVEGFLAJZLRTWPA7A5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDGNJTGUZDMM2QOVZWQIZVGEZTQNZWGU4DSOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702/files/cbfb4d1d7e5edaca5829327d82c3f983c5c32cd8..0d20f5448aa08f89ae439e49bbeb9653aa62d5b3",
"url": "https://github.com/quicwg/base-drafts/pull/3702/files/cbfb4d1d7e5edaca5829327d82c3f983c5c32cd8..0d20f5448aa08f89ae439e49bbeb9653aa62d5b3",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecef80f1780c_4ebd3fcd1b4cd95c1646bb--


From nobody Wed May 27 16:43: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 0FD5D3A0DE2 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:43:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 NDOFXihE8DUS for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:43:45 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C0B283A0DFE for <quic-issues@ietf.org>; Wed, 27 May 2020 16:43:45 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 509D7A04D4 for <quic-issues@ietf.org>; Wed, 27 May 2020 16:43:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590623024; bh=pRdGHLQ64i39wBiQ6YOJaVi5uCMmUvF+eFXmYD9WScU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=p0HW7kjO+rGK2sivmtgCzAXRsYoOCiI2lV9vPTjGiiT5bdAs3F2ffMzgtgeO4yGDD TMB3ij3CEzhPfpRXNxzLqQj2v1SmUFziXYxVWiGFv0hBH1wLWjfjiQbKnx5Djc0VCR BFT1TFkIc8wAmG7hQ/Q/cs2b5Q873ztbsw59a5j0=
Date: Wed, 27 May 2020 16:43:44 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3XJ33TBVRP3VNCXTF43LODBEVBNHHCKNQYNU@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3693/c635001726@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3693@github.com>
References: <quicwg/base-drafts/pull/3693@github.com>
Subject: Re: [quicwg/base-drafts] Integrate QUIC text from DPLPMTUD (#3693)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecefb3041801_41fd3ff8850cd95c349c2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/LKD8QBLjmKmXrZ-OibF-Xq2oYTc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 23:43:54 -0000

----==_mimepart_5ecefb3041801_41fd3ff8850cd95c349c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Gorry, I have integrated the changes you recently made (all good ones) in #3702.  And as long as you are happy with that, then we can close this and use that instead.

Then all we need to do is give others a chance to comment.  Given the state of this, I'm happy to handle comments (that's the true cost of moving to the other PR).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3693#issuecomment-635001726
----==_mimepart_5ecefb3041801_41fd3ff8850cd95c349c2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Gorry, I have integrated the changes you recently made (all good ones) in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="625286625" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3702" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3702/hovercard" href="https://github.com/quicwg/base-drafts/pull/3702">#3702</a>.  And as long as you are happy with that, then we can close this and use that instead.</p>
<p>Then all we need to do is give others a chance to comment.  Given the state of this, I'm happy to handle comments (that's the true cost of moving to the other PR).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3693#issuecomment-635001726">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5SQBQV7OQG7OXKE4DRTWQTBANCNFSM4NJQ432A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK55KQ5R24HGHHEWFMDRTWQTBA5CNFSM4NJQ432KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXMVW7Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3693#issuecomment-635001726",
"url": "https://github.com/quicwg/base-drafts/pull/3693#issuecomment-635001726",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecefb3041801_41fd3ff8850cd95c349c2--


From nobody Wed May 27 16:45:04 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 35CD23A0DAE for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:45:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 3Ew99qjF6zqR for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:45:02 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0E37F3A0B7C for <quic-issues@ietf.org>; Wed, 27 May 2020 16:45:02 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 508CC6A0057 for <quic-issues@ietf.org>; Wed, 27 May 2020 16:45:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590623101; bh=WDsmKxCaCtaLkSvv6yBd+OG8mPqMykGo/RA+bcsq8W4=; h=Date:From:To:Subject:From; b=b/c/y1pjvu9JEgBDkYV4LKcRM5hz8DwAFtk/ND9EsptIYpDGvIG3214MXCjuSWJ8L /wKsOhLGnBe6H2GuAOXSdquNTLuNYmapAH0yk36K8AKmO8hAWXYZiLcSegHEPCIJcF 2h8BwKPTkKZ6gyGNYxUo2WzsO0nv/tMBdyBqKB/o=
Date: Wed, 27 May 2020 16:45:01 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dplpmtud-merge/0d20f5-fef600@github.com>
Subject: [quicwg/base-drafts] fef600: Reflow
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/v9h7nQ5UaNBepscH_KnrMMP5i-Q>
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: Wed, 27 May 2020 23:45:03 -0000

  Branch: refs/heads/dplpmtud-merge
  Home:   https://github.com/quicwg/base-drafts
  Commit: fef600022a6c6e770ac905b529c6f394da7c11ae
      https://github.com/quicwg/base-drafts/commit/fef600022a6c6e770ac905b529c6f394da7c11ae
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Reflow



From nobody Wed May 27 16:45:15 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 8D9D23A0B82 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:45:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 0fRHMX9GSHPE for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:45:12 -0700 (PDT)
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 63A633A0B7C for <quic-issues@ietf.org>; Wed, 27 May 2020 16:45:12 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 39F5F2806E2 for <quic-issues@ietf.org>; Wed, 27 May 2020 16:45:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590623111; bh=LdMly9VEe1lpP9ab6BK4PA9ZGKq3R8c3W3y0jpBKMMA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=gfplCIeh/22nFYtkscwgT2Oi3bST+7ut5IGRAAJbcQ5DaRAcX6XCDc8HDlINXBMkE q28bESF2AiNzRLHzyzpnFKxlRMgIxeatkdXXJDSjJV+EZBqFk8jHIyRpCWnyLn6GnK jn65wjstBeW6mh71gj6hxEf1HgGBQxxCTe+XHWHU=
Date: Wed, 27 May 2020 16:45:11 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/push/5138809447@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecefb872b08d_44c23f7f634cd96c79586"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/AlT-hoDOj01dfBeJ8SuLgtFG2cg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Wed, 27 May 2020 23:45:14 -0000

----==_mimepart_5ecefb872b08d_44c23f7f634cd96c79586
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

fef600022a6c6e770ac905b529c6f394da7c11ae  Reflow


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702/files/0d20f5448aa08f89ae439e49bbeb9653aa62d5b3..fef600022a6c6e770ac905b529c6f394da7c11ae

----==_mimepart_5ecefb872b08d_44c23f7f634cd96c79586
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/fef600022a6c6e770ac905b529c6f394da7c11ae">fef6000</a>  Reflow</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3702/files/0d20f5448aa08f89ae439e49bbeb9653aa62d5b3..fef600022a6c6e770ac905b529c6f394da7c11ae">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4F5HACZWVGLGGMT7TRTWQYPANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYNTGBERLLKQRUC4TDRTWQYPA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDGNJTGUZDMM2QOVZWQIZVGEZTQOBQHE2DINY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702/files/0d20f5448aa08f89ae439e49bbeb9653aa62d5b3..fef600022a6c6e770ac905b529c6f394da7c11ae",
"url": "https://github.com/quicwg/base-drafts/pull/3702/files/0d20f5448aa08f89ae439e49bbeb9653aa62d5b3..fef600022a6c6e770ac905b529c6f394da7c11ae",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecefb872b08d_44c23f7f634cd96c79586--


From nobody Wed May 27 16:46:03 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 681D43A0DB1 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:46:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 wI0iZrn9-mU5 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:46:00 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 590C13A0DAE for <quic-issues@ietf.org>; Wed, 27 May 2020 16:46:00 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id BA1B98C0069 for <quic-issues@ietf.org>; Wed, 27 May 2020 16:45:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590623159; bh=vLndpqcQyCo4EKaj4CFNpvBTZH1w9CqvAFm/in/baX4=; h=Date:From:To:Subject:From; b=isH3/D7CvuUBQcUybUIVqckzdRBbDR6GGQ5uLnDqGAB4hXZNS062Xr0n3e8E19XqS +4JVBAt8H1Llgpfej9xIqxwA7ckEA6fwACqoel0aIcUz3XCT4vxdPzOkXdjC4JemIO bY0iFafqeQPMqYapii2Vp7OVhDOfhf2rhh12fPiE=
Date: Wed, 27 May 2020 16:45:59 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/fcad8a-80c8c6@github.com>
Subject: [quicwg/base-drafts] 80c8c6: Script updating gh-pages from fef60002. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/QeK3OQllsI1T8P2IsrfTVU6DeBQ>
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: Wed, 27 May 2020 23:46:01 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 80c8c605a110cf15fe9f7f568ed39694fc915756
      https://github.com/quicwg/base-drafts/commit/80c8c605a110cf15fe9f7f568ed39694fc915756
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M dplpmtud-merge/draft-ietf-quic-transport.html
    M dplpmtud-merge/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from fef60002. [ci skip]



From nobody Wed May 27 16:46:14 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 6AF403A0DB0 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:46:12 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Nbi_Fc_-o82R for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 16:46:11 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4EF0A3A0DB1 for <quic-issues@ietf.org>; Wed, 27 May 2020 16:46:11 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 6FC4E6E1105 for <quic-issues@ietf.org>; Wed, 27 May 2020 16:46:10 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590623170; bh=rNerIK1a0w2YxKqTc9aVNtaztLXUXqEnBs1O3mgA+rk=; h=Date:From:To:Subject:From; b=EwYbjx95M/sihQ6A0SIJTUwylkr5fpggNmsGql8drCnqRrTHjmneGlVFzAqI0jWEx 2tNmHX+5JFx9QmRyvor+Aw4zvYgFyfE9vvFT8ofmR93Frt7KDqbu+W97xdDQlQEqei EhPjn2/8u5sUaKIk5vsk29ua3lGq2YI3me+rL+QQ=
Date: Wed, 27 May 2020 16:46:10 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/80c8c6-119905@github.com>
Subject: [quicwg/base-drafts] 119905: Script updating archive at 2020-05-27T23:45:51Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/u1_F9JNCWP3MnNZeTZZPxxoJoF8>
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: Wed, 27 May 2020 23:46:12 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 11990548659373e97f4bad35f2350244bbc27306
      https://github.com/quicwg/base-drafts/commit/11990548659373e97f4bad35f2350244bbc27306
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-27T23:45:51Z. [ci skip]



From nobody Wed May 27 17:36:16 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 4601C3A0029 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 17:36:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 l_iWnBhJILPy for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 17:36:13 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 43B1F3A0028 for <quic-issues@ietf.org>; Wed, 27 May 2020 17:36:13 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 6A25C960505 for <quic-issues@ietf.org>; Wed, 27 May 2020 17:36:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590626172; bh=8OmJBsyfzMOamqK/s64rvCY+EulBwUVmBKKXbd32tmM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IcmRVrRbQ8Xge2DLReL8mC64YL5iebY/GuFsJw95VALcg37H9CNMmIQ/I7mDyEA1W NjSYlfTihlHDMN4IzlY55BYCFJlKR+MFJccYzeINETKgfGOsTn4M8ky1Xgt4rLE3sY TvNeWrLMpNl/ik4dhYuKMdsgne9po59PG33NvXnw=
Date: Wed, 27 May 2020 17:36:12 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK67GAY5LB5XIL33XO543LUHZEVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/review/419701561@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf077c5a636_2bb93fb6500cd960121589"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xhBhPT_GFJYhQM13BzjTCtuB5Hk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 00:36:14 -0000

----==_mimepart_5ecf077c5a636_2bb93fb6500cd960121589
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-419701561
----==_mimepart_5ecf077c5a636_2bb93fb6500cd960121589
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-419701561">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3KUROALTB6GD2MWXLRTWWXZANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZKZ544Z5LQXIINMD3RTWWXZA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODECCGOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-419701561",
"url": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-419701561",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecf077c5a636_2bb93fb6500cd960121589--


From nobody Wed May 27 18:14:09 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 2CF823A0A19 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:14:00 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 3OAdnMLs49UZ for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:13:59 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 884A83A07C7 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:13:55 -0700 (PDT)
Received: from github-lowworker-ca5950c.va3-iad.github.net (github-lowworker-ca5950c.va3-iad.github.net [10.48.17.57]) by smtp.github.com (Postfix) with ESMTP id 93D2F6A0B56 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:13:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590628434; bh=IePGJ+vp6UvchsgMukn9rq/OFAWuxMot6KUFjUlVf6Q=; h=Date:From:To:Subject:From; b=UYrbegUYBd+/qBhke1ft2eaoFZyT0poi+irlZp+OrMRQxd8bIgz8xSsIj3ikyq15p Hx44cME2LHf48VTz7jh6gRtoiFqyiitBk5+KFNG+3Z5ZNcaa4mEb8CK0pQe/zSFu4D VDm6DQjzFyutYWNW0WSQ4GgN3scp6s8aas/UD4wo=
Date: Wed, 27 May 2020 18:13:54 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dplpmtud-merge/fef600-d28c63@github.com>
Subject: [quicwg/base-drafts] e01a04: IP packet size is 1280
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/b_1L5SQPlqEwzed05DXwdSP3g1g>
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: Thu, 28 May 2020 01:14:08 -0000

  Branch: refs/heads/dplpmtud-merge
  Home:   https://github.com/quicwg/base-drafts
  Commit: e01a0418dcfad8d7e325693527eb16239f976639
      https://github.com/quicwg/base-drafts/commit/e01a0418dcfad8d7e325693527eb16239f976639
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  IP packet size is 1280


  Commit: a31a0460749712ff89d41a05a7320470fcf3bd21
      https://github.com/quicwg/base-drafts/commit/a31a0460749712ff89d41a05a7320470fcf3bd21
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Remove duplicate text


  Commit: a9b7969b608081162ae67f7f2bf89f5cb5532b4d
      https://github.com/quicwg/base-drafts/commit/a9b7969b608081162ae67f7f2bf89f5cb5532b4d
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Remove has 1-RTT key clause as redundant


  Commit: d28c636b08e147fa7d056f6ebc2e65b85b88243e
      https://github.com/quicwg/base-drafts/commit/d28c636b08e147fa7d056f6ebc2e65b85b88243e
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Editorial comments based on Gorry's feedback


Compare: https://github.com/quicwg/base-drafts/compare/fef600022a6c...d28c636b08e1


From nobody Wed May 27 18:14:21 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 6E38A3A0984 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:14:11 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 eYYWdrcS5wr9 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:14:10 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C3A963A09A3 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:14:04 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id E9BEA1C099E for <quic-issues@ietf.org>; Wed, 27 May 2020 18:14:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590628443; bh=aiosn+JTFAvEVf5brNhEWTOFKKSTEy4+jFY0Q2bbTl4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=edZmZ0lWrfKkrRq9V5/n413McAFjdIr7xv8wpjqOWyNwHsJd8BOBhrHAvmeYeDUJj 2+GI0e7IAkmE0r0tnpG12lKIHNoQJ0eFoMW1XL4CiSt0kSD5MV5oyVmhfF8aU2fuuD +sTkok0iYw3XzFzs9FiSojFDno55QhhnLtHHGK2o=
Date: Wed, 27 May 2020 18:14:03 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/push/5139056580@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf105bda29c_3b2a3ff043ccd968577f5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lZgc_E6fzWjQw_JAEp-Nzuw8n7A>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 01:14:19 -0000

----==_mimepart_5ecf105bda29c_3b2a3ff043ccd968577f5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 4 commits.

e01a0418dcfad8d7e325693527eb16239f976639  IP packet size is 1280
a31a0460749712ff89d41a05a7320470fcf3bd21  Remove duplicate text
a9b7969b608081162ae67f7f2bf89f5cb5532b4d  Remove has 1-RTT key clause as redundant
d28c636b08e147fa7d056f6ebc2e65b85b88243e  Editorial comments based on Gorry's feedback


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702/files/fef600022a6c6e770ac905b529c6f394da7c11ae..d28c636b08e147fa7d056f6ebc2e65b85b88243e

----==_mimepart_5ecf105bda29c_3b2a3ff043ccd968577f5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 4 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/e01a0418dcfad8d7e325693527eb16239f976639">e01a041</a>  IP packet size is 1280</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/a31a0460749712ff89d41a05a7320470fcf3bd21">a31a046</a>  Remove duplicate text</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/a9b7969b608081162ae67f7f2bf89f5cb5532b4d">a9b7969</a>  Remove has 1-RTT key clause as redundant</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/d28c636b08e147fa7d056f6ebc2e65b85b88243e">d28c636</a>  Editorial comments based on Gorry&#39;s feedback</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3702/files/fef600022a6c6e770ac905b529c6f394da7c11ae..d28c636b08e147fa7d056f6ebc2e65b85b88243e">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4PPYFXERVUYQAWG5TRTW3FXANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK532KSPPIVLPPJF66LRTW3FXA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDGNJTGUZDMM2QOVZWQIZVGEZTSMBVGY2TQMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702/files/fef600022a6c6e770ac905b529c6f394da7c11ae..d28c636b08e147fa7d056f6ebc2e65b85b88243e",
"url": "https://github.com/quicwg/base-drafts/pull/3702/files/fef600022a6c6e770ac905b529c6f394da7c11ae..d28c636b08e147fa7d056f6ebc2e65b85b88243e",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecf105bda29c_3b2a3ff043ccd968577f5--


From nobody Wed May 27 18:14:43 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 D6A123A07C3 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:14:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 EKhug4FrWJnv for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:14:32 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 34DEC3A07F2 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:14:31 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id CB37E661E7B for <quic-issues@ietf.org>; Wed, 27 May 2020 18:14:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590628469; bh=vl+UUhrcUR6xLWjz+s8hoxupHFBZzURr8Xe83kmvz2k=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=W1xJ1Qh+8dfgSb6+2lccvayxiN7CXCaZnABpfhsJBejzIQzuJwXKxI0cwMtSNRVf1 aMdOe7xo2GsNPppnwzx6vRm+cA0YkBZuGixlJ16mGse/fEr3QJ+nZrtjZtPzs3GYpJ JIrfab+VeM77Wjv4ss/yX5gtxGNhCcYTGQgt9EC4=
Date: Wed, 27 May 2020 18:14:29 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2KG6TQZMGOROD447N43LYXLEVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/419710667@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf1075bc086_3b243ff043ccd968617c1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SPXy2d6qGn2tPVgFnNgotgugdhg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 01:14:42 -0000

----==_mimepart_5ecf1075bc086_3b243ff043ccd968617c1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.

Thanks for the review Gorry.  You caught a few mistakes - one of them being quite old.

> @@ -3797,19 +3797,24 @@ later time in the connection.
 The QUIC packet size includes the QUIC header and protected payload, but not the
 UDP or IP header.
 
+QUIC depends upon a minimum packet size of at least 1280 bytes.  This is the

Good point.  That's been sitting there for ages and you are the first to notice.

>  
-The considerations for processing ICMP messages in the previous section also
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has
+established a 1-RTT key.

Yep.  Missed that in my pass.  Corrected.

>  
-The considerations for processing ICMP messages in the previous section also
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has
+established a 1-RTT key.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame therefore implement "Probing using padding data", as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current

The coalescing part sort of reveals a flaw in the construction though.  It shows that the probe really uses datagrams.  At this level, I think that assuming the hack (coalescing with junk Handshake) is not involved, is OK.  Happy to take suggestions though, because this is definitely awkward.

> +DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.
+
+
+### Validating the QUIC Path with DPLPMTUD
+
+QUIC provides an acknowledged PL, therefore a sender does not implement the
+DPLPMTUD CONFIRMATION_TIMER while in the SEARCH_COMPLETE state.
+
+
+### Handling of ICMP Messages by DPLPMTUD
+
+An endpoint using DPLPMTUD requires the validation of any received PTB message
+before using the PTB information, as defined in Section 4.6 of {{!DPLPMTUD}}.
+In addition to UDP Port validation, QUIC validates an ICMP message by using
+other PL information (e.g., validation of connection identifiers (CIDs) in the

I don't think we use is, so thanks for drawing attention to it.  We use "connection ID" and so I have fixed this.

> -
-One way to construct a probe for the path MTU is to coalesce (see
-{{packet-coalesce}}) a Handshake packet ({{packet-handshake}}) with a short
-header packet in a single UDP datagram.  If the UDP datagram reaches the
-endpoint, the Handshake packet will be ignored, but the short header packet will
-be acknowledged.  If the UDP datagram causes an ICMP message to be sent, the
-first part of the datagram will be quoted in that message.  If the source
-connection ID is within the quoted portion of the UDP datagram, that could be
-used for routing.
+packets are likely to require that the connection ID be included in
+PMTUD/DPLPMTUD probe packets to route any resulting ICMP messages
+({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a

Yeah, this should be either.

> -used for routing.
+packets are likely to require that the connection ID be included in
+PMTUD/DPLPMTUD probe packets to route any resulting ICMP messages
+({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+

Good point.  And it is either.  (Though using other junk in the packet might be better for validation, if the quoted part is indeed long enough.  One real concern with this hack is that the router might not quote enough of the packet include the the whole Source Connection ID field, especially if the Destination Connection ID - which you can't truncate either - has to be longer.)

> +({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+
+Note:
+: The purpose of using a packet with a long header is only to ensure that the
+  quoted packet contained in the ICMP message contains a Source Connection ID

We've taken to writing these out in full.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-419710667
----==_mimepart_5ecf1075bc086_3b243ff043ccd968617c1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<p>Thanks for the review Gorry.  You caught a few mistakes - one of them being quite old.</p><hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431526520">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3797,19 +3797,24 @@ later time in the connection.
 The QUIC packet size includes the QUIC header and protected payload, but not the
 UDP or IP header.
 
+QUIC depends upon a minimum packet size of at least 1280 bytes.  This is the
</pre>
<p>Good point.  That's been sitting there for ages and you are the first to notice.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431526817">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-The considerations for processing ICMP messages in the previous section also
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has
+established a 1-RTT key.
</pre>
<p>Yep.  Missed that in my pass.  Corrected.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431527472">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-The considerations for processing ICMP messages in the previous section also
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has
+established a 1-RTT key.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame therefore implement &quot;Probing using padding data&quot;, as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current
</pre>
<p>The coalescing part sort of reveals a flaw in the construction though.  It shows that the probe really uses datagrams.  At this level, I think that assuming the hack (coalescing with junk Handshake) is not involved, is OK.  Happy to take suggestions though, because this is definitely awkward.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431527683">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.
+
+
+### Validating the QUIC Path with DPLPMTUD
+
+QUIC provides an acknowledged PL, therefore a sender does not implement the
+DPLPMTUD CONFIRMATION_TIMER while in the SEARCH_COMPLETE state.
+
+
+### Handling of ICMP Messages by DPLPMTUD
+
+An endpoint using DPLPMTUD requires the validation of any received PTB message
+before using the PTB information, as defined in Section 4.6 of {{!DPLPMTUD}}.
+In addition to UDP Port validation, QUIC validates an ICMP message by using
+other PL information (e.g., validation of connection identifiers (CIDs) in the
</pre>
<p>I don't think we use is, so thanks for drawing attention to it.  We use "connection ID" and so I have fixed this.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431527736">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -
-One way to construct a probe for the path MTU is to coalesce (see
-{{packet-coalesce}}) a Handshake packet ({{packet-handshake}}) with a short
-header packet in a single UDP datagram.  If the UDP datagram reaches the
-endpoint, the Handshake packet will be ignored, but the short header packet will
-be acknowledged.  If the UDP datagram causes an ICMP message to be sent, the
-first part of the datagram will be quoted in that message.  If the source
-connection ID is within the quoted portion of the UDP datagram, that could be
-used for routing.
+packets are likely to require that the connection ID be included in
+PMTUD/DPLPMTUD probe packets to route any resulting ICMP messages
+({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
</pre>
<p>Yeah, this should be either.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431528436">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -used for routing.
+packets are likely to require that the connection ID be included in
+PMTUD/DPLPMTUD probe packets to route any resulting ICMP messages
+({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+
</pre>
<p>Good point.  And it is either.  (Though using other junk in the packet might be better for validation, if the quoted part is indeed long enough.  One real concern with this hack is that the router might not quote enough of the packet include the the whole Source Connection ID field, especially if the Destination Connection ID - which you can't truncate either - has to be longer.)</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431528518">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+
+Note:
+: The purpose of using a packet with a long header is only to ensure that the
+  quoted packet contained in the ICMP message contains a Source Connection ID
</pre>
<p>We've taken to writing these out in full.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-419710667">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4MUONEJEF2G6OYETDRTW3HLANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7VB7AZFMSQPE2PVZTRTW3HLA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODECENSY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-419710667",
"url": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-419710667",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecf1075bc086_3b243ff043ccd968617c1--


From nobody Wed May 27 18:15:30 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 242343A005B for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:15:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 r00Bf7grKpm0 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:15:28 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 157903A003E for <quic-issues@ietf.org>; Wed, 27 May 2020 18:15:28 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id 6F4126A0A9D for <quic-issues@ietf.org>; Wed, 27 May 2020 18:15:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590628527; bh=deO/mYMWQ3kLrxVcH/Oxlvj8lfjeWqSGyw050T0dbUY=; h=Date:From:To:Subject:From; b=AvE75vS47yGzMRWrlwkA7sk204SVSa3cpowdXDGqvvdprUkTbBIyeUQCOUn2NErAd XSZXCFXD9sXonHpzliNshogVfczD5dMU5+F/2mzhkms2+IL8lUdccvCW99tuEO76h/ jMUu+4YyFPsxnizSdhjsSj3RUEegq4Xw/qZtyCEw=
Date: Wed, 27 May 2020 18:15:27 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/119905-6148e9@github.com>
Subject: [quicwg/base-drafts] 6148e9: Script updating gh-pages from d28c636b. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CtM31Xbh1WcVTCL2YodiAEbHTYA>
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: Thu, 28 May 2020 01:15:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6148e9b8e3129d5f918d144b3183c3a1f301e274
      https://github.com/quicwg/base-drafts/commit/6148e9b8e3129d5f918d144b3183c3a1f301e274
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M dplpmtud-merge/draft-ietf-quic-http.html
    M dplpmtud-merge/draft-ietf-quic-http.txt
    M dplpmtud-merge/draft-ietf-quic-invariants.html
    M dplpmtud-merge/draft-ietf-quic-invariants.txt
    M dplpmtud-merge/draft-ietf-quic-qpack.html
    M dplpmtud-merge/draft-ietf-quic-qpack.txt
    M dplpmtud-merge/draft-ietf-quic-recovery.html
    M dplpmtud-merge/draft-ietf-quic-recovery.txt
    M dplpmtud-merge/draft-ietf-quic-tls.html
    M dplpmtud-merge/draft-ietf-quic-tls.txt
    M dplpmtud-merge/draft-ietf-quic-transport.html
    M dplpmtud-merge/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from d28c636b. [ci skip]



From nobody Wed May 27 18:16:18 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 512CD3A07C3 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:16:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 NHuZ39OdYvHZ for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:16:16 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D77533A07BF for <quic-issues@ietf.org>; Wed, 27 May 2020 18:16:15 -0700 (PDT)
Received: from github-lowworker-28f8021.ac4-iad.github.net (github-lowworker-28f8021.ac4-iad.github.net [10.52.25.98]) by smtp.github.com (Postfix) with ESMTP id E34EF8C0349 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:16:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590628574; bh=L7xgmlMETmqDBIbQysLz6wNGR4vXkPy9dX0edFXiuV0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cxGMjUjmKeB9/E+8RtD5Z3ZYPSlzRvTdOkSaga14LL6Zrn9INMz5CZmfdTwcTrM6u gjnVjyP0P4AD72j580ZwJpgBmrpS+aZEKLlJ/h3dij69/KTAQF1SiOvviwzYZb2yTm cF6rwxNnVvBURm4y+Plc5RZEO3JtF8ieqKr/NAAA=
Date: Wed, 27 May 2020 18:16:14 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3MKQREF7JUX5QT5RN43LY55EVBNHHCKREEAQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3700/review/419713612@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3700@github.com>
References: <quicwg/base-drafts/pull/3700@github.com>
Subject: Re: [quicwg/base-drafts] Servers should always send CANCEL_PUSH (#3700)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf10ded4a6a_6f5d3fc984ccd96c1041fa"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ftIf6t6UiqHnR6mYEdCT9LZu0OM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 01:16:17 -0000

----==_mimepart_5ecf10ded4a6a_6f5d3fc984ccd96c1041fa
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.



> @@ -1292,9 +1292,10 @@ SHOULD send a CANCEL_PUSH even if it has opened the corresponding stream.
 
 Sending CANCEL_PUSH has no direct effect on the state of existing push streams.
 A client SHOULD NOT send a CANCEL_PUSH when it has already received a
-corresponding push stream.  If a push stream arrives after a client has sent
-CANCEL_PUSH, this MAY be treated as a stream error of type
-H3_STREAM_CREATION_ERROR.
+corresponding push stream.  A push stream may arrive after a client has sent

```suggestion
corresponding push stream.  A push stream could arrive after a client has sent
```

> @@ -1292,9 +1292,10 @@ SHOULD send a CANCEL_PUSH even if it has opened the corresponding stream.
 
 Sending CANCEL_PUSH has no direct effect on the state of existing push streams.
 A client SHOULD NOT send a CANCEL_PUSH when it has already received a
-corresponding push stream.  If a push stream arrives after a client has sent
-CANCEL_PUSH, this MAY be treated as a stream error of type
-H3_STREAM_CREATION_ERROR.
+corresponding push stream.  A push stream may arrive after a client has sent
+CANCEL_PUSH, because a server may have not yet processed the CANCEL_PUSH. The

```suggestion
CANCEL_PUSH, because a server might not have processed the CANCEL_PUSH. The
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview-419713612
----==_mimepart_5ecf10ded4a6a_6f5d3fc984ccd96c1041fa
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> approved this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3700#discussi=
on_r431529026">draft-ietf-quic-http.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1292,9 +1292,10 @@ SHOULD send a CANCE=
L_PUSH even if it has opened the corresponding stream.=0D
 =0D
 Sending CANCEL_PUSH has no direct effect on the state of existing push s=
treams.=0D
 A client SHOULD NOT send a CANCEL_PUSH when it has already received a=0D=

-corresponding push stream.  If a push stream arrives after a client has =
sent=0D
-CANCEL_PUSH, this MAY be treated as a stream error of type=0D
-H3_STREAM_CREATION_ERROR.=0D
+corresponding push stream.  A push stream may arrive after a client has =
sent=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-corresponding push stream.  A push stream may=
 arrive after a client has sent=0D
+corresponding push stream.  A push stream could arrive after a client ha=
s sent=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3700#discussi=
on_r431529103">draft-ietf-quic-http.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -1292,9 +1292,10 @@ SHOULD send a CANCE=
L_PUSH even if it has opened the corresponding stream.=0D
 =0D
 Sending CANCEL_PUSH has no direct effect on the state of existing push s=
treams.=0D
 A client SHOULD NOT send a CANCEL_PUSH when it has already received a=0D=

-corresponding push stream.  If a push stream arrives after a client has =
sent=0D
-CANCEL_PUSH, this MAY be treated as a stream error of type=0D
-H3_STREAM_CREATION_ERROR.=0D
+corresponding push stream.  A push stream may arrive after a client has =
sent=0D
+CANCEL_PUSH, because a server may have not yet processed the CANCEL_PUSH=
. The=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-CANCEL_PUSH, because a server may have not ye=
t processed the CANCEL_PUSH. The=0D
+CANCEL_PUSH, because a server might not have processed the CANCEL_PUSH. =
The=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3700#pullrequestreview-419713612">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KYDQV4H2ICBD2KLF3DRTW3N5ANCNFSM4NLJ4YMQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK6C2QIF2RCAM7SVDTTRTW3N5A5CNFSM4=
NLJ4YM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODECFETA.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3700#pullrequestrev=
iew-419713612",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3700#pullrequestreview=
-419713612",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecf10ded4a6a_6f5d3fc984ccd96c1041fa--


From nobody Wed May 27 18:19:30 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 6EF523A07EE for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:19:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.101
X-Spam-Level: 
X-Spam-Status: No, score=-8.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ivqmb4dpMLc3 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:19:26 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 41DE23A07D4 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:19:26 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 8EE3C6A034B for <quic-issues@ietf.org>; Wed, 27 May 2020 18:19:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590628765; bh=YFGcFdz+cL1/0yGhS91/N8AXaipkRg39ZfvOGj3bxLY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EBOeYZ9Peu5JtAlTAwCw1gBo8XUXH8vjR7T1AYcWnWWHCJmMwlgdXVkuoUu9/QDZk ByKe4Lf7hkokCA9vZ7yJkFk4HiniXQDreFMnsnGeNRanEtRd1Pu2cgBEtn4gf4IXrm DUdSPEdB1GYenezLqFyzMeZm0y1JhDEzfkSsZbhQ=
Date: Wed, 27 May 2020 18:19:25 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK37L3VM3GF54IL77J543LZJ3EVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/419695894@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf119d7d178_60e73fefe52cd96c114482"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9Si3Y-MH-C0XNDevRdoGvZHJJoU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 01:19:29 -0000

----==_mimepart_5ecf119d7d178_60e73fefe52cd96c114482
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar requested changes on this pull request.

A high order point. This could use a clean up in terms of noun consistency:
- PMTU, DPLPMPTU
- PMTUD/DPLPMTUD/PMTU/DPLPMTU probes / probe packets. I would simply use "probes" and define this away.

My suggestion would be to add a `Terminology` subsection at the top of this section, so that we can simply define away the ambiguities.

> @@ -3795,37 +3795,48 @@ later time in the connection.
 # Packet Size {#packet-size}
 
 The QUIC packet size includes the QUIC header and protected payload, but not the
-UDP or IP header.
+UDP or IP headers.
+
+QUIC depends upon a minimum packet size of at least 1280 bytes.  This is the
+IPv6 minimum size {{?RFC8200}} and is also supported by most modern IPv4
+networks.  Assuming the minimum IP header size, this results in a QUIC maximum
+packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4.
+
+The QUIC maximum packet size is the largest size of QUIC packet that can be sent
+across a network path using a single packet. Any maximum packet size larger than
+1200 bytes is discovered using PMTUD/DPLPMTUD.

```suggestion
1200 bytes can be discovered using PMTUD/DPLPMTUD.
```

> @@ -3900,42 +3917,82 @@ determines that the quoted packet has actually been lost.
 
 ## Datagram Packetization Layer PMTU Discovery
 
-Section 6.3 of {{!DPLPMTUD}} provides considerations for implementing Datagram
-Packetization Layer PMTUD (DPLPMTUD) with QUIC.
+When implementing the algorithm in Section 5 of {{!DPLPMTUD}}, the initial value
+of BASE_PMTU SHOULD be consistent with the minimum QUIC packet size. The
+MIN_PLPMTU is the same as the BASE_PMTU.
+
+QUIC endpoints implementing DPLPMTUD maintain a maximum packet size (DPLPMTUD
+MPS) for each combination of local and remote IP addresses.
+
+If a QUIC endpoint determines that the PLPMTU between any pair of local and
+remote IP addresses has fallen below the size needed to support the minimum QUIC
+packet size (BASE_PLPMTU), it MUST immediately cease sending QUIC packets,
+except for DPLPMTUD probe packets, on the affected path. An endpoint MAY

This clause does not make sense to me. What does a DPLPMTUD probe packet look like if it's not a QUIC packet? I think this clause should be removed.

> +
+QUIC endpoints implementing DPLPMTUD maintain a maximum packet size (DPLPMTUD
+MPS) for each combination of local and remote IP addresses.
+
+If a QUIC endpoint determines that the PLPMTU between any pair of local and
+remote IP addresses has fallen below the size needed to support the minimum QUIC
+packet size (BASE_PLPMTU), it MUST immediately cease sending QUIC packets,
+except for DPLPMTUD probe packets, on the affected path. An endpoint MAY
+terminate the connection if an alternative path cannot be found.
+
+
+### DPLPMTUD and Initial Connectivity
+
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has

This should use "handshake confirmed". That said, is there a reason to disallow this during the handshake?

> +packet size (BASE_PLPMTU), it MUST immediately cease sending QUIC packets,
+except for DPLPMTUD probe packets, on the affected path. An endpoint MAY
+terminate the connection if an alternative path cannot be found.
+
+
+### DPLPMTUD and Initial Connectivity
+
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has
+established a 1-RTT key.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the

This sounds like we are using a term without defining it. Perhaps "DPLPMTU probe packets require acknowledgements (Section 3 of {{!DPLPMTUD}}), and are therefore ack-eliciting packets"?

> +except for DPLPMTUD probe packets, on the affected path. An endpoint MAY
+terminate the connection if an alternative path cannot be found.
+
+
+### DPLPMTUD and Initial Connectivity
+
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has
+established a 1-RTT key.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame therefore implement "Probing using padding data", as defined in

```suggestion
PADDING frame implement "Probing using padding data", as defined in
```

>  
-A PING frame can be included in a PMTU probe to ensure that a valid probe is
-acknowledged.
+QUIC provides an acknowledged PL, therefore a sender does not implement the
+DPLPMTUD CONFIRMATION_TIMER while in the SEARCH_COMPLETE state.

```suggestion
DPLPMTUD CONFIRMATION_TIMER while in the SEARCH_COMPLETE state; see Section
5.2 of {{!DPLPMTUD}}.
```

>  
-The considerations for processing ICMP messages in the previous section also
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has
+established a 1-RTT key.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame therefore implement "Probing using padding data", as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current

Yes, this was starting to leak badly. I think there's some cleaning up that needs to be done in terms of bringing consistency overall, see meta comment above.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-419695894
----==_mimepart_5ecf119d7d178_60e73fefe52cd96c114482
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> requested changes on this pull request.</p>=0D
=0D
<p>A high order point. This could use a clean up in terms of noun consist=
ency:</p>=0D
<ul>=0D
<li>PMTU, DPLPMPTU</li>=0D
<li>PMTUD/DPLPMTUD/PMTU/DPLPMTU probes / probe packets. I would simply us=
e "probes" and define this away.</li>=0D
</ul>=0D
<p>My suggestion would be to add a <code>Terminology</code> subsection at=
 the top of this section, so that we can simply define away the ambiguiti=
es.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r431514046">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3795,37 +3795,48 @@ later time in the =
connection.=0D
 # Packet Size {#packet-size}=0D
 =0D
 The QUIC packet size includes the QUIC header and protected payload, but=
 not the=0D
-UDP or IP header.=0D
+UDP or IP headers.=0D
+=0D
+QUIC depends upon a minimum packet size of at least 1280 bytes.  This is=
 the=0D
+IPv6 minimum size {{?RFC8200}} and is also supported by most modern IPv4=
=0D
+networks.  Assuming the minimum IP header size, this results in a QUIC m=
aximum=0D
+packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4.=0D
+=0D
+The QUIC maximum packet size is the largest size of QUIC packet that can=
 be sent=0D
+across a network path using a single packet. Any maximum packet size lar=
ger than=0D
+1200 bytes is discovered using PMTUD/DPLPMTUD.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-1200 bytes is discovered using PMTUD/DPLPMTUD=
.=0D
+1200 bytes can be discovered using PMTUD/DPLPMTUD.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r431517692">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3900,42 +3917,82 @@ determines that th=
e quoted packet has actually been lost.=0D
 =0D
 ## Datagram Packetization Layer PMTU Discovery=0D
 =0D
-Section 6.3 of {{!DPLPMTUD}} provides considerations for implementing Da=
tagram=0D
-Packetization Layer PMTUD (DPLPMTUD) with QUIC.=0D
+When implementing the algorithm in Section 5 of {{!DPLPMTUD}}, the initi=
al value=0D
+of BASE_PMTU SHOULD be consistent with the minimum QUIC packet size. The=
=0D
+MIN_PLPMTU is the same as the BASE_PMTU.=0D
+=0D
+QUIC endpoints implementing DPLPMTUD maintain a maximum packet size (DPL=
PMTUD=0D
+MPS) for each combination of local and remote IP addresses.=0D
+=0D
+If a QUIC endpoint determines that the PLPMTU between any pair of local =
and=0D
+remote IP addresses has fallen below the size needed to support the mini=
mum QUIC=0D
+packet size (BASE_PLPMTU), it MUST immediately cease sending QUIC packet=
s,=0D
+except for DPLPMTUD probe packets, on the affected path. An endpoint MAY=
=0D
</pre>=0D
<p>This clause does not make sense to me. What does a DPLPMTUD probe pack=
et look like if it's not a QUIC packet? I think this clause should be rem=
oved.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r431518211">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +=0D
+QUIC endpoints implementing DPLPMTUD maintain a maximum packet size (DPL=
PMTUD=0D
+MPS) for each combination of local and remote IP addresses.=0D
+=0D
+If a QUIC endpoint determines that the PLPMTU between any pair of local =
and=0D
+remote IP addresses has fallen below the size needed to support the mini=
mum QUIC=0D
+packet size (BASE_PLPMTU), it MUST immediately cease sending QUIC packet=
s,=0D
+except for DPLPMTUD probe packets, on the affected path. An endpoint MAY=
=0D
+terminate the connection if an alternative path cannot be found.=0D
+=0D
+=0D
+### DPLPMTUD and Initial Connectivity=0D
+=0D
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged=0D
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE=
 state=0D
+when the QUIC connection handshake has been completed and the endpoint h=
as=0D
</pre>=0D
<p>This should use "handshake confirmed". That said, is there a reason to=
 disallow this during the handshake?</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r431525690">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +packet size (BASE_PLPMTU), it MUST immedi=
ately cease sending QUIC packets,=0D
+except for DPLPMTUD probe packets, on the affected path. An endpoint MAY=
=0D
+terminate the connection if an alternative path cannot be found.=0D
+=0D
+=0D
+### DPLPMTUD and Initial Connectivity=0D
+=0D
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged=0D
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE=
 state=0D
+when the QUIC connection handshake has been completed and the endpoint h=
as=0D
+established a 1-RTT key.=0D
+=0D
+=0D
+### Sending QUIC DPLPMTUD Probe Packets=0D
+=0D
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use=
 the=0D
</pre>=0D
<p>This sounds like we are using a term without defining it. Perhaps "DPL=
PMTU probe packets require acknowledgements (Section 3 of {{!DPLPMTUD}}),=
 and are therefore ack-eliciting packets"?</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r431525795">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +except for DPLPMTUD probe packets, on the=
 affected path. An endpoint MAY=0D
+terminate the connection if an alternative path cannot be found.=0D
+=0D
+=0D
+### DPLPMTUD and Initial Connectivity=0D
+=0D
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged=0D
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE=
 state=0D
+when the QUIC connection handshake has been completed and the endpoint h=
as=0D
+established a 1-RTT key.=0D
+=0D
+=0D
+### Sending QUIC DPLPMTUD Probe Packets=0D
+=0D
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use=
 the=0D
+PADDING frame therefore implement &quot;Probing using padding data&quot;=
, as defined in=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-PADDING frame therefore implement "Probing us=
ing padding data", as defined in=0D
+PADDING frame implement "Probing using padding data", as defined in=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r431527362">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
-A PING frame can be included in a PMTU probe to ensure that a valid prob=
e is=0D
-acknowledged.=0D
+QUIC provides an acknowledged PL, therefore a sender does not implement =
the=0D
+DPLPMTUD CONFIRMATION_TIMER while in the SEARCH_COMPLETE state.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-DPLPMTUD CONFIRMATION_TIMER while in the SEAR=
CH_COMPLETE state.=0D
+DPLPMTUD CONFIRMATION_TIMER while in the SEARCH_COMPLETE state; see Sect=
ion=0D
+5.2 of {{!DPLPMTUD}}.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r431529399">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
-The considerations for processing ICMP messages in the previous section =
also=0D
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged=0D
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE=
 state=0D
+when the QUIC connection handshake has been completed and the endpoint h=
as=0D
+established a 1-RTT key.=0D
+=0D
+=0D
+### Sending QUIC DPLPMTUD Probe Packets=0D
+=0D
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use=
 the=0D
+PADDING frame therefore implement &quot;Probing using padding data&quot;=
, as defined in=0D
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of prob=
e=0D
+packets to PING and PADDING frames as packets that are larger than the c=
urrent=0D
</pre>=0D
<p>Yes, this was starting to leak badly. I think there's some cleaning up=
 that needs to be done in terms of bringing consistency overall, see meta=
 comment above.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3702#pullrequestreview-419695894">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K3B6KMVAQL2ODNZFX3RTW3Z3ANCNFSM4NLOZCVQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK5CVBMLUVBFKX65DA3RTW3Z3A5CNFSM4=
NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODECA2FQ.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestrev=
iew-419695894",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview=
-419695894",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecf119d7d178_60e73fefe52cd96c114482--


From nobody Wed May 27 18:23:30 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 D95C23A07F5 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:23:28 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 a6lP2So1PiVi for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:23:27 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7EA383A07EE for <quic-issues@ietf.org>; Wed, 27 May 2020 18:23:27 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id 6303BE08D8 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:23:26 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590629006; bh=A9GiQc9VG9hRNr9LWb5dJdkIXZyZzOlT7ZKByXrRNNc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fiX8YoZh9X/m5rGrFe/0YKw1ezXbEYgJL817ZqPh93kL0ZyGdNdX+9+GAXomZfGIp TOC+1fS936wsBZEwv2E1z5btieDmFEfZUM7fBD++BDi1irtNGd5+OTBFz4OvyiQUZy U4WH+n0QyqlEkl+dzbR7ZvX8zV+I3p3a70fuzMr4=
Date: Wed, 27 May 2020 18:23:26 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6V746CZ57NR6JJKSF43LZY5EVBNHHCFNKKLA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3526/635035382@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3526@github.com>
References: <quicwg/base-drafts/issues/3526@github.com>
Subject: Re: [quicwg/base-drafts] QUIC PTO is too conservative, causing a measurable regression in tail latency (#3526)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf128e53b77_34c43fd601ccd9607032e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_8-YT8ZVifHv5UeymKJcjOEV4Bk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 01:23:29 -0000

----==_mimepart_5ecf128e53b77_34c43fd601ccd9607032e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

> I ran a test for 4 days on a major country

This probably shouldn't make me nervous, but it still does.  But I still greatly appreciate the data.

For my own peace of mind (though you will never alleviate the nervousness), can you confirm that you track both observed loss rates AND the rate of spurious retransmission?  It strikes me that there would be high correlation between improvements in latency and real loss, so the loss rates probably don't change except where the faster transmission coincides with true congestion (which I would expect to be undetectable), and the same is likely also true for spurious retransmission, but I just wanted to confirm.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3526#issuecomment-635035382
----==_mimepart_5ecf128e53b77_34c43fd601ccd9607032e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<blockquote>
<p>I ran a test for 4 days on a major country</p>
</blockquote>
<p>This probably shouldn't make me nervous, but it still does.  But I still greatly appreciate the data.</p>
<p>For my own peace of mind (though you will never alleviate the nervousness), can you confirm that you track both observed loss rates AND the rate of spurious retransmission?  It strikes me that there would be high correlation between improvements in latency and real loss, so the loss rates probably don't change except where the faster transmission coincides with true congestion (which I would expect to be undetectable), and the same is likely also true for spurious retransmission, but I just wanted to confirm.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3526#issuecomment-635035382">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5HQR26HWE343PIW5TRTW4I5ANCNFSM4LMHRHIA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7XTKVR7H7IFSBXEXLRTW4I5A5CNFSM4LMHRHIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXM555Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment-635035382",
"url": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment-635035382",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecf128e53b77_34c43fd601ccd9607032e--


From nobody Wed May 27 18:24:27 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 1A87E3A080B for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:24:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 dHvTyRh6e_ot for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:24:25 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EAA823A0808 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:24:24 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 4BACDE160A for <quic-issues@ietf.org>; Wed, 27 May 2020 18:24:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590629064; bh=BW9Emb5PstlMdqkJtIIU3E++KMnWVwF3XWrB1lnyWR8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Z/iyfex9UtgOZh/mNo6Cgd99A2/kiJ7EKcBEqwuJDQ31lauaUNCB6DepGAFvNREw2 AGUqTaHKvZvR2tseZvRniBTgI2dZopYKnoB8FO6kc0XcOKlEqnJT2wT2NdtsG3dVYE OnZfOg755m0ydxrmn6gVl0D8MkTLu4GrItbIldBk=
Date: Wed, 27 May 2020 18:24:24 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5QBH65XWN6DQYFB6543LZ4REVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/review/419716248@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf12c83b7c6_38d43fec7fecd9601137de"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PBL3SK_5ezxFiKMbOdLXd2cT9gw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 01:24:26 -0000

----==_mimepart_5ecf12c83b7c6_38d43fec7fecd9601137de
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



>  
 * absence of the retry_source_connection_id transport parameter from the server
   after receiving a Retry packet,
 
 * presence of the retry_source_connection_id transport parameter when no Retry
-  packet was received, or
+  packet was received.

```suggestion
  packet was received, or
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-419716248
----==_mimepart_5ecf12c83b7c6_38d43fec7fecd9601137de
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3691#discussi=
on_r431531291">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
 * absence of the retry_source_connection_id transport parameter from the=
 server=0D
   after receiving a Retry packet,=0D
 =0D
 * presence of the retry_source_connection_id transport parameter when no=
 Retry=0D
-  packet was received, or=0D
+  packet was received.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-  packet was received.=0D
+  packet was received, or=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3691#pullrequestreview-419716248">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K52ZLM4VVYLQEPVC6TRTW4MRANCNFSM4NIXGKBA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK3JGAXV7WS4MDFATHDRTW4MRA5CNFSM4=
NIXGKBKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODECFZGA.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3691#pullrequestrev=
iew-419716248",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview=
-419716248",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecf12c83b7c6_38d43fec7fecd9601137de--


From nobody Wed May 27 18:26:24 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 1E0E13A080E for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:26:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 tBQ5W6W3Jamy for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:26:22 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2637F3A080B for <quic-issues@ietf.org>; Wed, 27 May 2020 18:26:22 -0700 (PDT)
Received: from github-lowworker-0f7e7fd.ash1-iad.github.net (github-lowworker-0f7e7fd.ash1-iad.github.net [10.56.110.17]) by smtp.github.com (Postfix) with ESMTP id 7FBF9E0099 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:26:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590629181; bh=AkQWHXPaQdT+nnvOCLhWcKr1OVQHxFqJsDksyXNpb7w=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=vql/4NzV/g8iFfaW+7JUMHWUYUAzwumBa6wwxPaSqQLApwCGvU4vJyjJ8s8ZC2B+0 cZtXrnzATt7o0XsBTb1H91erCUSaJ7GLdbj42Z+wHXpjttQq4kwvhsgv9re4I3cAUq xXuWGyDaL+WuFOqnBQjpAZHWbnXPGEecDeUlU7LA=
Date: Wed, 27 May 2020 18:26:21 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3XM4LDBNLNCB2QMN543L2D3EVBNHHCKUD27U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3705/review/419716824@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3705@github.com>
References: <quicwg/base-drafts/pull/3705@github.com>
Subject: Re: [quicwg/base-drafts] Fix pseudocode typo in OnPacketNumberSpaceDiscarded(). (#3705)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf133d70050_2eb3fe1df6cd968858a3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lj5N2UvBaXI0-teLwOcrYPeqWnw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 01:26:23 -0000

----==_mimepart_5ecf133d70050_2eb3fe1df6cd968858a3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3705#pullrequestreview-419716824
----==_mimepart_5ecf133d70050_2eb3fe1df6cd968858a3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3705#pullrequestreview-419716824">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6YEOCEHWY3737PEITRTW4T3ANCNFSM4NMQAREA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4GQFK3ZNW34IJJ6L3RTW4T3A5CNFSM4NMQAREKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODECF5WA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3705#pullrequestreview-419716824",
"url": "https://github.com/quicwg/base-drafts/pull/3705#pullrequestreview-419716824",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecf133d70050_2eb3fe1df6cd968858a3--


From nobody Wed May 27 18:27:25 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 1F3813A0819 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:27:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 9SFNwhIITI0O for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:27:23 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0CAA23A080E for <quic-issues@ietf.org>; Wed, 27 May 2020 18:27:23 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 59D41520AA5 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:27:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590629242; bh=hZnJGUWr4KqRJLcvIZRRntOo1GbbgYbVgVYOohMZX04=; h=Date:From:To:Subject:From; b=uAkTDJkyLSTAuTIvXbR4I9QkQANbJbSfm+XWaaXaWtpl5QwDcYEL+cRNbA1zJ69+z 1dGV2grKOOL98qaoJr8ETmYVfdUuutlVZzkLbY8PqhlkCekkspqzL06X0Z42hCC6sB 38jRD2cj3zYcHylYB4LuDM/IZogeu5zPq6XzIepc=
Date: Wed, 27 May 2020 18:27:22 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/413440-6afd6b@github.com>
Subject: [quicwg/base-drafts] 6de92c: Fix pseudocode typo in OnPacketNumberSpaceDiscarde...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9SKbIf5jxu8Pbvnyqa08CAWrmqA>
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: Thu, 28 May 2020 01:27:24 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6de92cc83c3f7035140874aa971263cf47391f21
      https://github.com/quicwg/base-drafts/commit/6de92cc83c3f7035140874aa971263cf47391f21
  Author: Rui Paulo <rpaulo@me.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Fix pseudocode typo in OnPacketNumberSpaceDiscarded().


  Commit: 6afd6b8f6c7bb8f089690783335f1fec21aa45cc
      https://github.com/quicwg/base-drafts/commit/6afd6b8f6c7bb8f089690783335f1fec21aa45cc
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3705 from rpaulo/fix-recovery-pseudocode

Fix pseudocode typo in OnPacketNumberSpaceDiscarded().


Compare: https://github.com/quicwg/base-drafts/compare/4134402aadc6...6afd6b8f6c7b


From nobody Wed May 27 18:27:29 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 A2B873A080E for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:27:24 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 tIjsBv0yHNgr for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:27:23 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A4B3A3A0811 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:27:23 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id E6D2F1211F9 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:27:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590629243; bh=b0/mQyeFVkXhmDZHVVG8W0Y2E4vgUC0ofKrKwFddVEY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yaDg5Oaw3zvfxu9mExtplegKd99CPaDfm5o27icBHitclh/mb++oTX4Hn0fCoAUtu H918x6EE7G1ZHxbO2/wLx26ZuxRMr3exmgp8ZSiO0x/H1Ivu6bPbwVxNSrCBbE5j92 +J94gI56/RXQ73ldGCYZKb2AkfGiw0QlKWsKViIo=
Date: Wed, 27 May 2020 18:27:22 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5FZXYDR77YLLGVDNV43L2HVEVBNHHCKUD27U@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3705/issue_event/3380674459@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3705@github.com>
References: <quicwg/base-drafts/pull/3705@github.com>
Subject: Re: [quicwg/base-drafts] Fix pseudocode typo in OnPacketNumberSpaceDiscarded(). (#3705)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf137aa1129_52e83fa5f7ecd95c701b1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/C2y_l-1FS2s08fR8nVnc2nOjqgU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 01:27:25 -0000

----==_mimepart_5ecf137aa1129_52e83fa5f7ecd95c701b1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3705 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3705#event-3380674459
----==_mimepart_5ecf137aa1129_52e83fa5f7ecd95c701b1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="626031357" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3705" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3705/hovercard" href="https://github.com/quicwg/base-drafts/pull/3705">#3705</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3705#event-3380674459">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3ETVD4CCJR764DVMLRTW4XVANCNFSM4NMQAREA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK24SHNFKIUP22EIVTLRTW4XVA5CNFSM4NMQAREKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZGAP7GY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3705#event-3380674459",
"url": "https://github.com/quicwg/base-drafts/pull/3705#event-3380674459",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecf137aa1129_52e83fa5f7ecd95c701b1--


From nobody Wed May 27 18:28:21 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 5AFA93A080E for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:28:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 5LwXlLPi6TnA for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:28:19 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 639BE3A0819 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:28:17 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id A4494282B90 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:28:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590629296; bh=Nw+fGLaYc+ev99cGVnx4nt4rM0vOBoGWDfISB9pWfy8=; h=Date:From:To:Subject:From; b=QbAlqIPpF0DhLeDHlYmv/+1rJWBN9iXsyHs4FiDe7aoAj/B+Ie89K5dsy6S63E32f Yruk+T/KCkTVRf4GWr/X8u5/tVik9j01XkKrw/wOaIhzITziYXdJNsoP6gaGW8bovS fIVrwQiO6MVsbFTMh+kzbNY2szwDowvdHUzKlMyU=
Date: Wed, 27 May 2020 18:28:16 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/6148e9-649558@github.com>
Subject: [quicwg/base-drafts] 649558: Script updating gh-pages from 6afd6b8f. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/brYuLIQ1z63KxvMik1aBRnd84vk>
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: Thu, 28 May 2020 01:28:20 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6495584008ca353e5dba63b5be85e574a5f03472
      https://github.com/quicwg/base-drafts/commit/6495584008ca353e5dba63b5be85e574a5f03472
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6afd6b8f. [ci skip]



From nobody Wed May 27 18:31:29 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 8FB143A0857 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:31:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 uKb97Me_7rPB for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:31:26 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7C7433A0844 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:31:26 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id BEF921C099C for <quic-issues@ietf.org>; Wed, 27 May 2020 18:31:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590629485; bh=7ii4O2CpdDiAJakvi04Wvvpo3BOIvqnlz7nrCy9X0R4=; h=Date:From:To:Subject:From; b=NEltaV57kQApNu7m6XYKIH/s4JaCZzbje7aHbiMRwO1tAFoSh0DcKFEnhK4OIaugJ vxgioyz3mJ7nRYJnBfErm1ClwQXfUATG36chmaSQN/BImFVuzIkvYYDKlReTBzwNfb lP5GI6xszYYGYcLVtM8jS3kzdOw8I5L/Az75cR4M=
Date: Wed, 27 May 2020 18:31:25 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dplpmtud-merge/d28c63-26e301@github.com>
Subject: [quicwg/base-drafts] 26e301: Remove probing clause
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5hZ2RJLjdrTK_ipzxQGLQXAfmXI>
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: Thu, 28 May 2020 01:31:28 -0000

  Branch: refs/heads/dplpmtud-merge
  Home:   https://github.com/quicwg/base-drafts
  Commit: 26e301f5a1e0dc190816791220f5fe7a5d66cd3d
      https://github.com/quicwg/base-drafts/commit/26e301f5a1e0dc190816791220f5fe7a5d66cd3d
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Remove probing clause



From nobody Wed May 27 18:31:37 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 D510A3A085D for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:31:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 lOfPeZ-IvXgt for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:31:34 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 68A1B3A0857 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:31:34 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 1DD621212E0 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:31:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590629494; bh=6L67nXVJIQqy8HAdZLzlEUUoePJduoJbfW2aHZVHgqQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=z/PoOPgro6hUn1EjysW8/D2G7vln3/Xoq0eyWKQ+KffGQUJ8qHlscogqszyFOP0Gd fPCh2/hWK7Gyj+UfnCc4HKzBrzzU2PxwavRWNCGCnsWho+YRo0Lop0mqR3g6u0uDfY ydcPsNrs/bYAja+rd30Due62KxIrlVC/NYVtwglQ=
Date: Wed, 27 May 2020 18:31:33 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/push/5139105000@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf1475cbc9c_72ac3ffaf08cd964169742"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/WNQR9CmkCYhonXeqUQHYJ-m26AM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 01:31:36 -0000

----==_mimepart_5ecf1475cbc9c_72ac3ffaf08cd964169742
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

26e301f5a1e0dc190816791220f5fe7a5d66cd3d  Remove probing clause


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702/files/d28c636b08e147fa7d056f6ebc2e65b85b88243e..26e301f5a1e0dc190816791220f5fe7a5d66cd3d

----==_mimepart_5ecf1475cbc9c_72ac3ffaf08cd964169742
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/26e301f5a1e0dc190816791220f5fe7a5d66cd3d">26e301f</a>  Remove probing clause</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3702/files/d28c636b08e147fa7d056f6ebc2e65b85b88243e..26e301f5a1e0dc190816791220f5fe7a5d66cd3d">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5RVHIN2SQ4GSQ2WHLRTW5HLANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2JSUPF6JJCEJAYMH3RTW5HLA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDGNJTGUZDMM2QOVZWQIZVGEZTSMJQGUYDAMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702/files/d28c636b08e147fa7d056f6ebc2e65b85b88243e..26e301f5a1e0dc190816791220f5fe7a5d66cd3d",
"url": "https://github.com/quicwg/base-drafts/pull/3702/files/d28c636b08e147fa7d056f6ebc2e65b85b88243e..26e301f5a1e0dc190816791220f5fe7a5d66cd3d",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecf1475cbc9c_72ac3ffaf08cd964169742--


From nobody Wed May 27 18:32:36 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 A826B3A0863 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:32:34 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 DKduhKeLydPQ for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:32:33 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1DE5E3A085D for <quic-issues@ietf.org>; Wed, 27 May 2020 18:32:33 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 6E2D22C007B for <quic-issues@ietf.org>; Wed, 27 May 2020 18:32:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590629552; bh=Eugu73lCHkzPS9YWj78rxbPHa6IZOebQrH/FB+NssjA=; h=Date:From:To:Subject:From; b=AHY7oKmD9/OlF9EL8Ew2f6UC9tEU882wL6GkDMT3haqeGn3dcr5o+KvrVskwHaPc8 hmroqSKBRpnW9cl6eSwKmJB8zvhnnvHKHTws74vuqy5QMvNnO91AEMcfnn6ObZGqk8 9KfzpORvFNG9WuH7t4ps8x8MN+4SNDKsg0aqFkaQ=
Date: Wed, 27 May 2020 18:32:32 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dplpmtud-merge/26e301-ad691c@github.com>
Subject: [quicwg/base-drafts] ad691c: Small edits
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/qYHgvk0i87C0VG9vYaon1ejgt3s>
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: Thu, 28 May 2020 01:32:35 -0000

  Branch: refs/heads/dplpmtud-merge
  Home:   https://github.com/quicwg/base-drafts
  Commit: ad691c836127271e114713893c5b35e20e6f3ad4
      https://github.com/quicwg/base-drafts/commit/ad691c836127271e114713893c5b35e20e6f3ad4
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Small edits

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>



From nobody Wed May 27 18:32:43 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 4880B3A0863 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:32:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 2As06XwVbVmJ for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:32:41 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 16C903A085D for <quic-issues@ietf.org>; Wed, 27 May 2020 18:32:41 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 55341C6048A for <quic-issues@ietf.org>; Wed, 27 May 2020 18:32:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590629560; bh=MaLkKPDFnrcDuq2ybOJ7PbcoAGBfp5/9LYNqVGjnygY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=KzFW8yy6gCTk8QA+N6FjxQBniThm+wcgcnQtekiXC4t1OLxERJhXbc+ej2zBjJpP6 bHHwoFxz4xXrA2iwwacHcI9mad8lpRajwiEghH8S1BUeW0+Zg4agJUELuUByQ7BvfW See5xHqIgsFCRlvymg0XFQ8bFNTo73qId9QO6Mbw=
Date: Wed, 27 May 2020 18:32:40 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/push/5139108259@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf14b8457dc_455e3feb2e6cd9601157bb"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Vvo2Iz_uVwq-JkiVhfbuzrQdPPc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 01:32:42 -0000

----==_mimepart_5ecf14b8457dc_455e3feb2e6cd9601157bb
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

ad691c836127271e114713893c5b35e20e6f3ad4  Small edits


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702/files/26e301f5a1e0dc190816791220f5fe7a5d66cd3d..ad691c836127271e114713893c5b35e20e6f3ad4

----==_mimepart_5ecf14b8457dc_455e3feb2e6cd9601157bb
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/ad691c836127271e114713893c5b35e20e6f3ad4">ad691c8</a>  Small edits</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3702/files/26e301f5a1e0dc190816791220f5fe7a5d66cd3d..ad691c836127271e114713893c5b35e20e6f3ad4">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6TSZL6JIKJDV5SB43RTW5LRANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2RDAQCV3Q2QZWCK4TRTW5LRA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDGNJTGUZDMM2QOVZWQIZVGEZTSMJQHAZDKOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702/files/26e301f5a1e0dc190816791220f5fe7a5d66cd3d..ad691c836127271e114713893c5b35e20e6f3ad4",
"url": "https://github.com/quicwg/base-drafts/pull/3702/files/26e301f5a1e0dc190816791220f5fe7a5d66cd3d..ad691c836127271e114713893c5b35e20e6f3ad4",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecf14b8457dc_455e3feb2e6cd9601157bb--


From nobody Wed May 27 18:33:39 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 7820C3A0879 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:33:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 nwMYvbsxzTvd for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 18:33:36 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 807403A086A for <quic-issues@ietf.org>; Wed, 27 May 2020 18:33:36 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id C1CD38C0130 for <quic-issues@ietf.org>; Wed, 27 May 2020 18:33:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590629615; bh=yXoB4Va1JIGvEr1m4qDFswg47iVvvKzhzOevmWUDn2M=; h=Date:From:To:Subject:From; b=sm0T+8Yjb0iMqaIVPYUWR45MNOG5KAsCQn6lIF06IGTyT9/MtVooe4QhbZOvVdC/l oTnt4PO0C8D+hksHGghVRrf2nXCHKQ/0nnOjfFqEzUPOdbS1R2KpRXo/MGmQWZZpnG 5PNE/bPyvVHvm/I8j98QsVlreK7SZf5pBKS5m84g=
Date: Wed, 27 May 2020 18:33:35 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/649558-01d0cd@github.com>
Subject: [quicwg/base-drafts] 01d0cd: Script updating gh-pages from ad691c83. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/zYx3ufo9Hzg8-H4APZ7StzAlpgs>
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: Thu, 28 May 2020 01:33:37 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 01d0cd24abda5280954b26c5cb434451b568ec2f
      https://github.com/quicwg/base-drafts/commit/01d0cd24abda5280954b26c5cb434451b568ec2f
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M dplpmtud-merge/draft-ietf-quic-transport.html
    M dplpmtud-merge/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from ad691c83. [ci skip]



From nobody Wed May 27 19:45:01 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 655BA3A0D18 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 19:44:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 f5-klr1Hq7xw for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 19:44:56 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 75D0F3A0B72 for <quic-issues@ietf.org>; Wed, 27 May 2020 19:44:19 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 803F0C60999 for <quic-issues@ietf.org>; Wed, 27 May 2020 19:44:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590633858; bh=E2Dk4LquWSUDP3O450uO7yh3IZ+t/34bRkNOYCEFZLI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IE2aU2cFBydVG+JiBG6dsh1PoDISSQXY3MmMClain/0d2Cp2cwDbdUPawuOWtKovU jl4IwXhX018sue9Ytn1AKrP89AugvGkuZZH/+/DkE0gbZ0e3Z+gT0V700TS7TJSAes tB6aZGph2ftnD8Z4kkt4d0sky/o66O7L63Jt+pxE=
Date: Wed, 27 May 2020 19:44:18 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYQ3GN2KEXBUUUE4HN43MDIFEVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/419740048@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf25826eea1_3cff3ffb2e4cd95c1241dc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/E5rdIQsZ6lxoGa6QvxfY3r9VVls>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 02:45:00 -0000

----==_mimepart_5ecf25826eea1_3cff3ffb2e4cd95c1241dc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.

These look goof to me.



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-419740048
----==_mimepart_5ecf25826eea1_3cff3ffb2e4cd95c1241dc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<p>These look goof to me.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-419740048">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ6VTZMPPIQEFMSU2DRTXFYFANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5AKQPYRNP5ODCKQBDRTXFYFA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODECLTEA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-419740048",
"url": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-419740048",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecf25826eea1_3cff3ffb2e4cd95c1241dc--


From nobody Wed May 27 19:58:09 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 255363A0B50 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 19:58:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 mQP-TPUnqIhl for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 19:58:06 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D4DAD3A0B4F for <quic-issues@ietf.org>; Wed, 27 May 2020 19:58:05 -0700 (PDT)
Received: from github-lowworker-0eea13f.ash1-iad.github.net (github-lowworker-0eea13f.ash1-iad.github.net [10.56.109.26]) by smtp.github.com (Postfix) with ESMTP id 019911C0355 for <quic-issues@ietf.org>; Wed, 27 May 2020 19:58:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590634685; bh=TAlEVTgNhRK33SOT79H1z3AzW70mKTTjTMaL4koCnOc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CJpE0kAKinHN55Tl3frnAUhTOchw6q2MwemgVM344BirGk6Q2uIalxY8+vzaRdAAV HZuKDn2IaQbXVQa+K+uF8d4WrgrnTiwDYkZhvETNWs+5wb3Bp2k6C2Yaqum8biA96c hoN6PuhhrZgIxGb0mK2nGvhV9R1srrdi6F2z6mjI=
Date: Wed, 27 May 2020 19:58:04 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZE3D7RIYGMOXZKFTV43ME3ZEVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/419744102@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf28bce60d8_45063fe0b7ccd9682043a0"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/aBR7ifPCcu_fLm6SJ2ta_04QDIs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 02:58:07 -0000

----==_mimepart_5ecf28bce60d8_45063fe0b7ccd9682043a0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



> +packet size (BASE_PLPMTU), it MUST immediately cease sending QUIC packets,
+except for DPLPMTUD probe packets, on the affected path. An endpoint MAY
+terminate the connection if an alternative path cannot be found.
+
+
+### DPLPMTUD and Initial Connectivity
+
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has
+established a 1-RTT key.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the

Works for me.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#discussion_r431554510
----==_mimepart_5ecf28bce60d8_45063fe0b7ccd9682043a0
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431554510">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +packet size (BASE_PLPMTU), it MUST immediately cease sending QUIC packets,
+except for DPLPMTUD probe packets, on the affected path. An endpoint MAY
+terminate the connection if an alternative path cannot be found.
+
+
+### DPLPMTUD and Initial Connectivity
+
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed and the endpoint has
+established a 1-RTT key.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
</pre>
<p>Works for me.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431554510">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYCYZHLG5CGMIKQMNTRTXHLZANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6R4J4LN5J532PTOK3RTXHLZA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODECMSZQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r431554510",
"url": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r431554510",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecf28bce60d8_45063fe0b7ccd9682043a0--


From nobody Wed May 27 20:01:05 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 942DA3A0B54 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:01:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.696
X-Spam-Level: 
X-Spam-Status: No, score=-1.696 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 7wTLC5W8aj9G for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:01:03 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 47BCE3A0B50 for <quic-issues@ietf.org>; Wed, 27 May 2020 20:01:03 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 7A3EAC60993 for <quic-issues@ietf.org>; Wed, 27 May 2020 20:01:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590634862; bh=UnX/Ft621wQmAX1MX4qsOnhREXXDRGQR/zJdcHpZne0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RkMxuGnncuFStOmGr+XgFPBnNAGr/fxYHDLF5+49FNq1DibxL7VX4wWh6+Gz2oq8K n2VHn8UcTgy3Pn0upHhIj0LREGLSZ8tfC5wJWfm4L98Oh2Mg0gVk+cudPhXFwTghep Db5IctiRCEbCeKVqR1SdKT+ajltTHqaZvi9M/9Cw=
Date: Wed, 27 May 2020 20:01:02 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4WFME6SH6RUKOGGHN43MFG5EVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/419744960@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf296e6b4cf_1d213fa2bb2cd95c256882"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9AORslujnA7s_CISJwoSzLmw4w4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 03:01:05 -0000

----==_mimepart_5ecf296e6b4cf_1d213fa2bb2cd95c256882
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



> @@ -3900,42 +3917,82 @@ determines that the quoted packet has actually been lost.
 
 ## Datagram Packetization Layer PMTU Discovery
 
-Section 6.3 of {{!DPLPMTUD}} provides considerations for implementing Datagram
-Packetization Layer PMTUD (DPLPMTUD) with QUIC.
+When implementing the algorithm in Section 5 of {{!DPLPMTUD}}, the initial value
+of BASE_PMTU SHOULD be consistent with the minimum QUIC packet size. The
+MIN_PLPMTU is the same as the BASE_PMTU.
+
+QUIC endpoints implementing DPLPMTUD maintain a maximum packet size (DPLPMTUD
+MPS) for each combination of local and remote IP addresses.
+
+If a QUIC endpoint determines that the PLPMTU between any pair of local and
+remote IP addresses has fallen below the size needed to support the minimum QUIC
+packet size (BASE_PLPMTU), it MUST immediately cease sending QUIC packets,
+except for DPLPMTUD probe packets, on the affected path. An endpoint MAY

I am fine to remove: DPLPMTUD will anyway send some "probes" after it thinks a blackhole is detected, to confirm if the black hole exists. Once confirmed I understand QUIC will cease sending.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#discussion_r431555184
----==_mimepart_5ecf296e6b4cf_1d213fa2bb2cd95c256882
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431555184">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; @@ -3900,42 +3917,82 @@ determines that the quoted packet has actually been lost.
 
 ## Datagram Packetization Layer PMTU Discovery
 
-Section 6.3 of {{!DPLPMTUD}} provides considerations for implementing Datagram
-Packetization Layer PMTUD (DPLPMTUD) with QUIC.
+When implementing the algorithm in Section 5 of {{!DPLPMTUD}}, the initial value
+of BASE_PMTU SHOULD be consistent with the minimum QUIC packet size. The
+MIN_PLPMTU is the same as the BASE_PMTU.
+
+QUIC endpoints implementing DPLPMTUD maintain a maximum packet size (DPLPMTUD
+MPS) for each combination of local and remote IP addresses.
+
+If a QUIC endpoint determines that the PLPMTU between any pair of local and
+remote IP addresses has fallen below the size needed to support the minimum QUIC
+packet size (BASE_PLPMTU), it MUST immediately cease sending QUIC packets,
+except for DPLPMTUD probe packets, on the affected path. An endpoint MAY
</pre>
<p>I am fine to remove: DPLPMTUD will anyway send some "probes" after it thinks a blackhole is detected, to confirm if the black hole exists. Once confirmed I understand QUIC will cease sending.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431555184">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZEU27F4T7YHD2JRC3RTXHW5ANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7R7SMX4BEOFM5APGLRTXHW5A5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODECMZQA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r431555184",
"url": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r431555184",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecf296e6b4cf_1d213fa2bb2cd95c256882--


From nobody Wed May 27 20:01:10 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 DAA603A0B54 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:01:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Y7YeKqaGWc11 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:01:04 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D089A3A0B50 for <quic-issues@ietf.org>; Wed, 27 May 2020 20:01:04 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 4154E2C0E57 for <quic-issues@ietf.org>; Wed, 27 May 2020 20:01:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590634864; bh=9eTC2CnGsnI4US6/0OluqgOPOWMNMUXUHkJXQXlBJTo=; h=Date:From:To:Subject:From; b=IXlyjW+qqzUMmpkQgipvAQGvBSUBvsMeqUx6IDuoxGn6n3oC9kWQImP2MLyaj4tfE yZ84VlYR9uc5XHAKyYRB2NkD0QMMJitt+TquaUpc+xlZHKQquAxJM8t/koQgBtr2so UCWkFQDkmRZf1BiHlgjLi51bPXR7MCC7ThIe2wIs=
Date: Wed, 27 May 2020 20:01:04 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/jri/ackf/000000-f1fb3b@github.com>
Subject: [quicwg/base-drafts] f1fb3b: Add more context and text around ACK frequency
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JXTfnbE0n6edZlrYXvrLRxvzA4A>
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: Thu, 28 May 2020 03:01:06 -0000

  Branch: refs/heads/jri/ackf
  Home:   https://github.com/quicwg/base-drafts
  Commit: f1fb3b57b37f0ee1dd366e46f992c48fb5d51db6
      https://github.com/quicwg/base-drafts/commit/f1fb3b57b37f0ee1dd366e46f992c48fb5d51db6
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add more context and text around ACK frequency



From nobody Wed May 27 20:02:39 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 B68A43A0B55 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:02:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KBIO3fd6gIki for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:02:36 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AB8353A09D2 for <quic-issues@ietf.org>; Wed, 27 May 2020 20:02:36 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 071A88C0099 for <quic-issues@ietf.org>; Wed, 27 May 2020 20:02:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590634955; bh=iB8/PlV0CX4/qrhgaYZJY3Pvx2g/q6IxYxlnfgLa8FU=; h=Date:From:To:Subject:From; b=FBMWHgQucStnSbrXdWB3vsIDgw6lN/XNzB1FytcuVca1zAaQIHTruag3+0qo2OYaV RwaDh1PltvKg8dMQjtLfJo4BPWDOEnBGk8rV4XL1HFLy59baKlzaO8QymzotH/wnLO 3tl93Ve2fR0EodkGgvRoOevz/heC1v5Alj+qrB3w=
Date: Wed, 27 May 2020 20:02:34 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/01d0cd-5260d3@github.com>
Subject: [quicwg/base-drafts] 5260d3: Script updating gh-pages from f1fb3b57. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_4aWSJi8sCY471o5Kx_uUGUk-NA>
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: Thu, 28 May 2020 03:02:38 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5260d3aef6a5ef74802a7cc26cfd0affa025c540
      https://github.com/quicwg/base-drafts/commit/5260d3aef6a5ef74802a7cc26cfd0affa025c540
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M index.html
    A jri/ackf/draft-ietf-quic-http.html
    A jri/ackf/draft-ietf-quic-http.txt
    A jri/ackf/draft-ietf-quic-invariants.html
    A jri/ackf/draft-ietf-quic-invariants.txt
    A jri/ackf/draft-ietf-quic-qpack.html
    A jri/ackf/draft-ietf-quic-qpack.txt
    A jri/ackf/draft-ietf-quic-recovery.html
    A jri/ackf/draft-ietf-quic-recovery.txt
    A jri/ackf/draft-ietf-quic-tls.html
    A jri/ackf/draft-ietf-quic-tls.txt
    A jri/ackf/draft-ietf-quic-transport.html
    A jri/ackf/draft-ietf-quic-transport.txt
    A jri/ackf/index.html

  Log Message:
  -----------
  Script updating gh-pages from f1fb3b57. [ci skip]



From nobody Wed May 27 20:06:05 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 408AA3A0B7B for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:05:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.696
X-Spam-Level: 
X-Spam-Status: No, score=-1.696 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, 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 4tvrN8Fozpyp for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:05:56 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E38763A0B85 for <quic-issues@ietf.org>; Wed, 27 May 2020 20:05:55 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 3E9E12C150D for <quic-issues@ietf.org>; Wed, 27 May 2020 20:05:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590635155; bh=qsGFZoXDKyflTe3Tz1uSF7hXFpVzn1MYY0sLAAkZv+4=; h=Date:From:Reply-To:To:Cc:Subject:List-ID:List-Archive:List-Post: List-Unsubscribe:From; b=PaDoS10PGjeWoHkQaPIK7jqfYEnzPDB55PeDTZGR7q2hcVmtJPWVIgTj06okn920G cmK29Q8tICM+icrrs8/4cEzfJ7P+k+Bh8oBj4nTsmOEEmrepEO/RqY0JbpUEdcVtwJ lFEioLuvTxjXDzjj5a2gxJ6mMcDYJQ3AZJYRUP9I=
Date: Wed, 27 May 2020 20:05:55 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZ5LSWHI6PSN2XT6SV43MFZHEVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706@github.com>
Subject: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf2a932d40a_57163f9f61ccd9641762db"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uQGY-eaJzQ_1tYcZhKljknjwpfQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 03:06:04 -0000

----==_mimepart_5ecf2a932d40a_57163f9f61ccd9641762db
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

This PR adds explicit context around the choice of ACK frequency in the draft. It also takes in Bob Briscoe&#39;s suggestion in #3529, of calling it a guidance in light of the best information we have.

Also does some editorial cleanup of text blocks that were not in the right sections.
You can view, comment on, or merge this pull request online at:

  https://github.com/quicwg/base-drafts/pull/3706

-- Commit Summary --

  * Add more context and text around ACK frequency

-- File Changes --

    M draft-ietf-quic-transport.md (85)

-- Patch Links --

https://github.com/quicwg/base-drafts/pull/3706.patch
https://github.com/quicwg/base-drafts/pull/3706.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706

----==_mimepart_5ecf2a932d40a_57163f9f61ccd9641762db
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p>This PR adds explicit context around the choice of ACK frequency in the draft. It also takes in Bob Briscoe's suggestion in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="583536054" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3529" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3529/hovercard" href="https://github.com/quicwg/base-drafts/issues/3529">#3529</a>, of calling it a guidance in light of the best information we have.</p>
<p>Also does some editorial cleanup of text blocks that were not in the right sections.</p>

<hr>

<h4>You can view, comment on, or merge this pull request online at:</h4>
<p>&nbsp;&nbsp;<a href='https://github.com/quicwg/base-drafts/pull/3706'>https://github.com/quicwg/base-drafts/pull/3706</a></p>

<h4>Commit Summary</h4>
<ul>
  <li>Add more context and text around ACK frequency</li>
</ul>

<h4>File Changes</h4>
<ul>
  <li>
    <strong>M</strong>
    <a href="https://github.com/quicwg/base-drafts/pull/3706/files#diff-db016291106766877c4921a79f8596e0">draft-ietf-quic-transport.md</a>
    (85)
  </li>
</ul>

<h4>Patch Links:</h4>
<ul>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3706.patch'>https://github.com/quicwg/base-drafts/pull/3706.patch</a></li>
  <li><a href='https://github.com/quicwg/base-drafts/pull/3706.diff'>https://github.com/quicwg/base-drafts/pull/3706.diff</a></li>
</ul>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3706">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6CYA2K2GMGYVAVCZ3RTXIJHANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4XTZH4BKEBXP7Y243RTXIJHA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4JKSWOHQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706",
"url": "https://github.com/quicwg/base-drafts/pull/3706",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecf2a932d40a_57163f9f61ccd9641762db--


From nobody Wed May 27 20:06:48 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 E3ECB3A0B66 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:06:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 OMscxW99AtCw for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:06:45 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 83FCD3A0B5E for <quic-issues@ietf.org>; Wed, 27 May 2020 20:06:45 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id CFACA1C0B66 for <quic-issues@ietf.org>; Wed, 27 May 2020 20:06:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590635204; bh=IvvF1DCFDkM/VRUPiHppvlZnrflmq2C+R/aq21eSjLI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BQGp6r14m2oHzJ7YEWlw7JJK5Er7CPxIwfI6EX0nEOZ9geS5vZcEUL/TIn9iav7V0 kDFOAZosazAsHF3efwYBwn0YWyEzt1EBukwKuco1xzFcK+Kv1PLaZQZGXsCUey88oU GssOynT0lUER3rCc2+bEJZ0S0gXKTn99SNWYNkLM=
Date: Wed, 27 May 2020 20:06:44 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2NUFDERQ3BHU4SVZV43MF4JEVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/419746575@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf2ac4c0ed8_5f7f3ff91b4cd96c26324b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3_y9CtOSxX4vTSFQO9eKp_9Qm2o>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 03:06:47 -0000

----==_mimepart_5ecf2ac4c0ed8_5f7f3ff91b4cd96c26324b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



> -used for routing.
+packets are likely to require that the connection ID be included in
+PMTUD/DPLPMTUD probe packets to route any resulting ICMP messages
+({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+

:-). (Knowing that needs a measurement survey) However, the implications are you wouldn't be able to rely on ICMP to help you. Well that's no new news there are many reasons why you may not see a PTB message, that's why DPLPMTUD was made.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#discussion_r431556514
----==_mimepart_5ecf2ac4c0ed8_5f7f3ff91b4cd96c26324b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431556514">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -used for routing.
+packets are likely to require that the connection ID be included in
+PMTUD/DPLPMTUD probe packets to route any resulting ICMP messages
+({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+
</pre>
<p>:-). (Knowing that needs a measurement survey) However, the implications are you wouldn't be able to rely on ICMP to help you. Well that's no new news there are many reasons why you may not see a PTB message, that's why DPLPMTUD was made.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431556514">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ52QY7RNCDLPTZ4BDRTXIMJANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4BXZMT7K64AKJZBRDRTXIMJA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODECNGDY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r431556514",
"url": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r431556514",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecf2ac4c0ed8_5f7f3ff91b4cd96c26324b--


From nobody Wed May 27 20:07:00 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 279B73A0B5D for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:06:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 nLKuxZiHoaAI for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:06:56 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id BC59F3A0B53 for <quic-issues@ietf.org>; Wed, 27 May 2020 20:06:56 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id E1E266E0A02 for <quic-issues@ietf.org>; Wed, 27 May 2020 20:06:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590635215; bh=zJVnS2purgTFOP2zGMDtbRvsOJKE7w8+PAy3fjjnC+E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=nStGFSKBJc7hyzl+JUSbgdPf6IeMPUgdLfrCIi05ZKho8vYDsyfDxG7hUOSPZuNs1 0HQgr0MAWvqhqRYaefSbcDAhnCQ+UlRMofs+5MwTfr1K2JtdGgEJlcboeekWbgJ+ZS sAj3m6fvOsFBwRyf+THV9NAcbCYEwMVbF7AU+Ylw=
Date: Wed, 27 May 2020 20:06:55 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5ACEI4LKNXYTCA3UN43MF47EVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/419746626@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf2acfd18b9_4a383ffaa00cd96c2091c"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kw-L0fNygvBmEhv3eIZvGEuyVMk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 03:06:58 -0000

----==_mimepart_5ecf2acfd18b9_4a383ffaa00cd96c2091c
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



> +({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+
+Note:
+: The purpose of using a packet with a long header is only to ensure that the
+  quoted packet contained in the ICMP message contains a Source Connection ID

:-)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#discussion_r431556550
----==_mimepart_5ecf2acfd18b9_4a383ffaa00cd96c2091c
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431556550">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +({{icmp-pmtud}}) back to the correct endpoint.  However, only long header
+packets ({{long-header}}) contain source connection IDs, and long header packets
+are not decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe is to coalesce (see {{packet-coalesce}}) a
+packet with a long header, such as a Handshake or 0-RTT packet
+({{long-header}}), with a short header packet in a single UDP datagram.  If the
+UDP datagram reaches the endpoint, the packet with the long header will be
+ignored, but the short header packet will be acknowledged.  If the UDP datagram
+causes an ICMP message to be sent, the first part of the datagram will be quoted
+in that message.  If the source connection ID is within the quoted portion of
+the UDP datagram, that could be used for routing.
+
+Note:
+: The purpose of using a packet with a long header is only to ensure that the
+  quoted packet contained in the ICMP message contains a Source Connection ID
</pre>
<p>:-)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431556550">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3EO43X4D6W72CP4STRTXIM7ANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYN3YBCMOKYWWMEM33RTXIM7A5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODECNGQQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r431556550",
"url": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r431556550",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecf2acfd18b9_4a383ffaa00cd96c2091c--


From nobody Wed May 27 20:07:14 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 E4A063A0B91 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:07:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KLjgQbt7C9Og for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:07:02 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9DA713A0B5E for <quic-issues@ietf.org>; Wed, 27 May 2020 20:07:02 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id E0B0F6A007E for <quic-issues@ietf.org>; Wed, 27 May 2020 20:07:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590635221; bh=AiJ5+gzUTDSK/TPNBJ/IASuHgf6fG9U75Z0QTpPwECs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=HJ7QF7G2GX6rK+fK7dAgfxHzuFcedjHOI7r+QPWRCHY/rKIfZKuhoEEEB/7h6qE9o IHTIzgKErPmn7gnAFeDLmsnCTu3l8cTIez9rQ9hOk+/S1WY7SNve+ZYd4Yhs92dEwR yaLlVzNERHlnEQshr4xNWhmZVqAGoP3xHCtn/RLg=
Date: Wed, 27 May 2020 20:07:01 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYA2YIWHTE2D3JH2S543MF5LEVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/635068015@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf2ad5d0918_7f353fa136ccd96099852"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NnhkQTPjhTTa6ktGBDHzNURLUtU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 03:07:11 -0000

----==_mimepart_5ecf2ad5d0918_7f353fa136ccd96099852
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I've proposed more context and text around our current guidance in the draft, see #3706.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635068015
----==_mimepart_5ecf2ad5d0918_7f353fa136ccd96099852
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I've proposed more context and text around our current guidance in the draft, see <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="626176911" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3706" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3706/hovercard" href="https://github.com/quicwg/base-drafts/pull/3706">#3706</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635068015">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2VHXRWQ6BAUOU2CGLRTXINLANCNFSM4LOJ4RQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK24IRZ7KPA3LPSMM23RTXINLA5CNFSM4LOJ4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXNF43Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635068015",
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635068015",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecf2ad5d0918_7f353fa136ccd96099852--


From nobody Wed May 27 20:58:03 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 3F8723A0BC4 for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:57:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 NVw5U2Bniwpg for <quic-issues@ietfa.amsl.com>; Wed, 27 May 2020 20:57:52 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 26B4E3A0BD2 for <quic-issues@ietf.org>; Wed, 27 May 2020 20:57:52 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 679868C05A7 for <quic-issues@ietf.org>; Wed, 27 May 2020 20:57:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590638271; bh=FhohoURhALYySB13kGx6jQzqtb/MinOpkzphLuopt/I=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=bbq6aAT3a7WTuSoMKYvMo6miL4SpjEnM5j+7SSTlWxCFDM9N4wzxi4CvQVmfBMH5I OYFok8qijK2ZRlDhqTMOToOHYLT0Vh7Gi1x3O3XKldON0wpnTEF/Gm6cb0xoOPTdHm vz6cfbhEAKzrHkTSXaLEkfv8bRtgBUrXidJJcQ7M=
Date: Wed, 27 May 2020 20:57:51 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYL7PLHPHTPFBVIB4N43ML37EVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/419755966@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf36bf56db9_6fe53fc836ccd95c185182"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-GbHbtgeEyLujxJWWPfpkHPIAHM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 03:58:01 -0000

----==_mimepart_5ecf36bf56db9_6fe53fc836ccd95c185182
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.

This is a little too strong in its current form, I think.

> @@ -3413,17 +3421,10 @@ Similarly, packets marked with the ECN Congestion Experienced (CE) codepoint in
 the IP header SHOULD be acknowledged immediately, to reduce the peer's response
 time to congestion events.
 
-As an optimization, a receiver MAY process multiple packets before sending any
-ACK frames in response.  In this case the receiver can determine whether an
-immediate or delayed acknowledgement should be generated after processing
-incoming packets.
-
-Packets containing PADDING frames are considered to be in flight for congestion
-control purposes {{QUIC-RECOVERY}}. Sending only PADDING frames might cause the
-sender to become limited by the congestion controller with no acknowledgments
-forthcoming from the receiver. Therefore, a sender SHOULD ensure that other
-frames are sent in addition to PADDING frames to elicit acknowledgments from
-the receiver.
+The algorithms in {{QUIC-RECOVERY}} are resilient to receivers that do not

do we want to add "generally" to "resilient"?  Or, "in principle"?  Or "in theory"?

> +which could prevent the connection from ever becoming idle. Note that
+non-ack-eliciting packets are eventually acknowledged when the endpoint sends an
+ACK frame in response to other events.

```suggestion
which could prevent the connection from ever becoming idle.
Non-ack-eliciting packets are eventually acknowledged when the endpoint sends an
ACK frame in response to other events.
```

> +A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. Under normal circumstances, reducing the frequency of
+acknowledgement packets can improve connection and endpoint performance in
+several ways, such as reducing computational cost at both endpoints, and
+improving connection throughput on severely asymmetric links.

You need to phrase this more as a trade-off.  This is concentrated on the benefits of reducing acknowledgments.  But the introduction here also needs to recognize that generating acknowledgments in a timely fashion is critical for performance.

> -one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. Under normal circumstances, reducing the frequency of
+acknowledgement packets can improve connection and endpoint performance in
+several ways, such as reducing computational cost at both endpoints, and
+improving connection throughput on severely asymmetric links.
+
+However, there are undesirable consequences to a receiver simply reducing the

If you balance the first paragraph out, then you don't need a "however" here.  You can just talk in more detail about the advantages of more frequent acknowledgment.

> +acknowledgement frequency, especially to an arbitrary fixed value. A sender
+relies on receipt of acknowledgements to determine the amount of data in flight
+and to detect loss; see {{QUIC-RECOVERY}}. Loss detection can be delayed with
+late acknowledgements. Window-based congestion controllers, such as the one
+defined in {{QUIC-RECOVERY}}, rely on receipt of acknowledgments to increase
+their sending rate. Consequently, a connection can suffer performance penalties

If you move the general statement at the end of this to the first paragraph, then you can probably shorten this paragraph to: 

> Endpoints rely on timely acknowledgment to detect loss; see Section X of {{QUIC-RECOVERY}}.  Window-based congestion controllers, such as the one in Section X of {{QUIC-RECOVERY}} rely on acknowledgments to manage their sending rate.  In both cases, delaying acknowledgment can adversely affect performance.

We don't need the specific dig regarding the "arbitrary fixed value".

> +Further research and experimentation will yield effective mechanisms to balance
+this tradeoff. Meanwhile, this document provides the following guidance:
+{{sending-acknowledgements}}, a receiver SHOULD generate an ACK frame for at
+least every second ack-eliciting packet. This recommendation is in keeping with

A receiver SHOULD send an ACK frame after receiving at least two ack-eliciting packets.  Better knowledge of network conditions or further research and experimentation might suggest alternative acknowledgment strategies with better performance characteristics.  This recommendation is general in nature and consistent with recommendations for TCP endpoint behavior {{?RFC5681}}.

> @@ -3555,6 +3566,16 @@ messages are delayed or lost.  Note that the same limitation applies to other
 data sent by the server protected by the 1-RTT keys.
 
 
+### Other Considerations

I'm sure that we can do better than "Other Considerations" here.

```suggestion
### PADDING Frames Consume Congestion Window
```

> @@ -3555,6 +3566,16 @@ messages are delayed or lost.  Note that the same limitation applies to other
 data sent by the server protected by the 1-RTT keys.
 
 
+### Other Considerations
+
+Packets containing PADDING frames are considered to be in flight for congestion
+control purposes {{QUIC-RECOVERY}}. Sending only PADDING frames might cause the
+sender to become limited by the congestion controller with no acknowledgments
+forthcoming from the receiver. Therefore, a sender SHOULD ensure that other
+frames are sent in addition to PADDING frames to elicit acknowledgments from

```suggestion
frames are sent periodically in addition to PADDING frames to elicit acknowledgments from
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-419755966
----==_mimepart_5ecf36bf56db9_6fe53fc836ccd95c185182
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<p>This is a little too strong in its current form, I think.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r431564201">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3413,17 +3421,10 @@ Similarly, packets=
 marked with the ECN Congestion Experienced (CE) codepoint in=0D
 the IP header SHOULD be acknowledged immediately, to reduce the peer&#39=
;s response=0D
 time to congestion events.=0D
 =0D
-As an optimization, a receiver MAY process multiple packets before sendi=
ng any=0D
-ACK frames in response.  In this case the receiver can determine whether=
 an=0D
-immediate or delayed acknowledgement should be generated after processin=
g=0D
-incoming packets.=0D
-=0D
-Packets containing PADDING frames are considered to be in flight for con=
gestion=0D
-control purposes {{QUIC-RECOVERY}}. Sending only PADDING frames might ca=
use the=0D
-sender to become limited by the congestion controller with no acknowledg=
ments=0D
-forthcoming from the receiver. Therefore, a sender SHOULD ensure that ot=
her=0D
-frames are sent in addition to PADDING frames to elicit acknowledgments =
from=0D
-the receiver.=0D
+The algorithms in {{QUIC-RECOVERY}} are resilient to receivers that do n=
ot=0D
</pre>=0D
<p>do we want to add "generally" to "resilient"?  Or, "in principle"?  Or=
 "in theory"?</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r431564497">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +which could prevent the connection from e=
ver becoming idle. Note that=0D
+non-ack-eliciting packets are eventually acknowledged when the endpoint =
sends an=0D
+ACK frame in response to other events.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-which could prevent the connection from ever =
becoming idle. Note that=0D
-non-ack-eliciting packets are eventually acknowledged when the endpoint =
sends an=0D
-ACK frame in response to other events.=0D
+which could prevent the connection from ever becoming idle.=0D
+Non-ack-eliciting packets are eventually acknowledged when the endpoint =
sends an=0D
+ACK frame in response to other events.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r431564916">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +A receiver determines how frequently to s=
end acknowledgements in response to=0D
+ack-eliciting packets. Under normal circumstances, reducing the frequenc=
y of=0D
+acknowledgement packets can improve connection and endpoint performance =
in=0D
+several ways, such as reducing computational cost at both endpoints, and=
=0D
+improving connection throughput on severely asymmetric links.=0D
</pre>=0D
<p>You need to phrase this more as a trade-off.  This is concentrated on =
the benefits of reducing acknowledgments.  But the introduction here also=
 needs to recognize that generating acknowledgments in a timely fashion i=
s critical for performance.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r431565109">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -one ACK-frame-only packet in response to =
receiving an ack-eliciting packet.  An=0D
-endpoint MUST NOT send a non-ack-eliciting packet in response to a=0D
-non-ack-eliciting packet, even if there are packet gaps which precede th=
e=0D
-received packet. Limiting ACK frames avoids an infinite feedback loop of=
=0D
-acknowledgements, which could prevent the connection from ever becoming =
idle.=0D
-However, the endpoint acknowledges non-ACK-eliciting packets when it sen=
ds an=0D
-ACK frame.=0D
+### Acknowledgement Frequency=0D
+=0D
+A receiver determines how frequently to send acknowledgements in respons=
e to=0D
+ack-eliciting packets. Under normal circumstances, reducing the frequenc=
y of=0D
+acknowledgement packets can improve connection and endpoint performance =
in=0D
+several ways, such as reducing computational cost at both endpoints, and=
=0D
+improving connection throughput on severely asymmetric links.=0D
+=0D
+However, there are undesirable consequences to a receiver simply reducin=
g the=0D
</pre>=0D
<p>If you balance the first paragraph out, then you don't need a "however=
" here.  You can just talk in more detail about the advantages of more fr=
equent acknowledgment.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r431565812">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +acknowledgement frequency, especially to =
an arbitrary fixed value. A sender=0D
+relies on receipt of acknowledgements to determine the amount of data in=
 flight=0D
+and to detect loss; see {{QUIC-RECOVERY}}. Loss detection can be delayed=
 with=0D
+late acknowledgements. Window-based congestion controllers, such as the =
one=0D
+defined in {{QUIC-RECOVERY}}, rely on receipt of acknowledgments to incr=
ease=0D
+their sending rate. Consequently, a connection can suffer performance pe=
nalties=0D
</pre>=0D
<p>If you move the general statement at the end of this to the first para=
graph, then you can probably shorten this paragraph to:</p>=0D
<blockquote>=0D
<p>Endpoints rely on timely acknowledgment to detect loss; see Section X =
of {{QUIC-RECOVERY}}.  Window-based congestion controllers, such as the o=
ne in Section X of {{QUIC-RECOVERY}} rely on acknowledgments to manage th=
eir sending rate.  In both cases, delaying acknowledgment can adversely a=
ffect performance.</p>=0D
</blockquote>=0D
<p>We don't need the specific dig regarding the "arbitrary fixed value".<=
/p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r431567438">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +Further research and experimentation will=
 yield effective mechanisms to balance=0D
+this tradeoff. Meanwhile, this document provides the following guidance:=
=0D
+{{sending-acknowledgements}}, a receiver SHOULD generate an ACK frame fo=
r at=0D
+least every second ack-eliciting packet. This recommendation is in keepi=
ng with=0D
</pre>=0D
<p>A receiver SHOULD send an ACK frame after receiving at least two ack-e=
liciting packets.  Better knowledge of network conditions or further rese=
arch and experimentation might suggest alternative acknowledgment strateg=
ies with better performance characteristics.  This recommendation is gene=
ral in nature and consistent with recommendations for TCP endpoint behavi=
or {{?RFC5681}}.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r431567671">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3555,6 +3566,16 @@ messages are delaye=
d or lost.  Note that the same limitation applies to other=0D
 data sent by the server protected by the 1-RTT keys.=0D
 =0D
 =0D
+### Other Considerations=0D
</pre>=0D
<p>I'm sure that we can do better than "Other Considerations" here.</p>=0D=

=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-### Other Considerations=0D
+### PADDING Frames Consume Congestion Window=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r431567795">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3555,6 +3566,16 @@ messages are delaye=
d or lost.  Note that the same limitation applies to other=0D
 data sent by the server protected by the 1-RTT keys.=0D
 =0D
 =0D
+### Other Considerations=0D
+=0D
+Packets containing PADDING frames are considered to be in flight for con=
gestion=0D
+control purposes {{QUIC-RECOVERY}}. Sending only PADDING frames might ca=
use the=0D
+sender to become limited by the congestion controller with no acknowledg=
ments=0D
+forthcoming from the receiver. Therefore, a sender SHOULD ensure that ot=
her=0D
+frames are sent in addition to PADDING frames to elicit acknowledgments =
from=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-frames are sent in addition to PADDING frames=
 to elicit acknowledgments from=0D
+frames are sent periodically in addition to PADDING frames to elicit ack=
nowledgments from=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3706#pullrequestreview-419755966">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K7DOLXR4MLOSWTNTMLRTXOL7ANCNFSM4NMWAK7A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK5CQ22XVKFUWPB2IJDRTXOL7A5CNFSM4=
NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODECPPPQ.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestrev=
iew-419755966",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview=
-419755966",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecf36bf56db9_6fe53fc836ccd95c185182--


From nobody Thu May 28 04:26:21 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 B1AD03A0DB0 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 04:26:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 M33Iu_LjRe-G for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 04:26:18 -0700 (PDT)
Received: from out-18.smtp.github.com (out-18.smtp.github.com [192.30.252.201]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 78EFF3A0DAF for <quic-issues@ietf.org>; Thu, 28 May 2020 04:26:18 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id A54E36E12E5 for <quic-issues@ietf.org>; Thu, 28 May 2020 04:26:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590665176; bh=dScHCgHhIESqlv/102EOV+rUDwsCGDTI0rbTDT85Zog=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=fcW68ye1Yv8lG7enTU/PtUcziLEwp99z2reUGhLbOT0WL0srRKebkx06Qt2RQ1C8c Vt2v+08zfpZ8BEHF40W1hmgM9czZSPKMlQQ+VBeeFnH8x2zyJWDBgKKjYoCbfsVSwl 8Ssx+VDn+evuoyuSEuH3ahFR0HaeROf1HuDoCstU=
Date: Thu, 28 May 2020 04:26:16 -0700
From: IngJohEricsson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6CYUNOLENQHHIQXLV43OANREVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/635281465@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecf9fd8963b9_28193ff19e6cd96c5427f6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: IngJohEricsson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PfRynT5NEipBwUqaarEus7d6fC4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 11:26:20 -0000

----==_mimepart_5ecf9fd8963b9_28193ff19e6cd96c5427f6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I believe that the text around asymmetric links look fine, not really necessary to write up much more. 
What can be good to know that for the 5G case with limited UL (uplink = modem->base station transmission) , the pain that a flow with an unnecessary high ACK rate causes is on the flow itself or other flows sharing the same access.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635281465
----==_mimepart_5ecf9fd8963b9_28193ff19e6cd96c5427f6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I believe that the text around asymmetric links look fine, not really necessary to write up much more.<br>
What can be good to know that for the 5G case with limited UL (uplink = modem-&gt;base station transmission) , the pain that a flow with an unnecessary high ACK rate causes is on the flow itself or other flows sharing the same access.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635281465">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2ZUQ7GGZ27ZLBGB33RTZC5RANCNFSM4LOJ4RQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK67UEA4WRD6XYMU5JLRTZC5RA5CNFSM4LOJ4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXO2AOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635281465",
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635281465",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecf9fd8963b9_28193ff19e6cd96c5427f6--


From nobody Thu May 28 06:32:22 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 B16203A0ECF for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 06:32:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 Yo3UUA_wjVaN for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 06:32:19 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5B0A43A0EC5 for <quic-issues@ietf.org>; Thu, 28 May 2020 06:32:19 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 9006B8C0128 for <quic-issues@ietf.org>; Thu, 28 May 2020 06:32:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590672738; bh=MftTzIOaRKTIFCJozjcoSyivZu+bx90NQ+zBBp7e+4Q=; h=Date:From:To:Subject:From; b=Gnwph+ZE0KdfDADg13fsJ/459qLvTK6cNEZwjGYjv7Qwgt0il2QdsHoNsctJVIh65 meyV5PpRQrPrYVNCSQ55txnPEH5nATjMu8RptUvWUEmc3FXIo6+MNY7PpziYp/GtjG rexUT8/H/jVLoUj657KnK0WtnKRWR2SZTEuYjeIA=
Date: Thu, 28 May 2020 06:32:18 -0700
From: Mike Bishop <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/http/should_cancel_push/8934b2-74a113@github.com>
Subject: [quicwg/base-drafts] 74a113: Apply suggestions from code review
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kYdUKr7EAKjx5TgBTg1nadZ5Zdo>
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: Thu, 28 May 2020 13:32:21 -0000

  Branch: refs/heads/http/should_cancel_push
  Home:   https://github.com/quicwg/base-drafts
  Commit: 74a113b1dce55fe610ac2cc468d0a60a05224d46
      https://github.com/quicwg/base-drafts/commit/74a113b1dce55fe610ac2cc468d0a60a05224d46
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Apply suggestions from code review

Co-authored-by: Martin Thomson <mt@lowentropy.net>



From nobody Thu May 28 06:32:31 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 26DA33A0EB3 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 06:32:30 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 VFsaFUesoDMz for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 06:32:28 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ABE243A0EB2 for <quic-issues@ietf.org>; Thu, 28 May 2020 06:32:28 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id DF8186A1EF3 for <quic-issues@ietf.org>; Thu, 28 May 2020 06:32:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590672747; bh=KodAvWL32M6vsFfIS3MuAXdNt0/O6DBBlhOuoRvkitA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RRQH3gU/Fl97N34walFELKRioiLkkO6NyUi6FAoPdSLbmys7WpdguO9c7aenVGap5 ReUgdzw6Auzd8rc3v4ZW6LD7YXzX8flLiWM5pZLuWvqFoMEwkW/QbIzEZknzf+QA/y cfrsiGMmvVfE4gZxaYft1YvGPA9QPoXE2gQU4+QM=
Date: Thu, 28 May 2020 06:32:27 -0700
From: Mike Bishop <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3700/push/5142002604@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3700@github.com>
References: <quicwg/base-drafts/pull/3700@github.com>
Subject: Re: [quicwg/base-drafts] Servers should always send CANCEL_PUSH (#3700)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecfbd6bd0cb5_29563fd52f6cd95c3773f3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: MikeBishop
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iLyglORs7jZqVdzsyFITBMKjmG4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 13:32:30 -0000

----==_mimepart_5ecfbd6bd0cb5_29563fd52f6cd95c3773f3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@MikeBishop pushed 1 commit.

74a113b1dce55fe610ac2cc468d0a60a05224d46  Apply suggestions from code review


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3700/files/8934b25be9a655b73da54bdcfe411cb03b0ea71a..74a113b1dce55fe610ac2cc468d0a60a05224d46

----==_mimepart_5ecfbd6bd0cb5_29563fd52f6cd95c3773f3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/MikeBishop" class="user-mention">@MikeBishop</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/74a113b1dce55fe610ac2cc468d0a60a05224d46">74a113b</a>  Apply suggestions from code review</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3700/files/8934b25be9a655b73da54bdcfe411cb03b0ea71a..74a113b1dce55fe610ac2cc468d0a60a05224d46">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2LMRFSOCRT6DFHXJDRTZRWXANCNFSM4NLJ4YMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3H2C6X6MAXG4U3EJLRTZRWXA5CNFSM4NLJ4YM2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDGNJQGMZDQN2QOVZWQIZVGE2DEMBQGI3DANA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3700/files/8934b25be9a655b73da54bdcfe411cb03b0ea71a..74a113b1dce55fe610ac2cc468d0a60a05224d46",
"url": "https://github.com/quicwg/base-drafts/pull/3700/files/8934b25be9a655b73da54bdcfe411cb03b0ea71a..74a113b1dce55fe610ac2cc468d0a60a05224d46",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecfbd6bd0cb5_29563fd52f6cd95c3773f3--


From nobody Thu May 28 06:34:31 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 578033A0ECE for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 06:34:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 34OLgvuT6e-U for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 06:34:28 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A03F63A0EC9 for <quic-issues@ietf.org>; Thu, 28 May 2020 06:34:13 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id 85C478C11E5 for <quic-issues@ietf.org>; Thu, 28 May 2020 06:34:12 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590672852; bh=2/mEvGXMKwN61/qSSdT8VcWpwMekYQPHl9l0FwaZNyQ=; h=Date:From:To:Subject:From; b=sxPxQAe58EsOhD9ilE6wgFFidG+yGVJJv4ru/NTK8O85+KgGku+cCA0FDMxo/yNVl fCo67XDNgMXQVhbgXvLDPt0bzibvbyIFfgpGKOXOsxmsSKvsstV2uPT/J5WQTD9c2I S35u/KadvQeccsBatTfabzN37C00ow/xQmZVvKL4=
Date: Thu, 28 May 2020 06:34:12 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/5260d3-b82367@github.com>
Subject: [quicwg/base-drafts] b82367: Script updating gh-pages from 74a113b1. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JbfKU2FM5XpAU0nx0bkWKU-Sicw>
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: Thu, 28 May 2020 13:34:29 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b82367258afa04caa7d9f2842722ce2a175c56f2
      https://github.com/quicwg/base-drafts/commit/b82367258afa04caa7d9f2842722ce2a175c56f2
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    R cid-limit-flip/draft-ietf-quic-http.html
    R cid-limit-flip/draft-ietf-quic-http.txt
    R cid-limit-flip/draft-ietf-quic-invariants.html
    R cid-limit-flip/draft-ietf-quic-invariants.txt
    R cid-limit-flip/draft-ietf-quic-qpack.html
    R cid-limit-flip/draft-ietf-quic-qpack.txt
    R cid-limit-flip/draft-ietf-quic-recovery.html
    R cid-limit-flip/draft-ietf-quic-recovery.txt
    R cid-limit-flip/draft-ietf-quic-tls.html
    R cid-limit-flip/draft-ietf-quic-tls.txt
    R cid-limit-flip/draft-ietf-quic-transport.html
    R cid-limit-flip/draft-ietf-quic-transport.txt
    R cid-limit-flip/index.html
    M http/should_cancel_push/draft-ietf-quic-http.html
    M http/should_cancel_push/draft-ietf-quic-http.txt
    M http/should_cancel_push/draft-ietf-quic-invariants.html
    M http/should_cancel_push/draft-ietf-quic-invariants.txt
    M http/should_cancel_push/draft-ietf-quic-qpack.html
    M http/should_cancel_push/draft-ietf-quic-qpack.txt
    M http/should_cancel_push/draft-ietf-quic-recovery.html
    M http/should_cancel_push/draft-ietf-quic-recovery.txt
    M http/should_cancel_push/draft-ietf-quic-tls.html
    M http/should_cancel_push/draft-ietf-quic-tls.txt
    M http/should_cancel_push/draft-ietf-quic-transport.html
    M http/should_cancel_push/draft-ietf-quic-transport.txt
    M index.html
    R version-greasing/draft-ietf-quic-http.html
    R version-greasing/draft-ietf-quic-http.txt
    R version-greasing/draft-ietf-quic-invariants.html
    R version-greasing/draft-ietf-quic-invariants.txt
    R version-greasing/draft-ietf-quic-qpack.html
    R version-greasing/draft-ietf-quic-qpack.txt
    R version-greasing/draft-ietf-quic-recovery.html
    R version-greasing/draft-ietf-quic-recovery.txt
    R version-greasing/draft-ietf-quic-tls.html
    R version-greasing/draft-ietf-quic-tls.txt
    R version-greasing/draft-ietf-quic-transport.html
    R version-greasing/draft-ietf-quic-transport.txt
    R version-greasing/index.html

  Log Message:
  -----------
  Script updating gh-pages from 74a113b1. [ci skip]



From nobody Thu May 28 06:34:35 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 408D63A0ED5 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 06:34:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 zE568jMUKKzR for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 06:34:32 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8A3513A0ECF for <quic-issues@ietf.org>; Thu, 28 May 2020 06:34:23 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id C8CAD520E2B for <quic-issues@ietf.org>; Thu, 28 May 2020 06:34:22 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590672862; bh=TISnwX9X7GNE4rr5kqvX+4IPznMZ6QCyy7oYMbXoHOY=; h=Date:From:To:Subject:From; b=1U6bFTWgplmQuPg8wSMSNC8fMyH6JvuoKYvkYE5AqTT3mu9rz4LAkjMl2aTP71wXy 1L4tnp2WcqXiCeNkKCYoAlfIwjyUMa6Y24i/yEVeMdWZDmYtlLBzqN0bG/ggVbLpVD N0DwpQmAURJiTdCSq9aGEIuDcN7Cwevv8uHMCTMk=
Date: Thu, 28 May 2020 06:34:22 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b82367-e60c12@github.com>
Subject: [quicwg/base-drafts] e60c12: Script updating archive at 2020-05-28T13:34:01Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/PKWyOifGZy0fRdKJw09vwInb6bs>
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: Thu, 28 May 2020 13:34:33 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e60c12d33b69cea0c6a37f091e2d5862b54a1e01
      https://github.com/quicwg/base-drafts/commit/e60c12d33b69cea0c6a37f091e2d5862b54a1e01
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-28T13:34:01Z. [ci skip]



From nobody Thu May 28 06:53:03 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 6DA3B3A0ED2 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 06:53:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 rZtBEZvauviM for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 06:53:01 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3B1BF3A0ECF for <quic-issues@ietf.org>; Thu, 28 May 2020 06:53:01 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id D96F7C604FE for <quic-issues@ietf.org>; Thu, 28 May 2020 06:52:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590673979; bh=ViNUp585S9MGnYPglHPbkeuZbzuEYFeqFzT86+jVgQ0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eaMMutBtYTA0bRyw2+LjlB85lCAYVFJdwkMlFpJ6Or9KAx15wkvPzgx6YjdYzuA9k witCwmlOLhnVzo9jHROBIkq9K7Kqyy7dyOX1PgwwPKJDt0f9lkzSlR4TpOoWHZyF1d QGAgGm9H95pMxTaEWv1yP3DanjJ8hHf5mxUC+QTE=
Date: Thu, 28 May 2020 06:52:59 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6NVMPNXIQIOSOEEP543ORTXEVBNHHCKLSLMI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3691/review/420128404@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3691@github.com>
References: <quicwg/base-drafts/pull/3691@github.com>
Subject: Re: [quicwg/base-drafts] use TRANSPORT_PARAMETER_ERROR when authenticating connection IDs (#3691)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecfc23bc9c7f_cc73f81638cd95c1682bd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TsHWe2sVakMJCWzKFgSgCF_K8hs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 13:53:02 -0000

----==_mimepart_5ecfc23bc9c7f_cc73f81638cd95c1682bd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.

If you take the suggestions here, I will mark this for inclusion in the next consensus call.  (Otherwise, we should continue discussion.)

> +An endpoint MUST treat the following as a connection error of type
+PROTOCOL_VIOLATION:

```suggestion
An endpoint MUST treat the following as a connection error of type
TRANSPORT_PARAMETER_ERROR or PROTOCOL_VIOLATION:
```

Just to enact the suggestion from below and avoid ambiguity.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview-420128404
----==_mimepart_5ecfc23bc9c7f_cc73f81638cd95c1682bd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> commented on this pull request.</p>=0D
=0D
<p>If you take the suggestions here, I will mark this for inclusion in th=
e next consensus call.  (Otherwise, we should continue discussion.)</p><h=
r>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3691#discussi=
on_r431851134">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +An endpoint MUST treat the following as a=
 connection error of type=0D
+PROTOCOL_VIOLATION:=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-An endpoint MUST treat the following as a con=
nection error of type=0D
-PROTOCOL_VIOLATION:=0D
+An endpoint MUST treat the following as a connection error of type=0D
+TRANSPORT_PARAMETER_ERROR or PROTOCOL_VIOLATION:=0D
</pre>=0D
=0D
<p>Just to enact the suggestion from below and avoid ambiguity.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3691#pullrequestreview-420128404">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K5L43OCN5673VYK6YTRTZUDXANCNFSM4NIXGKBA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJKZJYC5XLBY7RWN7UEDRTZUDXA5CNFSM4=
NIXGKBKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODEFKNFA.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3691#pullrequestrev=
iew-420128404",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3691#pullrequestreview=
-420128404",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecfc23bc9c7f_cc73f81638cd95c1682bd--


From nobody Thu May 28 07:29:42 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 93E563A0F04 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 07:29:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.099
X-Spam-Level: 
X-Spam-Status: No, score=-3.099 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=unavailable 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 CZFt_dvzzA0l for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 07:29:39 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 29B173A0FB1 for <quic-issues@ietf.org>; Thu, 28 May 2020 07:20:06 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 4370F8C01E4 for <quic-issues@ietf.org>; Thu, 28 May 2020 07:20:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590675605; bh=dok+lEoGZ7aWEkx0pG4IL4EhXLTDJ7q3VnoOrClXHhw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LeQMIN28SQl9DMEvdMPCZg0mMCWWW4nv3yi98lnnOkAppEbsv3IHIOYOnVqS9rHoO 8sZATKFwp94ROCF4OvCrKhGa2/YAYxeQuKckzo1HyEHGYsfd5ojBedJGgp8q3yCqWB ReK9m+Qiw98e+mLJXJhCDHOtOlcmh6dwDVNjdXdk=
Date: Thu, 28 May 2020 07:20:05 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK26COMDKJAL6IQC76N43OUZLEVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/635379450@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecfc89533f0e_85b3fad988cd964319339"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/voAKPeN7poHwWicxHEmN6RjhZ2k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 14:29:41 -0000

----==_mimepart_5ecfc89533f0e_85b3fad988cd964319339
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

=0D
There are some different points of pain here, the default and the need =0D=

to adapt to the endpoint:=0D
=0D
An ACK Ratio (AR 1:1): is the finest granuality of feedback. A QUIC AR =0D=

of 1:1 would consume return path capacity proportional to about 6% of =0D=

the forward traffic (assuming no loss, etc). This is more than TCP =0D
(about 3%).=0D
=0D
An ACK Ratio (AR 1:2): For a return path bottleneck, QUIC with an AR of =0D=

1:2 will still have more impact on sharing flows than TCP would with the =
=0D
same AR 1:2 (because QUIC ACKs are larger, and because networks do not =0D=

currently thin QUIC ACKs).=0D
=0D
So QUIC needs to choose the default=C2=A0 - is it 1:2, 1:4, 1:8, 1:10?=0D=

=0D
A QUIC AR 1:10 results in an ACK traffic volume of about 1% of the =0D
forward traffic. To me, that's a small proportion, which is why I argued =
=0D
that 1:10 is a good recommendation. The default is important when: the =0D=

endpoints have no knowledge of the asymetry or the impact they have on a =
=0D
link's layer 2 loading, or the endpoints need to reduce the collateral =0D=

damage to other IP flows sharing the return path capacity.=0D
=0D
Negotiation: The AR can be driven by the application or endpoint - =0D
e.g.,=C2=A0 a higher rate connection may well have a benefit from an AR o=
f =0D
1:10, 1:20, 1:100,=C2=A0 etc - but such ARs are seldom chosen to reduce t=
he =0D
impact on sharing a return bottleneck, more likely they are chosen to =0D=

benefit the performance of an application or endpoint. That =0D
consideration is different, and likely depends on the application or =0D
ednpoint - which to me is where the flexibility offered by a transport =0D=

parameter is so important. draft-iyengar-quic-delayed-ack will still =0D
need guidance on the "default".=0D
=0D
I argued that the default policy impacts the congestion behaviour when =0D=

there is appreciable asymmetry this causes at layer 2 or the collateral =0D=

damage (congestion impact on sharing flows). Sure, the choice of 1% is =0D=

just a number I said was reasonable, but I've seldom encountered L2 =0D
technologies where less than 1% of forward traffic would be =0D
significantly better.=0D
=0D
Gorry=0D
=0D
=0D
On 27/05/2020 10:31, Bob Briscoe wrote:=0D
>=0D
> To be clear, when I said that having a default policy is not a matter o=
f=0D
> interoperability, that's only strictly true if QUIC supports something=0D=

> like draft-iyengar-quic-delayed-ack for the sender to ask the receiver=0D=

> to use a certain policy.=0D
>=0D
>=0D
> Bob=0D
>=0D
> -- =0D
> ________________________________________________________________=0D
> Bob Briscoe http://bobbriscoe.net/=0D
>=0D
> =E2=80=94=0D
> You are receiving this because you were mentioned.=0D
> Reply to this email directly, view it on GitHub =0D
> <https://github.com/quicwg/base-drafts/issues/3529#issuecomment-6345442=
99>, =0D
> or unsubscribe =0D
> <https://github.com/notifications/unsubscribe-auth/ABYLLERFGWEHGO2FSSOA=
QFDRTTMXTANCNFSM4LOJ4RQA>.=0D
>=0D
-- =0D
G. Fairhurst, School of Engineering=0D
=0D
=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635379450=

----==_mimepart_5ecfc89533f0e_85b3fad988cd964319339
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<br>=0D
There are some different points of pain here, the default and the need <b=
r>=0D
to adapt to the endpoint:<br>=0D
<br>=0D
An ACK Ratio (AR 1:1): is the finest granuality of feedback. A QUIC AR <b=
r>=0D
of 1:1 would consume return path capacity proportional to about 6% of <br=
>=0D
the forward traffic (assuming no loss, etc). This is more than TCP <br>=0D=

(about 3%).<br>=0D
<br>=0D
An ACK Ratio (AR 1:2): For a return path bottleneck, QUIC with an AR of <=
br>=0D
1:2 will still have more impact on sharing flows than TCP would with the =
<br>=0D
same AR 1:2 (because QUIC ACKs are larger, and because networks do not <b=
r>=0D
currently thin QUIC ACKs).<br>=0D
<br>=0D
So QUIC needs to choose the default=C2=A0 - is it 1:2, 1:4, 1:8, 1:10?<br=
>=0D
<br>=0D
A QUIC AR 1:10 results in an ACK traffic volume of about 1% of the <br>=0D=

forward traffic. To me, that&#39;s a small proportion, which is why I arg=
ued <br>=0D
that 1:10 is a good recommendation. The default is important when: the <b=
r>=0D
endpoints have no knowledge of the asymetry or the impact they have on a =
<br>=0D
link&#39;s layer 2 loading, or the endpoints need to reduce the collatera=
l <br>=0D
damage to other IP flows sharing the return path capacity.<br>=0D
<br>=0D
Negotiation: The AR can be driven by the application or endpoint - <br>=0D=

e.g.,=C2=A0 a higher rate connection may well have a benefit from an AR o=
f <br>=0D
1:10, 1:20, 1:100,=C2=A0 etc - but such ARs are seldom chosen to reduce t=
he <br>=0D
impact on sharing a return bottleneck, more likely they are chosen to <br=
>=0D
benefit the performance of an application or endpoint. That <br>=0D
consideration is different, and likely depends on the application or <br>=
=0D
ednpoint - which to me is where the flexibility offered by a transport <b=
r>=0D
parameter is so important. draft-iyengar-quic-delayed-ack will still <br>=
=0D
need guidance on the &quot;default&quot;.<br>=0D
<br>=0D
I argued that the default policy impacts the congestion behaviour when <b=
r>=0D
there is appreciable asymmetry this causes at layer 2 or the collateral <=
br>=0D
damage (congestion impact on sharing flows). Sure, the choice of 1% is <b=
r>=0D
just a number I said was reasonable, but I&#39;ve seldom encountered L2 <=
br>=0D
technologies where less than 1% of forward traffic would be <br>=0D
significantly better.<br>=0D
<br>=0D
Gorry<br>=0D
<br>=0D
<br>=0D
On 27/05/2020 10:31, Bob Briscoe wrote:<br>=0D
&gt;<br>=0D
&gt; To be clear, when I said that having a default policy is not a matte=
r of<br>=0D
&gt; interoperability, that&#39;s only strictly true if QUIC supports som=
ething<br>=0D
&gt; like draft-iyengar-quic-delayed-ack for the sender to ask the receiv=
er<br>=0D
&gt; to use a certain policy.<br>=0D
&gt;<br>=0D
&gt;<br>=0D
&gt; Bob<br>=0D
&gt;<br>=0D
&gt; -- <br>=0D
&gt; ________________________________________________________________<br>=
=0D
&gt; Bob Briscoe http://bobbriscoe.net/<br>=0D
&gt;<br>=0D
&gt; =E2=80=94<br>=0D
&gt; You are receiving this because you were mentioned.<br>=0D
&gt; Reply to this email directly, view it on GitHub <br>=0D
&gt; &lt;https://github.com/quicwg/base-drafts/issues/3529#issuecomment-6=
34544299&gt;, <br>=0D
&gt; or unsubscribe <br>=0D
&gt; &lt;https://github.com/notifications/unsubscribe-auth/ABYLLERFGWEHGO=
2FSSOAQFDRTTMXTANCNFSM4LOJ4RQA&gt;.<br>=0D
&gt;<br>=0D
-- <br>=0D
G. Fairhurst, School of Engineering<br>=0D
<br>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/issues/3529#issuecomment-635379450">view it on GitHub</a>,=
 or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK6K=
GWIO7AOVAYCBN2LRTZXJLANCNFSM4LOJ4RQA">unsubscribe</a>.<img src=3D"https:/=
/github.com/notifications/beacon/AFTOJK7VGRTTDEDE3VISEALRTZXJLA5CNFSM4LOJ=
4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXPR56Q.g=
if" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment=
-635379450",=0D
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-63=
5379450",=0D
"name": "View Issue"=0D
},=0D
"description": "View this Issue on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ecfc89533f0e_85b3fad988cd964319339--


From nobody Thu May 28 07:32:44 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 0AE063A0F60 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 07:32:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 DBXyv9MyJ8kC for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 07:32:37 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8153B3A0F31 for <quic-issues@ietf.org>; Thu, 28 May 2020 07:32:37 -0700 (PDT)
Received: from github-lowworker-d1d6e31.ash1-iad.github.net (github-lowworker-d1d6e31.ash1-iad.github.net [10.56.105.50]) by smtp.github.com (Postfix) with ESMTP id 7AC008C0047 for <quic-issues@ietf.org>; Thu, 28 May 2020 07:32:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590676356; bh=knwDzGA7NB22ajY86+av2BZLiozNAYzijuZqO08NMLU=; h=Date:From:To:Subject:From; b=uUdXXnKYVWECTDS6NmGi8TjgP9RFhMZYmFwM9L3uYdcUbw0A4Zh/y9Iw0+VuVc4Dz 7EVEkkXkAxNyQxAOQj9XI/Nw9u+2gStzTKqGmGaEj/KONvAsGo7xso9oz7b/YZvSJF shK899s3BnKSIarZTHd8SoQ1K7Hk3+6/8fwVDZZ4=
Date: Thu, 28 May 2020 07:32:36 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-split-pto-pseudocode/6ce4f9-820497@github.com>
Subject: [quicwg/base-drafts] be7c22: transport: fix broken link to tls
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Io3q2Whw_XKnolaIm5qtCj0oD00>
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: Thu, 28 May 2020 14:32:44 -0000

  Branch: refs/heads/ianswett-split-pto-pseudocode
  Home:   https://github.com/quicwg/base-drafts
  Commit: be7c22aa47d44bf07f78a782beb000900b22eb73
      https://github.com/quicwg/base-drafts/commit/be7c22aa47d44bf07f78a782beb000900b22eb73
  Author: Julian Reschke <julian.reschke@gmx.de>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  transport: fix broken link to tls


  Commit: ee11054298f5de6f42112a036b631c7b69645602
      https://github.com/quicwg/base-drafts/commit/ee11054298f5de6f42112a036b631c7b69645602
  Author: Julian Reschke <julian.reschke@gmx.de>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  tls: fix broken reference to -transport


  Commit: 9074a921cbf37028ef6377c00cf3dd36ce4b08bf
      https://github.com/quicwg/base-drafts/commit/9074a921cbf37028ef6377c00cf3dd36ce4b08bf
  Author: Alessandro Ghedini <alessandro@cloudflare.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Remove superfluous word


  Commit: 8b7b504f48ece5eca7b7d234eee9f3f0f0b91eab
      https://github.com/quicwg/base-drafts/commit/8b7b504f48ece5eca7b7d234eee9f3f0f0b91eab
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Fix noun/verb number agreement in the transport draft


  Commit: 1655b2d224dd35a586c5ca0b444f56a4d7831b1d
      https://github.com/quicwg/base-drafts/commit/1655b2d224dd35a586c5ca0b444f56a4d7831b1d
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Fix typo in transport draft: s/the the/the/


  Commit: 330171e8be14716b1b4d52a23cfb874d94760f01
      https://github.com/quicwg/base-drafts/commit/330171e8be14716b1b4d52a23cfb874d94760f01
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3675 from reschke/patch-29

transport: fix broken link to tls


  Commit: 461fed6d9b405413ca4086ce99ab7df4a0a8ca28
      https://github.com/quicwg/base-drafts/commit/461fed6d9b405413ca4086ce99ab7df4a0a8ca28
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #3676 from reschke/patch-30

tls: fix broken reference to -transport


  Commit: b87b405e7af529e3d185c4eea331e88ded3566d3
      https://github.com/quicwg/base-drafts/commit/b87b405e7af529e3d185c4eea331e88ded3566d3
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-tls.md

  Log Message:
  -----------
  Merge pull request #3678 from ghedo/tls-fix-typo

Remove superfluous word


  Commit: c62de3f12901882e37d7b86277cb2b4da7f4b2ef
      https://github.com/quicwg/base-drafts/commit/c62de3f12901882e37d7b86277cb2b4da7f4b2ef
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3679 from dtikhonov/202005200954-fix-number-agreement

Fix noun/verb number agreement in the transport draft


  Commit: c071e5ece172069ba09da8f76619c6652b80b9a6
      https://github.com/quicwg/base-drafts/commit/c071e5ece172069ba09da8f76619c6652b80b9a6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3680 from dtikhonov/202005201037-s-the-the-the

Fix typo in transport draft: s/the the/the/


  Commit: e934d003976041b7325c0b5750cf4697a3593d89
      https://github.com/quicwg/base-drafts/commit/e934d003976041b7325c0b5750cf4697a3593d89
  Author: David Schinazi <dschinazi.ietf@gmail.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add CID authentication to draft-28 changelog


  Commit: 44bef0c230a2723a3aa21976aa283d7a75325d0a
      https://github.com/quicwg/base-drafts/commit/44bef0c230a2723a3aa21976aa283d7a75325d0a
  Author: David Schinazi <DavidSchinazi@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Numbers all look the same :(

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: d9e3f02481af9ceb56357d098a5eee535b12304c
      https://github.com/quicwg/base-drafts/commit/d9e3f02481af9ceb56357d098a5eee535b12304c
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3682 from DavidSchinazi/authcidchangelog

Add CID authentication to draft-28 changelog


  Commit: 57ce7603bb82fa5014af03385b38b813101ddf23
      https://github.com/quicwg/base-drafts/commit/57ce7603bb82fa5014af03385b38b813101ddf23
  Author: Mike Bishop <mbishop@evequefou.be>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md

  Log Message:
  -----------
  Correct reference for authority-form (#3683)


  Commit: d365070088274d67bfb434237d12248aa6316dc4
      https://github.com/quicwg/base-drafts/commit/d365070088274d67bfb434237d12248aa6316dc4
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Make -transport non-normative


  Commit: cb9209e6472a73c207790207cfa3202983b3efd9
      https://github.com/quicwg/base-drafts/commit/cb9209e6472a73c207790207cfa3202983b3efd9
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Reword packets stuff


  Commit: f4f9f7adb6460d762a4d9468a307fce4fae478ac
      https://github.com/quicwg/base-drafts/commit/f4f9f7adb6460d762a4d9468a307fce4fae478ac
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Move blank lines


  Commit: e133545372dbea7eb4a52ac6db5b7d5b4d6ca295
      https://github.com/quicwg/base-drafts/commit/e133545372dbea7eb4a52ac6db5b7d5b4d6ca295
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  s/Len/Length/


  Commit: ede2137e80798e97a73347246e5260595f542db0
      https://github.com/quicwg/base-drafts/commit/ede2137e80798e97a73347246e5260595f542db0
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Use an abbreviated notation section


  Commit: 181dd7efcd44cd0c85ec02f4b8ab39c647d4b46c
      https://github.com/quicwg/base-drafts/commit/181dd7efcd44cd0c85ec02f4b8ab39c647d4b46c
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add an example of a variable-length integer field

The notations didn't have one of these previously, but were otherwise
thorough.  Might as well do that.


  Commit: a621390f93a50fc63319b1724b68f51ae67be976
      https://github.com/quicwg/base-drafts/commit/a621390f93a50fc63319b1724b68f51ae67be976
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>
  Date:   2020-05-22 (Fri, 22 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add #3527 to transport's "Since ID-27" changelog


  Commit: 7688b67edac08a7b238ef842415fb8e8ae2eb181
      https://github.com/quicwg/base-drafts/commit/7688b67edac08a7b238ef842415fb8e8ae2eb181
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-24 (Sun, 24 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3685 from quicwg/varint-fmt-example

Add an example of a variable-length integer field


  Commit: 731fd5bf0d0d30ecd6c88e19ebdb7df5e041f43a
      https://github.com/quicwg/base-drafts/commit/731fd5bf0d0d30ecd6c88e19ebdb7df5e041f43a
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-24 (Sun, 24 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3688 from dtikhonov/202005221557-add-3527-to-changelog

Add #3527 to transport's "Since ID-27" changelog


  Commit: c03f045aa3b50e16c2192323c688a2a601c13958
      https://github.com/quicwg/base-drafts/commit/c03f045aa3b50e16c2192323c688a2a601c13958
  Author: Kazuho Oku <kazuhooku@gmail.com>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  rename SERVER_BUSY to CONNECTION_REFUSED


  Commit: 927fe3957b1930c38fbdf68dd950eec7bdff7db8
      https://github.com/quicwg/base-drafts/commit/927fe3957b1930c38fbdf68dd950eec7bdff7db8
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Better duplicate detection

Including mention of a minimum packet number and the risks in setting
that value.

Closes #3692.


  Commit: 9f8038def838e3d42c1595d35c5ba70bce19ea41
      https://github.com/quicwg/base-drafts/commit/9f8038def838e3d42c1595d35c5ba70bce19ea41
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Remove migration from the example


  Commit: 0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7
      https://github.com/quicwg/base-drafts/commit/0f6ca28b653cc6c0fdbe7450d027fa6c619e21a7
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Rewording to avoid potential confusion


  Commit: 4a060d25fb1f99f520a676571dda60f85f8e8cd5
      https://github.com/quicwg/base-drafts/commit/4a060d25fb1f99f520a676571dda60f85f8e8cd5
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-26 (Tue, 26 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Citation rules FTW

Closes #3687.


  Commit: d90c544322dc27c22539bb87fa09a6a110af4ab7
      https://github.com/quicwg/base-drafts/commit/d90c544322dc27c22539bb87fa09a6a110af4ab7
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Tweaking

Co-authored-by: ianswett <ianswett@users.noreply.github.com>


  Commit: 081f95f0de6f0b3c0736c36e0062a8cee6c540e6
      https://github.com/quicwg/base-drafts/commit/081f95f0de6f0b3c0736c36e0062a8cee6c540e6
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Rewrap


  Commit: cbb0b2bc2b10816f686896779361cc42f4be8c35
      https://github.com/quicwg/base-drafts/commit/cbb0b2bc2b10816f686896779361cc42f4be8c35
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  remove unnecessary sentence


  Commit: bfddc8e7920972db67ac2f88a5e5919ed6910a06
      https://github.com/quicwg/base-drafts/commit/bfddc8e7920972db67ac2f88a5e5919ed6910a06
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-invariants.md

  Log Message:
  -----------
  Merge pull request #3684 from quicwg/invariant-independent

Invariant independent


  Commit: 4d1bee363f0289ea7388a8283fe131c6841f6f23
      https://github.com/quicwg/base-drafts/commit/4d1bee363f0289ea7388a8283fe131c6841f6f23
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  plurals

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>


  Commit: e22909f972c6bc9f80f0ca27e3f51b9432cacde4
      https://github.com/quicwg/base-drafts/commit/e22909f972c6bc9f80f0ca27e3f51b9432cacde4
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3696 from quicwg/dedupe-packets

Better duplicate detection


  Commit: 5ca8ae73d7c63ccae35a0a7e280b168b985c11be
      https://github.com/quicwg/base-drafts/commit/5ca8ae73d7c63ccae35a0a7e280b168b985c11be
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3697 from quicwg/cite-this

Citation rules for QUIC


  Commit: 4134402aadc630c3ca95c100fabcb5530f02571f
      https://github.com/quicwg/base-drafts/commit/4134402aadc630c3ca95c100fabcb5530f02571f
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge pull request #3694 from kazuho/kazuho/connection-refused-error

rename SERVER_BUSY to CONNECTION_REFUSED


  Commit: 6de92cc83c3f7035140874aa971263cf47391f21
      https://github.com/quicwg/base-drafts/commit/6de92cc83c3f7035140874aa971263cf47391f21
  Author: Rui Paulo <rpaulo@me.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Fix pseudocode typo in OnPacketNumberSpaceDiscarded().


  Commit: 6afd6b8f6c7bb8f089690783335f1fec21aa45cc
      https://github.com/quicwg/base-drafts/commit/6afd6b8f6c7bb8f089690783335f1fec21aa45cc
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3705 from rpaulo/fix-recovery-pseudocode

Fix pseudocode typo in OnPacketNumberSpaceDiscarded().


  Commit: 820497e882f930dcdc5d3ae7401add631ec0ea38
      https://github.com/quicwg/base-drafts/commit/820497e882f930dcdc5d3ae7401add631ec0ea38
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-recovery.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge branch 'master' into ianswett-split-pto-pseudocode


Compare: https://github.com/quicwg/base-drafts/compare/6ce4f9b1841f...820497e882f9


From nobody Thu May 28 07:32:53 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 52A043A0F0C for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 07:32:52 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 xb_DDWZZdJTf for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 07:32:51 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DF75C3A0F1D for <quic-issues@ietf.org>; Thu, 28 May 2020 07:32:50 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 3AC865205DB for <quic-issues@ietf.org>; Thu, 28 May 2020 07:32:50 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590676370; bh=0XWrfkfiAx6cfZM9GjX5LdYgQ10vWmCoZpqttd1Ordc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ci229quxHE/BBlk2pqDdj57CreRZ3jq4BmKkx6hksBMy1ZLqP8o1R8JjwejQXX9S0 sm4BPyaYUp+eKsm24flEnLQdiwJpS6H/qBgwsjEoHXP1vTK+5w+GoVdpl9D51476cS bQhbC5f1ohwwTb9yAfSeNknC85oXOjOJM4JSH3XU=
Date: Thu, 28 May 2020 07:32:50 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/push/5142359115@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecfcb922c24b_44fa3f8c6f6cd9609406b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/MVDasyZEzpxmPJy1Lt5vHF3oNJo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 14:32:52 -0000

----==_mimepart_5ecfcb922c24b_44fa3f8c6f6cd9609406b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

820497e882f930dcdc5d3ae7401add631ec0ea38  Merge branch 'master' into ianswett-split-pto-pseudocode


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681/files/6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a..820497e882f930dcdc5d3ae7401add631ec0ea38

----==_mimepart_5ecfcb922c24b_44fa3f8c6f6cd9609406b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/820497e882f930dcdc5d3ae7401add631ec0ea38">820497e</a>  Merge branch &#39;master&#39; into ianswett-split-pto-pseudocode</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3681/files/6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a..820497e882f930dcdc5d3ae7401add631ec0ea38">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5LW2RDYZHTSIPRKZDRTZYZFANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2J4GUFTE2VE65EMS3RTZYZFA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDAOBUGU4TEOKQOVZWQIZVGE2DEMZVHEYTCNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681/files/6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a..820497e882f930dcdc5d3ae7401add631ec0ea38",
"url": "https://github.com/quicwg/base-drafts/pull/3681/files/6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a..820497e882f930dcdc5d3ae7401add631ec0ea38",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ecfcb922c24b_44fa3f8c6f6cd9609406b--


From nobody Thu May 28 07:33:48 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 291BD3A0F0E for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 07:33:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 zKCy_3zX-DBg for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 07:33:46 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 278A83A0F04 for <quic-issues@ietf.org>; Thu, 28 May 2020 07:33:46 -0700 (PDT)
Received: from github-lowworker-c73936b.ash1-iad.github.net (github-lowworker-c73936b.ash1-iad.github.net [10.56.112.13]) by smtp.github.com (Postfix) with ESMTP id 61F9FC6165D for <quic-issues@ietf.org>; Thu, 28 May 2020 07:33:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590676425; bh=iDsB0XbQ+DhA97OBP59FImwx9KQR4a19oVDcKJqTeIo=; h=Date:From:To:Subject:From; b=SbAQAcyj6iWTc4D53B7V28I716gTfA6oX13Vgoh86bbA8liGj43OgC7tvMMXLFIbU sa+19KFer9QChOY08laQhKXExTe05lHs58EpR1DX3tbocIc4dZI7KbXoHoXt8CCZGV QIIH4Kk5kubnMlW2gcGBsVozwznt3nE/7+TtzOJg=
Date: Thu, 28 May 2020 07:33:45 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e60c12-c644f9@github.com>
Subject: [quicwg/base-drafts] c644f9: Script updating gh-pages from 820497e8. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cK1uCCDfI-eETZgYyva3tqRU6g0>
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: Thu, 28 May 2020 14:33:47 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c644f9a0fa39930bce3c883c7000cfe365eb0b99
      https://github.com/quicwg/base-drafts/commit/c644f9a0fa39930bce3c883c7000cfe365eb0b99
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M ianswett-split-pto-pseudocode/draft-ietf-quic-http.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-http.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-invariants.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-invariants.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-qpack.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-qpack.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-tls.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-tls.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-transport.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 820497e8. [ci skip]



From nobody Thu May 28 08:46:00 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 297643A0FD1 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 08:45:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.696
X-Spam-Level: 
X-Spam-Status: No, score=-1.696 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 4bJqw6wZRE52 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 08:45:57 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B10ED3A0FD0 for <quic-issues@ietf.org>; Thu, 28 May 2020 08:45:57 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 9C5608C1DAC for <quic-issues@ietf.org>; Thu, 28 May 2020 08:45:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590680756; bh=VYWuN8BWdjTi6T2a0kBcAn6RkJ6F3Fsc32TD26DqnpQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IfLbY2mTo12mXN4rbSpnYb4hyDoxP0tMZua3tMXDmrUFIsh1NciJ7h7My0vZA0b4C 7SrpHhSW/ZS6mbpm94cwUU9VrGzSa31HRTV+lQ56SvFJFlAYvgfG9yXy315+IsaIMf Gf96RzPsFGQFHNWLlkz/JwXPEEBoI3+xBGwVDUjg=
Date: Thu, 28 May 2020 08:45:56 -0700
From: msvoelker <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6QJS577JYIMXZXSEV43O63JEVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/420247600@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecfdcb48d3f4_77593fc33c4cd968496ce"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: msvoelker
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kNz1Dhq17WsuZ6QW2h8pTeDHE3g>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 15:45:59 -0000

----==_mimepart_5ecfdcb48d3f4_77593fc33c4cd968496ce
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@msvoelker commented on this pull request.



> +
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame implement "Probing using padding data", as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current
+maximum packet size are more likely to be dropped by the network.
+
+DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.

I think here is more to consider. QUIC's loss detection will trigger on a lost probe packet. Even tough this does not lead to a retransmission, since PING and PAD frames won't be retransmitted, one could misinterpret the loss as a congestion signal. It might worth to note that a lost probe packet should not be treated as a congestion signal by the congestion control.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-420247600
----==_mimepart_5ecfdcb48d3f4_77593fc33c4cd968496ce
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@msvoelker</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431938536">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame implement &quot;Probing using padding data&quot;, as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current
+maximum packet size are more likely to be dropped by the network.
+
+DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.
</pre>
<p>I think here is more to consider. QUIC's loss detection will trigger on a lost probe packet. Even tough this does not lead to a retransmission, since PING and PAD frames won't be retransmitted, one could misinterpret the loss as a congestion signal. It might worth to note that a lost probe packet should not be treated as a congestion signal by the congestion control.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-420247600">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5AB776KQQBTTOQK4LRT2BLJANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3FZM27NVVJL3HUANTRT2BLJA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEGHQMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-420247600",
"url": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-420247600",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecfdcb48d3f4_77593fc33c4cd968496ce--


From nobody Thu May 28 08:51:18 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 E80113A0FE3 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 08:51:15 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.482
X-Spam-Level: 
X-Spam-Status: No, score=-1.482 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 JVf5s1cYErlw for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 08:51:14 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A49843A0FDE for <quic-issues@ietf.org>; Thu, 28 May 2020 08:51:14 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id 7F29B960301 for <quic-issues@ietf.org>; Thu, 28 May 2020 08:51:13 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590681073; bh=RIG/vXmaoUfVSbnMlXH4gj+2zf4waJpJcluJxow0I2E=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=meszQNSM2THa7m55m17AEQPPhFNJ2SmyypSg9fM54YS1MW0K2PMD9EIk0KKdtj9s3 nljaga6QbYu51yC3KkCsuVEjTpyrtO9sKSwgFzoRjPwUpl6LrFGsoLqztNr+IbGnWj n4JBrs0cW+WrYbMqYQ3rgqLci291ddO+wsxb4EfA=
Date: Thu, 28 May 2020 08:51:13 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5UIIKB5GV54KW3X4N43O7PDEVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/420252900@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ecfddf17016c_9313fbacf4cd9601267dd"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9gRLw6kvwCxz_LMsXPwwP1jGnt8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 15:51:16 -0000

----==_mimepart_5ecfddf17016c_9313fbacf4cd9601267dd
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



> +
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame implement "Probing using padding data", as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current
+maximum packet size are more likely to be dropped by the network.
+
+DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.

Section 3, bullet 7 of DPLPMTUD clarifies this as: "Loss of a probe packet SHOULD NOT be treated as an indication of congestion and SHOULD NOT trigger a congestion control reaction". Maybe this could be added as clarification?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#discussion_r431942184
----==_mimepart_5ecfddf17016c_9313fbacf4cd9601267dd
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431942184">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame implement &quot;Probing using padding data&quot;, as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current
+maximum packet size are more likely to be dropped by the network.
+
+DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.
</pre>
<p>Section 3, bullet 7 of DPLPMTUD clarifies this as: "Loss of a probe packet SHOULD NOT be treated as an indication of congestion and SHOULD NOT trigger a congestion control reaction". Maybe this could be added as clarification?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r431942184">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK65QYF5UXYEGCKIFUDRT2B7DANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3TD7HINU4WK2A2RRDRT2B7DA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEGIZZA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r431942184",
"url": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r431942184",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ecfddf17016c_9313fbacf4cd9601267dd--


From nobody Thu May 28 16:26:37 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 ACB2D3A0F9E for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:26:35 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 h1JtfrwjT_ko for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:26:34 -0700 (PDT)
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 6F25E3A0F9C for <quic-issues@ietf.org>; Thu, 28 May 2020 16:26:34 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id 3D8FA282C5E for <quic-issues@ietf.org>; Thu, 28 May 2020 16:26:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590708392; bh=m1CFtHGRV6Qf2zgggx2w8UCPL6oj21/I4fU+HCEEsSY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cBchT9xSxb7KtDKEndgkI+dI9LmOHgAkwFej8eZY/pNRYyfpcbP1vjls+9IesVXAW L8wUb7oFwZApChXdKDugIpqwtLHCr2okV6U4HphfftHR6svG6/VPqn6K4hRdGAh8FZ 1ge8x3ChJcK6X/NRM1Do5vO7o22l3H1j6n+rD3so=
Date: Thu, 28 May 2020 16:26:32 -0700
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6EKX5Z5W3DSLTXKX543QU2REVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/review/420558166@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed048a82d963_5e713ffbf1acd960133884"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/W1Nk7gHspJfxbiT1YlfOiKfb-KM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 23:26:36 -0000

----==_mimepart_5ed048a82d963_5e713ffbf1acd960133884
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinduke approved this pull request.

LGTM



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-420558166
----==_mimepart_5ed048a82d963_5e713ffbf1acd960133884
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinduke</b> approved this pull request.</p>

<p>LGTM</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-420558166">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3DDW6MUNCEC6DMWZ3RT3XKRANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK43TVQOOQ3HSWHRSKLRT3XKRA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEITKVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-420558166",
"url": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-420558166",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed048a82d963_5e713ffbf1acd960133884--


From nobody Thu May 28 16:27:49 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 A80CB3A0FA0 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:27:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 64nZeBuTJueO for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:27:46 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9E09F3A0F9E for <quic-issues@ietf.org>; Thu, 28 May 2020 16:27:46 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 9BD7C9605BC for <quic-issues@ietf.org>; Thu, 28 May 2020 16:27:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590708465; bh=RwnsZzz/+HecUpPtYDKhFmIq2Fr/NYo1S2u3gYcCkzM=; h=Date:From:To:Subject:From; b=fx+OigBcTEa/yjpTV8uN7woRmxU+kBfJ9fnLKX+dCUMhaRR8bEOcrqOLrSjulrktH 5rKmaTc3eXklFJpoNjXm3nN926BojNS/oGNPy1CqBlbsX6X2gxdrJvqCFPl1lWZh2L iyxzy2iPHMnL8yud+HnXQaN+R3YfObP09WuuVXUM=
Date: Thu, 28 May 2020 16:27:45 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/jri/ackf/f1fb3b-2f2fc2@github.com>
Subject: [quicwg/base-drafts] 2f2fc2: Apply suggestions from code review
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/Ir3Qx55-UXFF1Pyw8_ygrnvO6Tk>
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: Thu, 28 May 2020 23:27:48 -0000

  Branch: refs/heads/jri/ackf
  Home:   https://github.com/quicwg/base-drafts
  Commit: 2f2fc2a6cf3f6cb45a99a795754d2f740163db43
      https://github.com/quicwg/base-drafts/commit/2f2fc2a6cf3f6cb45a99a795754d2f740163db43
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Apply suggestions from code review

Co-authored-by: Martin Thomson <mt@lowentropy.net>



From nobody Thu May 28 16:27:58 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 AE95C3A0FA1 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:27:56 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 bSY9eAC17whh for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:27:55 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9AFC83A0F9E for <quic-issues@ietf.org>; Thu, 28 May 2020 16:27:55 -0700 (PDT)
Received: from github-lowworker-292e294.va3-iad.github.net (github-lowworker-292e294.va3-iad.github.net [10.48.102.70]) by smtp.github.com (Postfix) with ESMTP id 0A75B1212F5 for <quic-issues@ietf.org>; Thu, 28 May 2020 16:27:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590708475; bh=nrkj3OJk+SZW09vEd6C3jljQLBj8tOO2uFS0Iddj1Uo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rKYMoje7L6UTol/TDo9ZjjxJ/xeSvNAbv487k2i32vqw0gy1Yb6bnpoYQzNOeQgjp T0EIPzQzYzxfB07x0taGaUGtErQbp8qGSpCqm/KUSRtrHTV8qwtvjCPHqsQp1Rfhl8 Fm2M34wBoM4mJyrH+fWxkJivx5zwA9gQ1RhttKZ8=
Date: Thu, 28 May 2020 16:27:54 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/push/5144856772@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed048fab9599_2bcd3feeec6cd96c12708e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cB-awO8FhBFPCR-69HpZNHzAKy0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 23:27:57 -0000

----==_mimepart_5ed048fab9599_2bcd3feeec6cd96c12708e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar pushed 1 commit.

2f2fc2a6cf3f6cb45a99a795754d2f740163db43  Apply suggestions from code review


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706/files/f1fb3b57b37f0ee1dd366e46f992c48fb5d51db6..2f2fc2a6cf3f6cb45a99a795754d2f740163db43

----==_mimepart_5ed048fab9599_2bcd3feeec6cd96c12708e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/janaiyengar" class="user-mention">@janaiyengar</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/2f2fc2a6cf3f6cb45a99a795754d2f740163db43">2f2fc2a</a>  Apply suggestions from code review</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3706/files/f1fb3b57b37f0ee1dd366e46f992c48fb5d51db6..2f2fc2a6cf3f6cb45a99a795754d2f740163db43">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5NYJ7ITD242DVQ32TRT3XPVANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7PC6NYZDJPGVHWHRLRT3XPVA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDIMRRHEZTINCQOVZWQIZVGE2DIOBVGY3TOMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706/files/f1fb3b57b37f0ee1dd366e46f992c48fb5d51db6..2f2fc2a6cf3f6cb45a99a795754d2f740163db43",
"url": "https://github.com/quicwg/base-drafts/pull/3706/files/f1fb3b57b37f0ee1dd366e46f992c48fb5d51db6..2f2fc2a6cf3f6cb45a99a795754d2f740163db43",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ed048fab9599_2bcd3feeec6cd96c12708e--


From nobody Thu May 28 16:46:50 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 A70D23A0FBF for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:46:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 7_bFQdVOaDft for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:46:47 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 90B1F3A0FBE for <quic-issues@ietf.org>; Thu, 28 May 2020 16:46:47 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id DFAD6E0ABB for <quic-issues@ietf.org>; Thu, 28 May 2020 16:46:46 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590709606; bh=G+NVfecQ+TozoBUaPfmSyAxkNH1+t2FQcgz0gTLooBs=; h=Date:From:To:Subject:From; b=aWUIc9QrhTUY3QRABMHQE290zB6ERXheJnrpoIl/tTND4FM4VpO6MFL8T23NnpSUW 9H5smSCgG9QhqraMeQU/1cNytO8d6dcyh3mBBJvdStPKoIfDMtk+WCQ/UEQEkvBPLR S7c4TKAsNFVbuPYAbmFK2pW8dZZfrW16Wf4HUCSE=
Date: Thu, 28 May 2020 16:46:46 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/jri/ackf/2f2fc2-9e6d2f@github.com>
Subject: [quicwg/base-drafts] 9e6d2f: mt's excellent suggestions
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-3byE-7J6QJTCHY9G2WtGzFBlRQ>
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: Thu, 28 May 2020 23:46:49 -0000

  Branch: refs/heads/jri/ackf
  Home:   https://github.com/quicwg/base-drafts
  Commit: 9e6d2f14f14f6ffc50d6c31d4143223202411e4c
      https://github.com/quicwg/base-drafts/commit/9e6d2f14f14f6ffc50d6c31d4143223202411e4c
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  mt's excellent suggestions



From nobody Thu May 28 16:46:59 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 E57B93A0FBF for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:46:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 wq3Cdfd11LM0 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:46:56 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id AC5713A0FBE for <quic-issues@ietf.org>; Thu, 28 May 2020 16:46:56 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id B3CD06A002D for <quic-issues@ietf.org>; Thu, 28 May 2020 16:46:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590709615; bh=vqKiTCCyJ2jw4p7hsa1C+V4SzWte99gs5aWg5MUVizc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Wc7azb+cePInvnH5z0U4Wi4ixsvYrKbjxqMMk2n4zErqwageesMoTDXzhsy8VWp7s wDahtQ75ZzhPsvbPjE6lP7Z6/5AasjDbFOFQM8OW+wnRqG2hEjDSUoXjt3LxYgbrNq oVsvJRAGlX7xbKQwHo52jqakN0b7a5ZieJ2pGAow=
Date: Thu, 28 May 2020 16:46:55 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/push/5144915128@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed04d6fa4159_78013fcf686cd960964c8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ebdxYzLnUFIpOGKrXRRw7x9KAj8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 23:46:58 -0000

----==_mimepart_5ed04d6fa4159_78013fcf686cd960964c8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar pushed 1 commit.

9e6d2f14f14f6ffc50d6c31d4143223202411e4c  mt's excellent suggestions


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706/files/2f2fc2a6cf3f6cb45a99a795754d2f740163db43..9e6d2f14f14f6ffc50d6c31d4143223202411e4c

----==_mimepart_5ed04d6fa4159_78013fcf686cd960964c8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/janaiyengar" class="user-mention">@janaiyengar</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/9e6d2f14f14f6ffc50d6c31d4143223202411e4c">9e6d2f1</a>  mt&#39;s excellent suggestions</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3706/files/2f2fc2a6cf3f6cb45a99a795754d2f740163db43..9e6d2f14f14f6ffc50d6c31d4143223202411e4c">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7NT4M4UYORCCFSGJDRT3ZW7ANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6UJS4X7OFXK6TWKO3RT3ZW7A5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDIMRRHEZTINCQOVZWQIZVGE2DIOJRGUYTEOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706/files/2f2fc2a6cf3f6cb45a99a795754d2f740163db43..9e6d2f14f14f6ffc50d6c31d4143223202411e4c",
"url": "https://github.com/quicwg/base-drafts/pull/3706/files/2f2fc2a6cf3f6cb45a99a795754d2f740163db43..9e6d2f14f14f6ffc50d6c31d4143223202411e4c",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ed04d6fa4159_78013fcf686cd960964c8--


From nobody Thu May 28 16:53:35 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 2557B3A0FC8 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:53:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 2q1HBu60Kw5N for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:53:31 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 689BA3A0FC6 for <quic-issues@ietf.org>; Thu, 28 May 2020 16:53:31 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id C1673C605F9 for <quic-issues@ietf.org>; Thu, 28 May 2020 16:53:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590710010; bh=JEmPkdIno1mGWNgDl2J2xeHdSmaBcrv7uDDOP1Wi2eQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JCP1Zi2KrSrcsozOBNZCx8K/zVWtTQyPJT2DFJv9GOJgsg/Wp1a4qYvw/hlMEtHCM bQcK3fGtuNqyBWx38WH4TTh3f1aDrXdVPbMz/ZsMb3oPrpV41LJ3uLGYeTndjG+9TB uuhDC/+44DzeO2nT1z3g9KGYqfIQC3lgC/w3zWfU=
Date: Thu, 28 May 2020 16:53:30 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6M5JI7U6N7YQRJ4WF43QX7VEVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/420566327@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed04efab09b8_22773fe05c4cd96c176022"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/9XbBGFK8BX4NeGKuccxM4OspLyQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 23:53:33 -0000

----==_mimepart_5ed04efab09b8_22773fe05c4cd96c176022
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.

Thanks!  This appears to be much better.  And it points in the right direction without being overly prescriptive.

>  
-Packets containing only ACK frames are not congestion controlled, so there are
-limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff however.

```suggestion
ack-eliciting packets. This determination involves a tradeoff.
```

>  
-Packets containing only ACK frames are not congestion controlled, so there are
-limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff however.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section X of

We'll need a value for X.

```suggestion
Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
```

> -limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff however.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section X of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section X of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending

```suggestion
Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending
```

> +packets. Better knowledge of network conditions or further research and
+experimentation might suggest alternative acknowledgment strategies with better
+performance characteristics. This recommendation is general in nature and
+consistent with recommendations for TCP endpoint behavior {{?RFC5681}}.

I think maybe we can swap the last two sentences, so that "this recommendation" is better bound to the first sentence.

> @@ -3555,6 +3563,16 @@ messages are delayed or lost.  Note that the same limitation applies to other
 data sent by the server protected by the 1-RTT keys.
 
 
+### PADDING Frames Consume Congestion Window
+
+Packets containing PADDING frames are considered to be in flight for congestion
+control purposes {{QUIC-RECOVERY}}. Sending only PADDING frames might cause the
+sender to become limited by the congestion controller with no acknowledgments
+forthcoming from the receiver. Therefore, a sender SHOULD ensure that other
+frames are sent periodically in addition to PADDING frames to elicit acknowledgments from

Check line length.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-420566327
----==_mimepart_5ed04efab09b8_22773fe05c4cd96c176022
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> approved this pull request.</p>=0D
=0D
<p>Thanks!  This appears to be much better.  And it points in the right d=
irection without being overly prescriptive.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r432184330">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
-Packets containing only ACK frames are not congestion controlled, so the=
re are=0D
-limits on how frequently they can be sent.  An endpoint MUST NOT send mo=
re than=0D
-one ACK-frame-only packet in response to receiving an ack-eliciting pack=
et.  An=0D
-endpoint MUST NOT send a non-ack-eliciting packet in response to a=0D
-non-ack-eliciting packet, even if there are packet gaps which precede th=
e=0D
-received packet. Limiting ACK frames avoids an infinite feedback loop of=
=0D
-acknowledgements, which could prevent the connection from ever becoming =
idle.=0D
-However, the endpoint acknowledges non-ACK-eliciting packets when it sen=
ds an=0D
-ACK frame.=0D
+### Acknowledgement Frequency=0D
+=0D
+A receiver determines how frequently to send acknowledgements in respons=
e to=0D
+ack-eliciting packets. This determination involves a tradeoff however.=0D=

</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-ack-eliciting packets. This determination inv=
olves a tradeoff however.=0D
+ack-eliciting packets. This determination involves a tradeoff.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r432184417">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  =0D
-Packets containing only ACK frames are not congestion controlled, so the=
re are=0D
-limits on how frequently they can be sent.  An endpoint MUST NOT send mo=
re than=0D
-one ACK-frame-only packet in response to receiving an ack-eliciting pack=
et.  An=0D
-endpoint MUST NOT send a non-ack-eliciting packet in response to a=0D
-non-ack-eliciting packet, even if there are packet gaps which precede th=
e=0D
-received packet. Limiting ACK frames avoids an infinite feedback loop of=
=0D
-acknowledgements, which could prevent the connection from ever becoming =
idle.=0D
-However, the endpoint acknowledges non-ACK-eliciting packets when it sen=
ds an=0D
-ACK frame.=0D
+### Acknowledgement Frequency=0D
+=0D
+A receiver determines how frequently to send acknowledgements in respons=
e to=0D
+ack-eliciting packets. This determination involves a tradeoff however.=0D=

+=0D
+Endpoints rely on timely acknowledgment to detect loss; see Section X of=
=0D
</pre>=0D
<p>We'll need a value for X.</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-Endpoints rely on timely acknowledgment to de=
tect loss; see Section X of=0D
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of=
=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r432184582">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -limits on how frequently they can be sent=
.  An endpoint MUST NOT send more than=0D
-one ACK-frame-only packet in response to receiving an ack-eliciting pack=
et.  An=0D
-endpoint MUST NOT send a non-ack-eliciting packet in response to a=0D
-non-ack-eliciting packet, even if there are packet gaps which precede th=
e=0D
-received packet. Limiting ACK frames avoids an infinite feedback loop of=
=0D
-acknowledgements, which could prevent the connection from ever becoming =
idle.=0D
-However, the endpoint acknowledges non-ACK-eliciting packets when it sen=
ds an=0D
-ACK frame.=0D
+### Acknowledgement Frequency=0D
+=0D
+A receiver determines how frequently to send acknowledgements in respons=
e to=0D
+ack-eliciting packets. This determination involves a tradeoff however.=0D=

+=0D
+Endpoints rely on timely acknowledgment to detect loss; see Section X of=
=0D
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one =
in=0D
+Section X of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their =
sending=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-Section X of {{QUIC-RECOVERY}}, rely on ackno=
wledgments to manage their sending=0D
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their =
sending=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r432184887">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +packets. Better knowledge of network cond=
itions or further research and=0D
+experimentation might suggest alternative acknowledgment strategies with=
 better=0D
+performance characteristics. This recommendation is general in nature an=
d=0D
+consistent with recommendations for TCP endpoint behavior {{?RFC5681}}.=0D=

</pre>=0D
<p>I think maybe we can swap the last two sentences, so that "this recomm=
endation" is better bound to the first sentence.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r432185056">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3555,6 +3563,16 @@ messages are delaye=
d or lost.  Note that the same limitation applies to other=0D
 data sent by the server protected by the 1-RTT keys.=0D
 =0D
 =0D
+### PADDING Frames Consume Congestion Window=0D
+=0D
+Packets containing PADDING frames are considered to be in flight for con=
gestion=0D
+control purposes {{QUIC-RECOVERY}}. Sending only PADDING frames might ca=
use the=0D
+sender to become limited by the congestion controller with no acknowledg=
ments=0D
+forthcoming from the receiver. Therefore, a sender SHOULD ensure that ot=
her=0D
+frames are sent periodically in addition to PADDING frames to elicit ack=
nowledgments from=0D
</pre>=0D
<p>Check line length.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3706#pullrequestreview-420566327">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KZXD66AKPOZNU6VWS3RT32PVANCNFSM4NMWAK7A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK435MT3GMPEOSWPWJTRT32PVA5CNFSM4=
NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODEIVKNY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestrev=
iew-420566327",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview=
-420566327",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ed04efab09b8_22773fe05c4cd96c176022--


From nobody Thu May 28 16:55:35 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 2F2F63A0FCA for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:55:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 nRKGvY4fZRE9 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 16:55:32 -0700 (PDT)
Received: from out-7.smtp.github.com (out-7.smtp.github.com [192.30.252.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D2AE73A0FC9 for <quic-issues@ietf.org>; Thu, 28 May 2020 16:55:31 -0700 (PDT)
Received: from github-lowworker-edec459.ac4-iad.github.net (github-lowworker-edec459.ac4-iad.github.net [10.52.18.32]) by smtp.github.com (Postfix) with ESMTP id D64DA2C0CF5 for <quic-issues@ietf.org>; Thu, 28 May 2020 16:55:30 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590710130; bh=1y+p06zS4HTFcquQI6ECl/Hy3YSdXTWrMUetIrBfvKE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=2L9pY1DD+vmbURbAsfOD3AkccfuF1DcdUGEHEja7Xf0ZA/F2EH73FInoA96kDI7YX zcAs4r07mOB4Nz3ObwHyIZGOrzPHzuVul6KoXGT9d+D6CIjxRsqCwhIrbWVLvDArk4 I+1BX3bpY+Fwj0kYr4Ht5l8MH0G2IPwoyJTk7+gU=
Date: Thu, 28 May 2020 16:55:30 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYBOIZSIPGE3EFMG3N43QYHFEVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/420568055@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed04f72c42be_78fb3fbecf8cd96c1122af"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/m9XtrAzVRAbnVvjYhwqhccoWLN0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Thu, 28 May 2020 23:55:33 -0000

----==_mimepart_5ed04f72c42be_78fb3fbecf8cd96c1122af
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame implement "Probing using padding data", as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current
+maximum packet size are more likely to be dropped by the network.
+
+DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.

Maybe one of you can make a suggestion for what this can say (or file an issue for follow-up).

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#discussion_r432185781
----==_mimepart_5ed04f72c42be_78fb3fbecf8cd96c1122af
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r432185781">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame implement &quot;Probing using padding data&quot;, as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current
+maximum packet size are more likely to be dropped by the network.
+
+DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.
</pre>
<p>Maybe one of you can make a suggestion for what this can say (or file an issue for follow-up).</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r432185781">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6TGLDCNM3JFYQ5SEDRT32XFANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2M4AY373TXXCBM3TTRT32XFA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEIVX5Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r432185781",
"url": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r432185781",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed04f72c42be_78fb3fbecf8cd96c1122af--


From nobody Thu May 28 18:13: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 F209B3A107D for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 18:13:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 UJQyAakEb6Ii for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 18:13:52 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2E1E23A107A for <quic-issues@ietf.org>; Thu, 28 May 2020 18:13:52 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id 0953F8C0CA9 for <quic-issues@ietf.org>; Thu, 28 May 2020 18:13:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590714831; bh=M+7OU/n7ENSKsGlwbUs5SzWCWUmsNo0rLr8HUd8Jck4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yS8jFnm9VZ+VvZ/MQhXrKJCY2Wlrit8ADzEtXpE8FEu432KkVSgjv3z8yUhMgmpWl 5MO28P8BzA3okF5BVRXH9+vO4CQ/bn3xa1U1VbIKfVhdWvOuEJWFLs2rwhIFuhcc30 2kRLW1mCz83cPdASybX2dP/nngm0Vr9L8KpzN4BE=
Date: Thu, 28 May 2020 18:13:50 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3BFK3QK7HVX76DS3V43RBM5EVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/420588453@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed061ceedbc5_72e83fd5284cd96064084"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lu4mRmKxvdsvjixwrE_PGcgaf0Y>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 01:13:54 -0000

----==_mimepart_5ed061ceedbc5_72e83fd5284cd96064084
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.

This seems to be heading in a good direction, thanks for working on it.

> +Section X of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending
+rate. In both cases, delaying acknowledgment can adversely affect performance.

```suggestion
Section X of {{QUIC-RECOVERY}}, rely on acknowledgments to open up congestion window,
allowing more packets to be sent, as well as increase the congestion window. In both
cases, delaying acknowledgments can adversely affect performance.
```

> -non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff however.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section X of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section X of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending
+rate. In both cases, delaying acknowledgment can adversely affect performance.
+
+On the other hand, reducing the frequency of acknowledgement packets reduces

Do you mean ACK-only packets?  Otherwise this could be read to include ACK frames bundled with data, which I don't believe is the intent.

> +Endpoints rely on timely acknowledgment to detect loss; see Section X of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section X of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending
+rate. In both cases, delaying acknowledgment can adversely affect performance.
+
+On the other hand, reducing the frequency of acknowledgement packets reduces
+packet processing cost at both endpoints. It can also improve connection
+throughput on severely asymmetric links; see Section 3 of {{?RFC3449}}.
+
+A receiver SHOULD send an ACK frame after receiving at least two ack-eliciting
+packets. Better knowledge of network conditions or further research and
+experimentation might suggest alternative acknowledgment strategies with better
+performance characteristics. This recommendation is general in nature and
+consistent with recommendations for TCP endpoint behavior {{?RFC5681}}.
+
+A receiver MAY process multiple packets before sending any ACK frames in

```suggestion
A receiver MAY process multiple available packets before determining whether to sending an ACK frame in
```

> +response. This allows for a receiver to process packets already queued for
+processing before determining whether to send an acknowledgement.

```suggestion
response.
```

> +packets. Better knowledge of network conditions or further research and
+experimentation might suggest alternative acknowledgment strategies with better
+performance characteristics. This recommendation is general in nature and

```suggestion
packets. Knowledge of how frequently the peer's congestion controller needs feedback,
network conditions or further research and experimentation might suggest alternative
acknowledgment strategies with better performance characteristics. This
recommendation is general in nature and
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-420588453
----==_mimepart_5ed061ceedbc5_72e83fd5284cd96064084
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ianswett</b> commented on this pull request.</p>=0D
=0D
<p>This seems to be heading in a good direction, thanks for working on it=
.</p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r432202729">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +Section X of {{QUIC-RECOVERY}}, rely on a=
cknowledgments to manage their sending=0D
+rate. In both cases, delaying acknowledgment can adversely affect perfor=
mance.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-Section X of {{QUIC-RECOVERY}}, rely on ackno=
wledgments to manage their sending=0D
-rate. In both cases, delaying acknowledgment can adversely affect perfor=
mance.=0D
+Section X of {{QUIC-RECOVERY}}, rely on acknowledgments to open up conge=
stion window,=0D
+allowing more packets to be sent, as well as increase the congestion win=
dow. In both=0D
+cases, delaying acknowledgments can adversely affect performance.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r432203154">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -non-ack-eliciting packet, even if there a=
re packet gaps which precede the=0D
-received packet. Limiting ACK frames avoids an infinite feedback loop of=
=0D
-acknowledgements, which could prevent the connection from ever becoming =
idle.=0D
-However, the endpoint acknowledges non-ACK-eliciting packets when it sen=
ds an=0D
-ACK frame.=0D
+### Acknowledgement Frequency=0D
+=0D
+A receiver determines how frequently to send acknowledgements in respons=
e to=0D
+ack-eliciting packets. This determination involves a tradeoff however.=0D=

+=0D
+Endpoints rely on timely acknowledgment to detect loss; see Section X of=
=0D
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one =
in=0D
+Section X of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their =
sending=0D
+rate. In both cases, delaying acknowledgment can adversely affect perfor=
mance.=0D
+=0D
+On the other hand, reducing the frequency of acknowledgement packets red=
uces=0D
</pre>=0D
<p>Do you mean ACK-only packets?  Otherwise this could be read to include=
 ACK frames bundled with data, which I don't believe is the intent.</p>=0D=

=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r432203718">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +Endpoints rely on timely acknowledgment t=
o detect loss; see Section X of=0D
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one =
in=0D
+Section X of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their =
sending=0D
+rate. In both cases, delaying acknowledgment can adversely affect perfor=
mance.=0D
+=0D
+On the other hand, reducing the frequency of acknowledgement packets red=
uces=0D
+packet processing cost at both endpoints. It can also improve connection=
=0D
+throughput on severely asymmetric links; see Section 3 of {{?RFC3449}}.=0D=

+=0D
+A receiver SHOULD send an ACK frame after receiving at least two ack-eli=
citing=0D
+packets. Better knowledge of network conditions or further research and=0D=

+experimentation might suggest alternative acknowledgment strategies with=
 better=0D
+performance characteristics. This recommendation is general in nature an=
d=0D
+consistent with recommendations for TCP endpoint behavior {{?RFC5681}}.=0D=

+=0D
+A receiver MAY process multiple packets before sending any ACK frames in=
=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-A receiver MAY process multiple packets befor=
e sending any ACK frames in=0D
+A receiver MAY process multiple available packets before determining whe=
ther to sending an ACK frame in=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r432204089">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +response. This allows for a receiver to p=
rocess packets already queued for=0D
+processing before determining whether to send an acknowledgement.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-response. This allows for a receiver to proce=
ss packets already queued for=0D
-processing before determining whether to send an acknowledgement.=0D
+response.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r432205274">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +packets. Better knowledge of network cond=
itions or further research and=0D
+experimentation might suggest alternative acknowledgment strategies with=
 better=0D
+performance characteristics. This recommendation is general in nature an=
d=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-packets. Better knowledge of network conditio=
ns or further research and=0D
-experimentation might suggest alternative acknowledgment strategies with=
 better=0D
-performance characteristics. This recommendation is general in nature an=
d=0D
+packets. Knowledge of how frequently the peer's congestion controller ne=
eds feedback,=0D
+network conditions or further research and experimentation might suggest=
 alternative=0D
+acknowledgment strategies with better performance characteristics. This=0D=

+recommendation is general in nature and=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3706#pullrequestreview-420588453">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K4ES6MLROC22QO4CD3RT4D45ANCNFSM4NMWAK7A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK2XVKXWWRN2VFBSTETRT4D45A5CNFSM4=
NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODEI2XJI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestrev=
iew-420588453",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview=
-420588453",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ed061ceedbc5_72e83fd5284cd96064084--


From nobody Thu May 28 22:41:08 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 7DAE53A0884 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:41:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 8oZUA_hFpnUo for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:41:06 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0A2613A0880 for <quic-issues@ietf.org>; Thu, 28 May 2020 22:41:05 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id EAB51E002C for <quic-issues@ietf.org>; Thu, 28 May 2020 22:41:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590730864; bh=oHuwBhwog40/Yp+sbOJXF5JHWoMOEX+xTcDo6+S0MXc=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NuP9NWvrk4m/J2TuQ+zLFU84yw5hcH/QJ48zvgF3dcfYh6U6j9JZsov5nl8XRXPhC G8aGd16eokPJ6X1GgObVqXnSs0mjp87faUUBdRts/RorOS/vHTpzpG3hlF+NShps1d nIOTUhQVSzyVwaFfRDWVN9g6kd3Z/jEPXfJZWFIs=
Date: Thu, 28 May 2020 22:41:04 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6QMQ2OFHIBHGCSSQ543SAXBEVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/420665124@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0a070da296_7a823f92930cd96417358"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eyk_zyDv4Q-5GqCyigTHvP5oqG0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 05:41:08 -0000

----==_mimepart_5ed0a070da296_7a823f92930cd96417358
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



>  
-Packets containing only ACK frames are not congestion controlled, so there are
-limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff however.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section X of

Gah! Sorry, meant to replace that.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#discussion_r432266003
----==_mimepart_5ed0a070da296_7a823f92930cd96417358
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3706#discussion_r432266003">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt;  
-Packets containing only ACK frames are not congestion controlled, so there are
-limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff however.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section X of
</pre>
<p>Gah! Sorry, meant to replace that.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3706#discussion_r432266003">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3JAJBSZPNFJGLFOADRT5DHBANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ2C3SGX4KPXITR64LRT5DHBA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEJNOJA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706#discussion_r432266003",
"url": "https://github.com/quicwg/base-drafts/pull/3706#discussion_r432266003",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed0a070da296_7a823f92930cd96417358--


From nobody Thu May 28 22:43:46 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 CFF7C3A08A6 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:43:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 BmoTaKfG8bKK for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:43:36 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E04CA3A089C for <quic-issues@ietf.org>; Thu, 28 May 2020 22:43:35 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 393C4280932 for <quic-issues@ietf.org>; Thu, 28 May 2020 22:43:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590731015; bh=wlBuJI2qYyyIW1UaSy9qc+ESJNOXXepxC09T3fuP1GQ=; h=Date:From:To:Subject:From; b=Mbn2hHNQIA8Qq6wel7WdLpW8Sz0u9Bxt10IoUlB60Q7ZVi7xY6jeWRDMfqsfLuT9A aY0UqDNhX80EfqFYuO4sEnVxVvJt/r9PP0O4iCHdB0rts72oCkvMoA/wHLX4LtWMnF M/mQclT6EZHzFtXAndSs5Cu5zdzOhouQLUJjz6go=
Date: Thu, 28 May 2020 22:43:35 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/jri/ackf/9e6d2f-f1d626@github.com>
Subject: [quicwg/base-drafts] f1d626: Apply suggestions from code review
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lD0RugXpJq8j4grSL5qHY1NnWMo>
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, 29 May 2020 05:43:45 -0000

  Branch: refs/heads/jri/ackf
  Home:   https://github.com/quicwg/base-drafts
  Commit: f1d62609d466ca019f95677c6fdb5396544a7812
      https://github.com/quicwg/base-drafts/commit/f1d62609d466ca019f95677c6fdb5396544a7812
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Apply suggestions from code review

Co-authored-by: Martin Thomson <mt@lowentropy.net>
Co-authored-by: ianswett <ianswett@users.noreply.github.com>



From nobody Thu May 28 22:43:53 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 7C07B3A08BB for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:43:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 G0X-84Cz69Yl for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:43:44 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5D73B3A08FF for <quic-issues@ietf.org>; Thu, 28 May 2020 22:43:44 -0700 (PDT)
Received: from github-lowworker-9bcb4a1.ac4-iad.github.net (github-lowworker-9bcb4a1.ac4-iad.github.net [10.52.25.84]) by smtp.github.com (Postfix) with ESMTP id 5A16A1C0B6A for <quic-issues@ietf.org>; Thu, 28 May 2020 22:43:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590731023; bh=q+rlk6c72lYGm+3wCDDQ9d8r5VCOW3bCM5eNVJvgDq8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Jw12POZO5HZgUE0XxpgYGefs/E8Kwbu064Gf625PQtuA9hhdhoEOJkjPRAo38ozIs U1+eReFPPaahZot3SX0/EpuquwQMgBkUMLhsRnkIvKfvUc7NyEPaQrIFrUaavo7iiT rAAr3rttNv5LcPqa32j83iAdQH2iQiv1IAK1pKI4=
Date: Thu, 28 May 2020 22:43:43 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/push/5145876959@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0a10f4a487_181c3fc2f84cd95c511da"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/R8FITwcxq0n75rhui_CvxrDwZ7M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 05:43:52 -0000

----==_mimepart_5ed0a10f4a487_181c3fc2f84cd95c511da
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar pushed 1 commit.

f1d62609d466ca019f95677c6fdb5396544a7812  Apply suggestions from code review


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706/files/9e6d2f14f14f6ffc50d6c31d4143223202411e4c..f1d62609d466ca019f95677c6fdb5396544a7812

----==_mimepart_5ed0a10f4a487_181c3fc2f84cd95c511da
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/janaiyengar" class="user-mention">@janaiyengar</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/f1d62609d466ca019f95677c6fdb5396544a7812">f1d6260</a>  Apply suggestions from code review</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3706/files/9e6d2f14f14f6ffc50d6c31d4143223202411e4c..f1d62609d466ca019f95677c6fdb5396544a7812">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3OZ4IAVLGX6VM44YDRT5DQ7ANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZGUSVWEMYD2GK44K3RT5DQ7A5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDIMRRHEZTINCQOVZWQIZVGE2DKOBXGY4TKOI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706/files/9e6d2f14f14f6ffc50d6c31d4143223202411e4c..f1d62609d466ca019f95677c6fdb5396544a7812",
"url": "https://github.com/quicwg/base-drafts/pull/3706/files/9e6d2f14f14f6ffc50d6c31d4143223202411e4c..f1d62609d466ca019f95677c6fdb5396544a7812",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ed0a10f4a487_181c3fc2f84cd95c511da--


From nobody Thu May 28 22:54:01 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 171F83A08B7 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:53:59 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 32pG3toXsh2D for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:53:58 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E9ACD3A08B5 for <quic-issues@ietf.org>; Thu, 28 May 2020 22:53:57 -0700 (PDT)
Received: from github-lowworker-5fb2734.va3-iad.github.net (github-lowworker-5fb2734.va3-iad.github.net [10.48.19.27]) by smtp.github.com (Postfix) with ESMTP id 46B9F1C0340 for <quic-issues@ietf.org>; Thu, 28 May 2020 22:53:57 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590731637; bh=RACLP9RM2v1B2gLqC8liP0wLnSdkpA2njXhbIvztmFw=; h=Date:From:To:Subject:From; b=D6tYC0vhR7EZTeO/F7eXCrGMpNIIXjNPpRwBCulcG2Pd1GvaPVpx/wjPpXt8gz51z coZzx5boQqqsxU+QlRSHNRuPlIGWrRh7X6KBpyc24dihIGTYmB1HlRPY9lbbt8sG12 B1F2ZzcZr3ZbOhnvoygvrQ6LnxSSVhShL5Mn5Hew=
Date: Thu, 28 May 2020 22:53:57 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/jri/ackf/f1d626-e34dcf@github.com>
Subject: [quicwg/base-drafts] e34dcf: ian/mt comments
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vXQwVuL7pQmrO9-dzsAXe2VpucI>
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, 29 May 2020 05:53:59 -0000

  Branch: refs/heads/jri/ackf
  Home:   https://github.com/quicwg/base-drafts
  Commit: e34dcf87d36270b9fd685c683a0c2fcfdec3a44d
      https://github.com/quicwg/base-drafts/commit/e34dcf87d36270b9fd685c683a0c2fcfdec3a44d
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  ian/mt comments



From nobody Thu May 28 22:54:10 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 54F483A08B7 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:54:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KhPYHs7PC2_M for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:54:07 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E0B2E3A08B5 for <quic-issues@ietf.org>; Thu, 28 May 2020 22:54:06 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 0BC0B66011F for <quic-issues@ietf.org>; Thu, 28 May 2020 22:54:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590731646; bh=LSFIaGMKmoc/yx9vfvzITvSnm/H1QnbbWnnkI0aCCDM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=wEy6r3YOoh+khXBmq+rnfhFL2JfGtnRo/bf6ZX+67CQ3CMQFXsxX+Lw4wraas9qw6 vSiVBhmtV7/FmiQABbim5Q33A3YRGc2IqW6pkdA4mYHmvJnJoFLMXJKIGDlHa9S6Ja QuoEaOx5PxA8NPbzxm7KIS/6A298OmLZnvsKRNA8=
Date: Thu, 28 May 2020 22:54:05 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/push/5145906790@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0a37df10a1_1df23fc3890cd9605677a"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/M6ZjwoGZYxU5BotA2HSn6sQaBpU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 05:54:08 -0000

----==_mimepart_5ed0a37df10a1_1df23fc3890cd9605677a
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar pushed 1 commit.

e34dcf87d36270b9fd685c683a0c2fcfdec3a44d  ian/mt comments


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706/files/f1d62609d466ca019f95677c6fdb5396544a7812..e34dcf87d36270b9fd685c683a0c2fcfdec3a44d

----==_mimepart_5ed0a37df10a1_1df23fc3890cd9605677a
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/janaiyengar" class="user-mention">@janaiyengar</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/e34dcf87d36270b9fd685c683a0c2fcfdec3a44d">e34dcf8</a>  ian/mt comments</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3706/files/f1d62609d466ca019f95677c6fdb5396544a7812..e34dcf87d36270b9fd685c683a0c2fcfdec3a44d">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2OEVSMIWQJFUTXJPDRT5EX3ANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2QP3XTND6KZMKICX3RT5EX3A5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDIMRRHEZTINCQOVZWQIZVGE2DKOJQGY3TSMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706/files/f1d62609d466ca019f95677c6fdb5396544a7812..e34dcf87d36270b9fd685c683a0c2fcfdec3a44d",
"url": "https://github.com/quicwg/base-drafts/pull/3706/files/f1d62609d466ca019f95677c6fdb5396544a7812..e34dcf87d36270b9fd685c683a0c2fcfdec3a44d",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ed0a37df10a1_1df23fc3890cd9605677a--


From nobody Thu May 28 22:54:47 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 4FD383A08B5 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:54:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 emJdpkDd89AY for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:54:44 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1EBCE3A08B7 for <quic-issues@ietf.org>; Thu, 28 May 2020 22:54:44 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 6E0F4E0211 for <quic-issues@ietf.org>; Thu, 28 May 2020 22:54:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590731683; bh=wHKaqXZBQY3+ex/nh5hnv9fXLudp5RIYYGWtgyX0Pdg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zx1gh/PWhAora0pdY4dTPewUgHGTdGeXqdmb8J2/aukclwqPe9TNWj6XJ3GkrzPID ZImpBVc3Z9a2B5HmpfOgennWp7Lbn0UkvhgzK6UD3AJUfuYZGNkCIV3Oe8jbKXR5Qn RU1dKv3yaF89BiKP438s3lyapO3En9bY9obp1qns=
Date: Thu, 28 May 2020 22:54:43 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3BYT52C2EZWEUBYUF43SCKHEVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/c635775298@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0a3a35ed43_1ed23faa838cd9681350b9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/fnR1K37_JZzNEdfDpZ0eO9QPHEY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 05:54:46 -0000

----==_mimepart_5ed0a3a35ed43_1ed23faa838cd9681350b9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Thanks @ianswett @martinthomson -- comments incorporated.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#issuecomment-635775298
----==_mimepart_5ed0a3a35ed43_1ed23faa838cd9681350b9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Thanks <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/ianswett/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianswett">@ianswett</a> <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/martinthomson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/martinthomson">@martinthomson</a> -- comments incorporated.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3706#issuecomment-635775298">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7XQYTK2FBH5Y7QYWTRT5E2HANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6T4E4DBSU6YSYKJA3RT5E2HA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXSSSQQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706#issuecomment-635775298",
"url": "https://github.com/quicwg/base-drafts/pull/3706#issuecomment-635775298",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed0a3a35ed43_1ed23faa838cd9681350b9--


From nobody Thu May 28 22:55:11 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 CE5B43A08BB for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:55:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 vVIt7bq4vR77 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:55:08 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7B8ED3A08B7 for <quic-issues@ietf.org>; Thu, 28 May 2020 22:55:08 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id B18158C043F for <quic-issues@ietf.org>; Thu, 28 May 2020 22:55:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590731707; bh=ZmBCzE6celK8W+3tZjHCC656UVtMhGVVFmx2MlWpAU0=; h=Date:From:To:Subject:From; b=rq53PBZpEdWB/QAHVjd3LCkdWH2342kz5UhQaVBF+uVgHbIbKA/XOD2N7oSu2JDez antvzPOfsSQcbUy5zbDiFI0JxISBYrYNfKkQTzVde7OlOwIuumV2VRM4xekBI9HWcf 0X/XnevWDi5QN4F8N2o781TujceacwN+B+jl6A10=
Date: Thu, 28 May 2020 22:55:07 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c644f9-21edc8@github.com>
Subject: [quicwg/base-drafts] 21edc8: Script updating gh-pages from e34dcf87. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_odNAIiZuvxo6DKlTu02zfjiuJc>
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, 29 May 2020 05:55:10 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 21edc8146a23a31e821fe2846ad9863efbeaaa84
      https://github.com/quicwg/base-drafts/commit/21edc8146a23a31e821fe2846ad9863efbeaaa84
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-29 (Fri, 29 May 2020)

  Changed paths:
    R alpn-generic/draft-ietf-quic-http.html
    R alpn-generic/draft-ietf-quic-http.txt
    R alpn-generic/draft-ietf-quic-invariants.html
    R alpn-generic/draft-ietf-quic-invariants.txt
    R alpn-generic/draft-ietf-quic-qpack.html
    R alpn-generic/draft-ietf-quic-qpack.txt
    R alpn-generic/draft-ietf-quic-recovery.html
    R alpn-generic/draft-ietf-quic-recovery.txt
    R alpn-generic/draft-ietf-quic-tls.html
    R alpn-generic/draft-ietf-quic-tls.txt
    R alpn-generic/draft-ietf-quic-transport.html
    R alpn-generic/draft-ietf-quic-transport.txt
    R alpn-generic/index.html
    R ianswett-deadlock-handshake-pto/draft-ietf-quic-http.html
    R ianswett-deadlock-handshake-pto/draft-ietf-quic-http.txt
    R ianswett-deadlock-handshake-pto/draft-ietf-quic-invariants.html
    R ianswett-deadlock-handshake-pto/draft-ietf-quic-invariants.txt
    R ianswett-deadlock-handshake-pto/draft-ietf-quic-qpack.html
    R ianswett-deadlock-handshake-pto/draft-ietf-quic-qpack.txt
    R ianswett-deadlock-handshake-pto/draft-ietf-quic-recovery.html
    R ianswett-deadlock-handshake-pto/draft-ietf-quic-recovery.txt
    R ianswett-deadlock-handshake-pto/draft-ietf-quic-tls.html
    R ianswett-deadlock-handshake-pto/draft-ietf-quic-tls.txt
    R ianswett-deadlock-handshake-pto/draft-ietf-quic-transport.html
    R ianswett-deadlock-handshake-pto/draft-ietf-quic-transport.txt
    R ianswett-deadlock-handshake-pto/index.html
    R ianswett-pto-handshake-complete/draft-ietf-quic-http.html
    R ianswett-pto-handshake-complete/draft-ietf-quic-http.txt
    R ianswett-pto-handshake-complete/draft-ietf-quic-invariants.html
    R ianswett-pto-handshake-complete/draft-ietf-quic-invariants.txt
    R ianswett-pto-handshake-complete/draft-ietf-quic-qpack.html
    R ianswett-pto-handshake-complete/draft-ietf-quic-qpack.txt
    R ianswett-pto-handshake-complete/draft-ietf-quic-recovery.html
    R ianswett-pto-handshake-complete/draft-ietf-quic-recovery.txt
    R ianswett-pto-handshake-complete/draft-ietf-quic-tls.html
    R ianswett-pto-handshake-complete/draft-ietf-quic-tls.txt
    R ianswett-pto-handshake-complete/draft-ietf-quic-transport.html
    R ianswett-pto-handshake-complete/draft-ietf-quic-transport.txt
    R ianswett-pto-handshake-complete/index.html
    M index.html
    M jri/ackf/draft-ietf-quic-http.html
    M jri/ackf/draft-ietf-quic-http.txt
    M jri/ackf/draft-ietf-quic-invariants.html
    M jri/ackf/draft-ietf-quic-invariants.txt
    M jri/ackf/draft-ietf-quic-qpack.html
    M jri/ackf/draft-ietf-quic-qpack.txt
    M jri/ackf/draft-ietf-quic-recovery.html
    M jri/ackf/draft-ietf-quic-recovery.txt
    M jri/ackf/draft-ietf-quic-tls.html
    M jri/ackf/draft-ietf-quic-tls.txt
    M jri/ackf/draft-ietf-quic-transport.html
    M jri/ackf/draft-ietf-quic-transport.txt
    R keep-acknowledged/draft-ietf-quic-http.html
    R keep-acknowledged/draft-ietf-quic-http.txt
    R keep-acknowledged/draft-ietf-quic-invariants.html
    R keep-acknowledged/draft-ietf-quic-invariants.txt
    R keep-acknowledged/draft-ietf-quic-qpack.html
    R keep-acknowledged/draft-ietf-quic-qpack.txt
    R keep-acknowledged/draft-ietf-quic-recovery.html
    R keep-acknowledged/draft-ietf-quic-recovery.txt
    R keep-acknowledged/draft-ietf-quic-tls.html
    R keep-acknowledged/draft-ietf-quic-tls.txt
    R keep-acknowledged/draft-ietf-quic-transport.html
    R keep-acknowledged/draft-ietf-quic-transport.txt
    R keep-acknowledged/index.html

  Log Message:
  -----------
  Script updating gh-pages from e34dcf87. [ci skip]



From nobody Thu May 28 22:55:21 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 1ABC73A08BB for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:55:20 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 gpgvlwEHUH8e for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:55:19 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0ED493A08B7 for <quic-issues@ietf.org>; Thu, 28 May 2020 22:55:19 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 61463520913 for <quic-issues@ietf.org>; Thu, 28 May 2020 22:55:18 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590731718; bh=bpsZU9whXGWoFeh/mGJUYiz8WHGLevm5X9090cvbNAE=; h=Date:From:To:Subject:From; b=wBhUHQWaIBMx/6CGW8rFvgojW99DDeV8hlYwCV7xNzcbSLhzQfIttx2VA6DbZ/QxH qYgDofGd5z34zOB0hurdOsnaoAdO55ZOl1jgUIQWWzlGsA3mIVYR78lyDCPV9GuWEP xgBFGr3/C3J4jNeB7SIgNIEphYo/Hqwk6SAHnMnA=
Date: Thu, 28 May 2020 22:55:18 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/21edc8-23f4c4@github.com>
Subject: [quicwg/base-drafts] 23f4c4: Script updating archive at 2020-05-29T05:54:59Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/EYwCbGr30PlXE_mmK4d0T-9eklQ>
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, 29 May 2020 05:55:20 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 23f4c4e4307b8fcbb6490202320ff5766dd846ea
      https://github.com/quicwg/base-drafts/commit/23f4c4e4307b8fcbb6490202320ff5766dd846ea
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-29 (Fri, 29 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-29T05:54:59Z. [ci skip]



From nobody Thu May 28 22:55:37 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 31B253A08BB for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:55:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_BLOCKED=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 Y8PW4S2eAJzE for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:55:35 -0700 (PDT)
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 319E53A08B7 for <quic-issues@ietf.org>; Thu, 28 May 2020 22:55:35 -0700 (PDT)
Received: from github-lowworker-f144ac1.va3-iad.github.net (github-lowworker-f144ac1.va3-iad.github.net [10.48.16.59]) by smtp.github.com (Postfix) with ESMTP id 888EB28078D for <quic-issues@ietf.org>; Thu, 28 May 2020 22:55:33 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590731733; bh=SWus1eQa0f1B2rORVCftV7qz/ulOqstKaIhaS/zwgi0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=EFg4zGN438S3dAdwcA43Akk6bviJJA6mvkvXXognopSJ/f1Jv4zoELTUhnjs4WXhp BuUgItFONLXEilZhNPW7/HRklcytK+5VTn2i1JMkbZbkVoUd/dfNz8GVQtFvV4Ntmn FTgqIyTaC6/iY1nyEZQ5boQ811dcUhshCO0n6qG0=
Date: Thu, 28 May 2020 22:55:33 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2FIWSYKJAN2OIV47F43SCNLEVBNHHCKRRJPQ@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3704/c635775574@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3704@github.com>
References: <quicwg/base-drafts/pull/3704@github.com>
Subject: Re: [quicwg/base-drafts] Revert "rename SERVER_BUSY to CONNECTION_REFUSED" (#3704)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0a3d579ab6_6e013fe6e9acd9641055ce"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FevJoICjHhG53lDl-WljJvAanGI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 05:55:36 -0000

----==_mimepart_5ed0a3d579ab6_6e013fe6e9acd9641055ce
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I don't think we should revert this.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3704#issuecomment-635775574
----==_mimepart_5ed0a3d579ab6_6e013fe6e9acd9641055ce
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I don't think we should revert this.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3704#issuecomment-635775574">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4TXCPPX3ACDWFNF3TRT5E5LANCNFSM4NLWNO4Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK35WKNSTYVAD36B34TRT5E5LA5CNFSM4NLWNO42YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXSSUVQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3704#issuecomment-635775574",
"url": "https://github.com/quicwg/base-drafts/pull/3704#issuecomment-635775574",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed0a3d579ab6_6e013fe6e9acd9641055ce--


From nobody Thu May 28 22:59:51 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 D18CF3A08CB for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:59:49 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 A3qqP3B9h3fs for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 22:59:48 -0700 (PDT)
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 C60063A08CA for <quic-issues@ietf.org>; Thu, 28 May 2020 22:59:48 -0700 (PDT)
Received: from github-lowworker-56fcc46.va3-iad.github.net (github-lowworker-56fcc46.va3-iad.github.net [10.48.102.32]) by smtp.github.com (Postfix) with ESMTP id 1A809282D71 for <quic-issues@ietf.org>; Thu, 28 May 2020 22:59:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590731988; bh=AX1KJFMNTq4qEvbqsoSRrNgXCsefaRX8SxoKQMKtpAI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=UWNHazZ6cdrDTTvRsXXHZjeyUFd2dqdeKRbcTrTOei4Q6F8ZZIUu26Ga7ZEMdGdam VgENJ1VF555qMLMFslWgs7x7/35ut1FVJULtvlGLwWJDCHVxS/NFDKssqxE/Ky1Rfs kjrZvLvJKHfh5yEwNvOHP7Z1FkvnANZyryl7rNUc=
Date: Thu, 28 May 2020 22:59:48 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6MTCWE7YGF5IESLGV43SC5JEVBNHHCKCF42A@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3669/review/420671626@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3669@github.com>
References: <quicwg/base-drafts/pull/3669@github.com>
Subject: Re: [quicwg/base-drafts] ECN probing needs to imply that you stop (#3669)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0a4d4ad8a_3b113fde770cd95c11565e"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/6ymirTeQlLZi2f39MyUuzAnBATs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 05:59:50 -0000

----==_mimepart_5ed0a4d4ad8a_3b113fde770cd95c11565e
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview-420671626
----==_mimepart_5ed0a4d4ad8a_3b113fde770cd95c11565e
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview-420671626">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2N5ITJI6KPJ5QGNZTRT5FNJANCNFSM4NFNAW4Q">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3PSADZ7K5RQ7EI3ODRT5FNJA5CNFSM4NFNAW42YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEJPBCQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview-420671626",
"url": "https://github.com/quicwg/base-drafts/pull/3669#pullrequestreview-420671626",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed0a4d4ad8a_3b113fde770cd95c11565e--


From nobody Thu May 28 23:14:15 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 A04C23A08EA for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 23:14:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 5M6MlYGddX1i for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 23:14:05 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 26AB03A090C for <quic-issues@ietf.org>; Thu, 28 May 2020 23:14:05 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id E77246A0E6A for <quic-issues@ietf.org>; Thu, 28 May 2020 23:14:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590732843; bh=V/19pgE+gaqw0VC1iNSOG/xbbvNytW5ITc0mazhCrvk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=feCq9CC7sbhslL9MWW2J8+X3JFoQuUh6rKg9b2f3VU2Qjss2K2rr51bXBhVxRxb41 wDEbsgUPEU8t5KYC1eVYQbr60rWZvecUGtugArPI2eMDXNcbxArcOJbvh+euAOx/93 bj0kH8btz1wVOXOddy+4XgH3FUX1YvlGMqtL9T4Q=
Date: Thu, 28 May 2020 23:14:03 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK7H4IU7YK5LEBUBTSN43SESXEVBNHHCHVTIIM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3585/635781710@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3585@github.com>
References: <quicwg/base-drafts/issues/3585@github.com>
Subject: Re: [quicwg/base-drafts] Text on ECN probing (#3585)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0a82bd8336_5b0d3f7ee44cd964174510"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VDZYCvJgid6y8MmCNX3NpxBuM0c>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 06:14:14 -0000

----==_mimepart_5ed0a82bd8336_5b0d3f7ee44cd964174510
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@mirjak: I don't understand the pushback.  As @LPardue notes, if no faulty network elements exist, the mechanism should work just fine. 

I think the crux of the disagreement might be that the text suggests that the default stance is test and then use, where perhaps you are arguing for use and fall back. I honestly don't think it makes much of a difference, and in the absence of _overwhelming information_ we need to be taking the conservative stance on this spec.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635781710
----==_mimepart_5ed0a82bd8336_5b0d3f7ee44cd964174510
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/mirjak/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mirjak">@mirjak</a>: I don't understand the pushback.  As <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/LPardue/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LPardue">@LPardue</a> notes, if no faulty network elements exist, the mechanism should work just fine.</p>
<p>I think the crux of the disagreement might be that the text suggests that the default stance is test and then use, where perhaps you are arguing for use and fall back. I honestly don't think it makes much of a difference, and in the absence of <em>overwhelming information</em> we need to be taking the conservative stance on this spec.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635781710">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2PBC7RLVPGTK6M6ZLRT5HCXANCNFSM4MJ5KMKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYZWERJGNPUORAFWFDRT5HCXA5CNFSM4MJ5KMK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXSUETQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635781710",
"url": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635781710",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed0a82bd8336_5b0d3f7ee44cd964174510--


From nobody Thu May 28 23:20:27 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 8DC8B3A08E7 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 23:20:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 tOJPZezOYZqs for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 23:20:24 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 54C5C3A08E5 for <quic-issues@ietf.org>; Thu, 28 May 2020 23:20:24 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 7D67196176F for <quic-issues@ietf.org>; Thu, 28 May 2020 23:20:21 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590733221; bh=dvBn60vDOpyhcIt1uEDydsXiudG/w9cn6WhSW+nH5Y0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=BasSyoDXOe8wfkjaNk/+5m1tyEoU4TPQE2NsYM2n7KEObgJSl0c7+vf7Nuk0WpeqY o+KCLMZLlsxpuyj8mkKn82n8kV1y4JSqt8xQxwvLsb/giK82Tbji71zZzB5O0PDlua BCVHiWZjFmc3SG75Mee214rYxY9C9y2H5VudbIbY=
Date: Thu, 28 May 2020 23:20:21 -0700
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2LCUMF5K625BQZNKF43SFKLEVBNHHCHVTIIM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3585/635783731@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3585@github.com>
References: <quicwg/base-drafts/issues/3585@github.com>
Subject: Re: [quicwg/base-drafts] Text on ECN probing (#3585)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0a9a56d329_4fb3fedea6cd960203194"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: larseggert
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/VsHFgPiaMei9fMms0TYiZontMFI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 06:20:26 -0000

----==_mimepart_5ed0a9a56d329_4fb3fedea6cd960203194
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I'm agreeing with the editors here. I think the PR is a useful modification, but we'd need to see stronger feedback from the WG to warrant making more changes to the current text.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635783731
----==_mimepart_5ed0a9a56d329_4fb3fedea6cd960203194
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I'm agreeing with the editors here. I think the PR is a useful modification, but we'd need to see stronger feedback from the WG to warrant making more changes to the current text.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635783731">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK2HXYK5X5E6LVJ6ZDDRT5H2LANCNFSM4MJ5KMKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZYFA2TABGL3SZKYVLRT5H2LA5CNFSM4MJ5KMK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXSUUMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635783731",
"url": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635783731",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed0a9a56d329_4fb3fedea6cd960203194--


From nobody Thu May 28 23:24:28 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 E92623A08E7 for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 23:24:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 SP3ivdvQc1es for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 23:24:25 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B7DFB3A08E5 for <quic-issues@ietf.org>; Thu, 28 May 2020 23:24:25 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 1BA398C11A4 for <quic-issues@ietf.org>; Thu, 28 May 2020 23:24:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590733465; bh=LtkOA/lBT0F/dMIs0QlpvTVU+FppJL34NmFJE6cL7YM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=IhhOi6C+D/mzn+l0IQ7+3UCzW8/6fp0UbLfwdU2Ky4Kc+fWCPkwe8+hE04lj/3wtk bhL9NHhESMtsfWE7/DJ9wTT+JTRt3F/4R4gXMw9Z15I4UQerDiCD30sQI/169nw7QD CTBi3k1EjIvZc1Jn0Sl9PWxKhlCZsdfHbB2FLhak=
Date: Thu, 28 May 2020 23:24:25 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2EPL7WAS45MH3D3HF43SFZTEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/635785046@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0aa99c143_3cb33fa8f6ecd964405271"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yeH2qQUDr6-mB8RzP3rTXBJz3fE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 06:24:27 -0000

----==_mimepart_5ed0aa99c143_3cb33fa8f6ecd964405271
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I agree with @kazuho. I think we should close #3704, and I would argue that we should do a new issue if anyone wants more specific error codes.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-635785046
----==_mimepart_5ed0aa99c143_3cb33fa8f6ecd964405271
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I agree with <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/kazuho/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a>. I think we should close <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="625355132" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3704" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3704/hovercard" href="https://github.com/quicwg/base-drafts/pull/3704">#3704</a>, and I would argue that we should do a new issue if anyone wants more specific error codes.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-635785046">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6GEXBBWLAX2BS7MP3RT5IJTANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3NKCCDAPWXRL4X7IDRT5IJTA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXSU6VQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-635785046",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-635785046",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed0aa99c143_3cb33fa8f6ecd964405271--


From nobody Thu May 28 23:41:31 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 BBC453A090A for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 23:41:29 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Ve7r8VpQC5BI for <quic-issues@ietfa.amsl.com>; Thu, 28 May 2020 23:41:28 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 651E83A0908 for <quic-issues@ietf.org>; Thu, 28 May 2020 23:41:28 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 71C918C0F24 for <quic-issues@ietf.org>; Thu, 28 May 2020 23:41:27 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590734487; bh=tuy8yiyTo2zASVcB+0mzfylwMfKgZ3Unk8nPbsCAMuE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pn9a0L9akXSuePWnHQfV0KgO8KNW2H3JUtlSw+chpBhPxzCRGzMNgQgXsNIkRa7ez 0sAcujfYvZ/vXwZy8SzVJIB+n4b0Ywjfv1H9X3bN+GtvaDbiTga97xB6gylfaGT4Qf rXuDvIwQAV56EWDEYa7xZXUguUWSdUVCYEXXlnJQ=
Date: Thu, 28 May 2020 23:41:27 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6JN5ERJIOW6CQ247N43SHZPEVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/635790986@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0ae976230c_180c3fc729acd96c1492cf"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wzijCGrrUH20vRJBJNOXcYYWgpc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 06:41:30 -0000

----==_mimepart_5ed0ae976230c_180c3fc729acd96c1492cf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair : I understand your position. While I agree that ack thinning happens with TCP, it is not what I expect to find on a common network path. And as far as I know, the endpoints still implement the RFC 5681 recommendation of acking every other packet.

What you are arguing is that _with ack thinners in the network_ TCP's behavior on _those_ network paths is different. However, I do not believe we understand the performance effects of these middleboxes, that is, how they might reduce connection throughput when the asymmetry is not a problem. Importantly,  I don't think we should be specifying as default what some middleboxes might be doing without fully understanding the consequences of doing this. Please bear in mind that Chrome's ack policy of 1:10 works with BBR, not with Cubic or Reno. 

I do not believe there is a magic number at the moment, and as @kazuho noted, even 1:10 is not a small enough ratio under some conditions. Given this, and given that we know 1:2 is used by TCP endpoints, it makes the most sense to specify that as the suggested guidance. The new text proposed in #3706 describes the tradeoff involved, and the rationale for using 1:2. I am strongly against doing anything substantially different without _overwhelming information_.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635790986
----==_mimepart_5ed0ae976230c_180c3fc729acd96c1492cf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>
<p><a class=3D"user-mention" data-hovercard-type=3D"user" data-hovercard-=
url=3D"/users/gorryfair/hovercard" data-octo-click=3D"hovercard-link-clic=
k" data-octo-dimensions=3D"link_type:self" href=3D"https://github.com/gor=
ryfair">@gorryfair</a> : I understand your position. While I agree that a=
ck thinning happens with TCP, it is not what I expect to find on a common=
 network path. And as far as I know, the endpoints still implement the RF=
C 5681 recommendation of acking every other packet.</p>
<p>What you are arguing is that <em>with ack thinners in the network</em>=
 TCP's behavior on <em>those</em> network paths is different. However, I =
do not believe we understand the performance effects of these middleboxes=
, that is, how they might reduce connection throughput when the asymmetry=
 is not a problem. Importantly,  I don't think we should be specifying as=
 default what some middleboxes might be doing without fully understanding=
 the consequences of doing this. Please bear in mind that Chrome's ack po=
licy of 1:10 works with BBR, not with Cubic or Reno.</p>
<p>I do not believe there is a magic number at the moment, and as <a clas=
s=3D"user-mention" data-hovercard-type=3D"user" data-hovercard-url=3D"/us=
ers/kazuho/hovercard" data-octo-click=3D"hovercard-link-click" data-octo-=
dimensions=3D"link_type:self" href=3D"https://github.com/kazuho">@kazuho<=
/a> noted, even 1:10 is not a small enough ratio under some conditions. G=
iven this, and given that we know 1:2 is used by TCP endpoints, it makes =
the most sense to specify that as the suggested guidance. The new text pr=
oposed in <a class=3D"issue-link js-issue-link" data-error-text=3D"Failed=
 to load title" data-id=3D"626176911" data-permission-text=3D"Title is pr=
ivate" data-url=3D"https://github.com/quicwg/base-drafts/issues/3706" dat=
a-hovercard-type=3D"pull_request" data-hovercard-url=3D"/quicwg/base-draf=
ts/pull/3706/hovercard" href=3D"https://github.com/quicwg/base-drafts/pul=
l/3706">#3706</a> describes the tradeoff involved, and the rationale for =
using 1:2. I am strongly against doing anything substantially different w=
ithout <em>overwhelming information</em>.</p>

<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/issues/3529#issuecomment-635790986">view it on GitHub</a>,=
 or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK2B=
V4R4INXCI2ZZJSTRT5KJPANCNFSM4LOJ4RQA">unsubscribe</a>.<img src=3D"https:/=
/github.com/notifications/beacon/AFTOJK27ZMPGXO4LM76LVG3RT5KJPA5CNFSM4LOJ=
4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXSWNCQ.g=
if" height=3D"1" width=3D"1" alt=3D"" /></p>
<script type=3D"application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment=
-635790986",
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-63=
5790986",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>=

----==_mimepart_5ed0ae976230c_180c3fc729acd96c1492cf--


From nobody Fri May 29 00:41:27 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 37C453A0C6E for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 00:41:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 UOxytZVixdCw for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 00:41:25 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 030B83A0C6D for <quic-issues@ietf.org>; Fri, 29 May 2020 00:41:25 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 346C7521F0C for <quic-issues@ietf.org>; Fri, 29 May 2020 00:41:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590738084; bh=qQ1HZHqYtOFX7uqkH3k13L9TejKXz0yvGakzIN1cdRg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=ZOB3IXkx6Kof//bhU23uQQZEk8ZT1BJxdZjUBeT4eAAg050n2SE9dK4OCtVVYC2KV RGfCSacuEXfU7tdzmTnsUmPFh2QOI1Osm9Ab5yLSZ7EndIBezAGwRBiTpAj3VKDvOH fd96QMcjwZyY6vSLcIxShxq9Jw5OlwX5M6Ml4uwU=
Date: Fri, 29 May 2020 00:41:24 -0700
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK26KXT5V3GJZ26WQGN43SO2JEVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/635815718@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0bca425081_529e3fa353acd95c52049"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: larseggert
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/DK8FXG8rfOnriMd8yCFc-gAGyNI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 07:41:26 -0000

----==_mimepart_5ed0bca425081_529e3fa353acd95c52049
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Agree with @janaiyengar. 1:2 seems a reasonable default, and there seems to be considerable interest in draft-iyengar-quic-delayed-ack, which has a better proposal for stacks that care.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635815718
----==_mimepart_5ed0bca425081_529e3fa353acd95c52049
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Agree with <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/janaiyengar/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/janaiyengar">@janaiyengar</a>. 1:2 seems a reasonable default, and there seems to be considerable interest in draft-iyengar-quic-delayed-ack, which has a better proposal for stacks that care.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635815718">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK37YBU2BFMS2O3PJVLRT5RKJANCNFSM4LOJ4RQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5EDAGOHLXTKAYIEDTRT5RKJA5CNFSM4LOJ4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXS4OJQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635815718",
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635815718",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed0bca425081_529e3fa353acd95c52049--


From nobody Fri May 29 00:49:18 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 D5EFE3A0C7E for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 00:49:16 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 LHXxDXh_WASH for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 00:49:15 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id B58C43A0C7C for <quic-issues@ietf.org>; Fri, 29 May 2020 00:49:15 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id AF8862C0E30 for <quic-issues@ietf.org>; Fri, 29 May 2020 00:49:14 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590738554; bh=iYgy5YihncFTGSZJVkGijZRF+zkSmuQ/xv1IP8ji/l8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=hfpNh++S2vGt4v+N5LBfmku+PAlyiG8zHv1qZzjR5dYzQB9FqGWHFxVk9fjH8MmSM rPoqN+JJTVlgB6d5NaWffNSq6vFcTmCgESUso3nsl+U8zCPdQmj5CCj/IHYsLVSrax 0jLYPs+5u1WUtodrVKlgASCUK9bn5/CGaVNy7sBM=
Date: Fri, 29 May 2020 00:49:14 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYNK6HYYZJVMO7DAEN43SPXVEVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/420726488@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0be7aa0a30_b4a3fb3270cd96410435d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/JcmTMeEfIbT-h01oKdR-VVSCTOw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 07:49:17 -0000

----==_mimepart_5ed0be7aa0a30_b4a3fb3270cd96410435d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@kazuho approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-420726488
----==_mimepart_5ed0be7aa0a30_b4a3fb3270cd96410435d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@kazuho</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-420726488">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ3BC5GJSRMFFOCIQDRT5SHVANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZMMLLS4ELOL3GUDK3RT5SHVA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEJ4NWA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-420726488",
"url": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-420726488",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed0be7aa0a30_b4a3fb3270cd96410435d--


From nobody Fri May 29 01:04:26 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 C87923A0D45 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 01:04:22 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 p5bUZkCc9sHR for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 01:04:21 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8F7443A0D2E for <quic-issues@ietf.org>; Fri, 29 May 2020 01:04:16 -0700 (PDT)
Received: from github-lowworker-1dbcc59.ash1-iad.github.net (github-lowworker-1dbcc59.ash1-iad.github.net [10.56.105.54]) by smtp.github.com (Postfix) with ESMTP id 9A86EA0844 for <quic-issues@ietf.org>; Fri, 29 May 2020 01:04:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590739455; bh=Hi5UploJgbc70QtiwnMgulS/KjWYkujj+lk6p1/aWLM=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=pUPtkAWDxoVx4nb+NK9lyFzJKNfx8bTznksVRJMndmgM2SmgUHUOUsQvHDT9lxPLp hzrYYo8UrUGSZWJr5pAKbRYw8N5YyIqmBIh1x0Z8izzYNTkJ1d+6VWmSf37FQPTLJr P3fJEDSk7sUX4buCe6oyjrHUUtiWPUOas7evoQWg=
Date: Fri, 29 May 2020 01:04:15 -0700
From: mirjak <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3EXXETXWUJV7VGKJF43SRP7EVBNHHCHVTIIM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3585/635826806@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3585@github.com>
References: <quicwg/base-drafts/issues/3585@github.com>
Subject: Re: [quicwg/base-drafts] Text on ECN probing (#3585)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0c1ff87821_2c7b3f9f1cccd9681677f7"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: mirjak
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/i0dVUOszW62tcjqZbPYf4A_XtR8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 08:04:25 -0000

----==_mimepart_5ed0c1ff87821_2c7b3f9f1cccd9681677f7
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

The difference is that I would like to decrease unnecessary barrier to use ECN. If people are too lazy to implement this and don't understand that it is not needed, they might just disable ECN instead. If not sure what you mean by overwhelming information but we have done extensive measurements over 5 years showing that this problem doesn't exists anymore. What else are you expecting?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635826806
----==_mimepart_5ed0c1ff87821_2c7b3f9f1cccd9681677f7
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>The difference is that I would like to decrease unnecessary barrier to use ECN. If people are too lazy to implement this and don't understand that it is not needed, they might just disable ECN instead. If not sure what you mean by overwhelming information but we have done extensive measurements over 5 years showing that this problem doesn't exists anymore. What else are you expecting?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635826806">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYB4IRA424RQVOSBBLRT5T77ANCNFSM4MJ5KMKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK77WQYA2T6S2MLKY4DRT5T77A5CNFSM4MJ5KMK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXS7E5Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635826806",
"url": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635826806",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed0c1ff87821_2c7b3f9f1cccd9681677f7--


From nobody Fri May 29 01:33:50 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 287D23A0CE8 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 01:33:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Tf17210jyNfQ for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 01:33:47 -0700 (PDT)
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 D44BC3A0CEB for <quic-issues@ietf.org>; Fri, 29 May 2020 01:33:46 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id CCC19282A6C for <quic-issues@ietf.org>; Fri, 29 May 2020 01:33:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590741225; bh=33TNQpZ0G0kyml1qd4kGY7ynNrPq5n8l5GF5DvPhPKo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=m63r3hcKbnJUoxcta6gKZ9j6vC/mLyGwkEEv5i50xfkUCyWSETY2EESJuk8ZJtegv smux9dxnw8EtbzEJzcyMy3hZw6YVH8DUUAj4yJpy3tgoP+MrWiPqbPDrd9LGUTkpGd FjKA9VPdzWGWzsM1DgALbpvTOrmPDK62ydsphj7s=
Date: Fri, 29 May 2020 01:33:45 -0700
From: Lucas Pardue <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6CVLQL3A2Y3LJAA4V43SU6TEVBNHHCHVTIIM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3585/635847287@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3585@github.com>
References: <quicwg/base-drafts/issues/3585@github.com>
Subject: Re: [quicwg/base-drafts] Text on ECN probing (#3585)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0c8e9bd859_52c83fa353acd95c156726"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: LPardue
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/FDg1e8lUqIMxmO4ZtpfmWLaVHSE>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 08:33:48 -0000

----==_mimepart_5ed0c8e9bd859_52c83fa353acd95c156726
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

So far I didnt really see this issuing being coined in terms of "guidance for conservative ECN use risks low uptake of the ECN feature". If that is the core issue, then an example of overwhelming information is to see support for addressing the issue from a number of QUIC implementations that do not support ECN, and have chosen to do so because of this guidance. 

Since the other text around ECN seems to require per-packet-space counts, and other parts of QUIC require RTT measurement, I'm finding it difficult to see how this is a burdensome thing to implement. But I can only speak to my implementation and experience. 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635847287
----==_mimepart_5ed0c8e9bd859_52c83fa353acd95c156726
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>So far I didnt really see this issuing being coined in terms of "guidance for conservative ECN use risks low uptake of the ECN feature". If that is the core issue, then an example of overwhelming information is to see support for addressing the issue from a number of QUIC implementations that do not support ECN, and have chosen to do so because of this guidance.</p>
<p>Since the other text around ECN seems to require per-packet-space counts, and other parts of QUIC require RTT measurement, I'm finding it difficult to see how this is a burdensome thing to implement. But I can only speak to my implementation and experience.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635847287">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK55ISTP5IN6OCQTOZTRT5XOTANCNFSM4MJ5KMKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2SBGT257VIFLLQ3ULRT5XOTA5CNFSM4MJ5KMK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXTEE5Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635847287",
"url": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635847287",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed0c8e9bd859_52c83fa353acd95c156726--


From nobody Fri May 29 01:40:07 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 47F4E3A0CFB for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 01:40:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Kg3T4SdIb3Qn for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 01:40:05 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 156013A0CFA for <quic-issues@ietf.org>; Fri, 29 May 2020 01:40:05 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 5A9CE960415 for <quic-issues@ietf.org>; Fri, 29 May 2020 01:40:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590741604; bh=FL27iE/cceQjWlFFLNNTsyazQd5A/VhkSS+4NXJ84tA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=QVt9r4k059IAG7WR8xQnysxMxr4Ul4KP/bPMqdI5jWpzgqoVFG73Xwrsujf6sREsB FIbG1jwKya/606yWtVDuKM257yTRW4BNKUtL739FTxnm489IWumbjQMWqbUFvWGwTJ qDYMzJ1CTYk6iqufPixXru0CzpHCUSV4U1vwS6Vo=
Date: Fri, 29 May 2020 01:40:04 -0700
From: Lars Eggert <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYMGYUYAICQECPMPZF43SVWJEVBNHHCHVTIIM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3585/635850154@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3585@github.com>
References: <quicwg/base-drafts/issues/3585@github.com>
Subject: Re: [quicwg/base-drafts] Text on ECN probing (#3585)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0ca644bf37_35f13ff16e8cd9682656bf"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: larseggert
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HmOYAL0-IGJL9mekOBFHG0fOWLk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 08:40:06 -0000

----==_mimepart_5ed0ca644bf37_35f13ff16e8cd9682656bf
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

So last I counted there were only four stacks that even implemented the ACK-ECN frame type to _report_ ECN marks. So even very basic support for ECN is (still) missing in most stacks, esp. the ones that are likely going to see the largest deployments.

I don't think any text tweaks we could make here are going to move the needle on ECN support in QUIC. 

What will make a difference if a major stack implements it and reports a benefit. That will likely make other stacks follow.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635850154
----==_mimepart_5ed0ca644bf37_35f13ff16e8cd9682656bf
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>So last I counted there were only four stacks that even implemented the ACK-ECN frame type to <em>report</em> ECN marks. So even very basic support for ECN is (still) missing in most stacks, esp. the ones that are likely going to see the largest deployments.</p>
<p>I don't think any text tweaks we could make here are going to move the needle on ECN support in QUIC.</p>
<p>What will make a difference if a major stack implements it and reports a benefit. That will likely make other stacks follow.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635850154">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6267G43IAENSGEKPLRT5YGJANCNFSM4MJ5KMKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4J7LBRWIJFU5FU533RT5YGJA5CNFSM4MJ5KMK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXTE3KQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635850154",
"url": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-635850154",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed0ca644bf37_35f13ff16e8cd9682656bf--


From nobody Fri May 29 02:40:48 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 130CE3A0D6C for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 02:40:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 p3d4M8trSlYA for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 02:40:45 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DEA993A0D6B for <quic-issues@ietf.org>; Fri, 29 May 2020 02:40:44 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id D6F12E1612 for <quic-issues@ietf.org>; Fri, 29 May 2020 02:40:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590745243; bh=BLxyAtOej624SA5mxeby+4EC8+EWt5vEBcy9974J3lQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zX8U1Mcbj+fXh4Iz7ArHkyyzuCpHqVVjVrlhCBbKbzT1pw3PKvyl8nVG/G2W/DuGr tF092dc8kk9d+WpfsOIzNQVwxv23jRmywyNl0QCcEqQLjXzgvZ00Be4fFhi/iFSkdM vF5Ca3hIuVeC94rlpPtkcSjsM87Q/dAg7RkaElBM=
Date: Fri, 29 May 2020 02:40:43 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3I3SD3JZ4552F3WMN43S4ZXEVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/635878980@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0d89bc7f72_4373fbd1d8cd95c4536d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GDJOiXirUawTzppZ5roEMB5-KIM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 09:40:47 -0000

----==_mimepart_5ed0d89bc7f72_4373fbd1d8cd95c4536d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

I think the new ACK text is improving the specification, but I'd like to =
=0D
be sure we have thought about this decision. Let me try to carefully =0D
respond on-list here, to see where we agree/disagree:=0D
=0D
On 29/05/2020 07:41, Jana Iyengar wrote:=0D
>=0D
> @gorryfair <https://github.com/gorryfair> : I understand your =0D
> position. While I agree that ack thinning happens with TCP, it is not =0D=

> what I expect to find on a common network path. And as far as I know, =0D=

> the endpoints still implement the RFC 5681 recommendation of acking =0D=

> every other packet.=0D
>=0D
I disagree, I think we shouldn't be perpetuating a myth that a sender =0D=

receives a TCP ACK for every other packet. Even in the 90's =0D
implementations TCP stacks often generated stretch-ACKs for 3 segments. =0D=

Since then, limited byte counting was introduced and significantly =0D
improved the sender's response to stretch ACKs, and that has been good =0D=

for everyone.=0D
=0D
Senders still rely on byte-counting in TCP to handle Stretch-ACKs, and =0D=

this need is not decreasing: new network cards reduce per-packet receive =
=0D
processing using Large Receive Offload (LRO) or Generic Receiver Offload =
=0D
(GRO).=0D
>=0D
> What you are arguing is that /with ack thinners in the network/ TCP's =0D=

> behavior on /those/ network paths is different.=0D
>=0D
I am saying many TCP senders actually do today see stretch-ACKs. There =0D=

are papers that have shown significant presence of stretch ACKs, e.g., =0D=

(H. Ding and M. Rabinovich. TCP stretch acknowledgements and timestamps: =
=0D
findings and implications for passive RTT measurement. ACM SIGCOMM CCR, =0D=

45(3):20=E2=80=9327, 2015.). A TCP Stretch-ACK of 3 or 4 was common in th=
eir =0D
datasets (about 10% of cases). In some networks, the proportion of =0D
Stretch-ACKs=C2=A0 will be much much higher, since ACK Thining is now wid=
ely =0D
deployed in WiFi drivers as well as cable, satellite and other access =0D=

technologies - often reducing ACK size/rate by a factor of two.=0D
=0D
> However, I do not believe we understand the performance effects of =0D
> these middleboxes, that is, how they might reduce connection =0D
> throughput when the asymmetry is not a problem.=0D
>=0D
I am intrigued and would like to know more, in case I missed something? =0D=

Typical algorithms I am aware of track a queue at the "bottleneck" and =0D=

then make a decision based on upon the contents of the queue. If there =0D=

is no asymmtery, there isn't normally a queue and the algorithm won't =0D=

hunt to discard an "ACK".=0D
=0D
> Importantly, I don't think we should be specifying as default what =0D
> some middleboxes might be doing without fully understanding the =0D
> consequences of doing this.=0D
>=0D
But, maybe, there is some truth in being wary: Encrypted flows can also =0D=

build return path queues (as does QUIC traffic). Without an ability to =0D=

interpret the transport data (which nobody, including me, wants for =0D
QUIC), a bottleneck router is forced to either use another rule to drop =0D=

packets from the queue (such as the smallest packets) or to allow a =0D
queue to grow, limiting forward direction throughput.=0D
=0D
I would say neither of these outcomes are great because the router is =0D=

trying to fix the transport's asymetry. However, if QUIC causes this =0D
problem, I suggest some method will proliferate as QUIC traffic increases=
.=0D
=0D
> Please bear in mind that Chrome's ack policy of 1:10 works with BBR, =0D=

> not with Cubic or Reno.=0D
>=0D
I didn't find something in QUIC spec. that was a major concern. It =0D
looked to me like QUIC had learned from TCP how to handle stretch-ACKs.=0D=

=0D
After that, we changed quicly to use 1:10 with Reno, and things worked =0D=

well. Didn't @kazuho <https://github.com/kazuho> also use Reno?=0D
=0D
> I do not believe there is a magic number at the moment,=0D
>=0D
Sure, the deisgn of TCP recognised that AR 1:1 generated too much =0D
traffic, AR 1:2 for TCP resulted in an Forward:Return traffic ratio of =0D=

~1.5%, and QUIC increases this=C2=A0 ~3%.=0D
=0D
However, as network link speeds increased, this proved too low for many =0D=

network links and so, TCP ACK thinning came into being. This often =0D
reduces the TCP AR to around 1:4 (<1%). If=C2=A0 QUIC were to use an AR 1=
:10 =0D
it would be ~0.5%, of course if QUIC specified a default AR 1:4, it =0D
would also help in many cases.=0D
=0D
> and as @kazuho <https://github.com/kazuho> noted, even 1:10 is not a =0D=

> small enough ratio under some conditions.=0D
>=0D
I totally agree, an endpoint might wish to change the AR. However, I =0D
don't see many **paths** where subnetwork link asymmetry drives that use =
=0D
case (spending ~10% of transmission bursts on ~1% of traffic seems like =0D=

something that most links will be designed/dimensioned to work with). On =
=0D
the other hand, endpoint application/stack considerations (such as a =0D
different CC, e.g. the BBR case you note) will likely benefit from other =
=0D
ratios/behaviours. I agree this motivates your ID, and that a transport =0D=

parameter can be of great value to synchronise the endpoint behaviours.=0D=

=0D
However, that was not my comment: The endpoints know little-to-nothing =0D=

about layer 2 congestion... and if we wish to discourage mitigations =0D
such as thinning or small packet discard, which I really would like to =0D=

disincentivise), then we shouldn't make the QUIC default worse than TCP!=0D=

=0D
> Given this, and given that we know 1:2 is used by TCP endpoints, it =0D=

> makes the most sense to specify that as the suggested guidance.=0D
>=0D
That is a myth wrt to the sender, which is why I would like this =0D
discussed. Even in 2010, RFC 5690 seemed to ignore the presence of ACK =0D=

Thinning, let's not do this again.=0D
>=0D
> The new text proposed in #3706 =0D
> <https://github.com/quicwg/base-drafts/pull/3706> describes the =0D
> tradeoff involved, and the rationale for using 1:2. I am strongly =0D
> against doing anything substantially different without /overwhelming =0D=

> information/.=0D
>=0D
> =E2=80=94=0D
> You are receiving this because you were mentioned.=0D
> Reply to this email directly, view it on GitHub =0D
> <https://github.com/quicwg/base-drafts/issues/3529#issuecomment-6357909=
86>, =0D
> or unsubscribe =0D
> <https://github.com/notifications/unsubscribe-auth/ABYLLERPAQNQCY5NVBUI=
DRLRT5KI3ANCNFSM4LOJ4RQA>.=0D
>=0D
What do we agree upon?=0D
=0D
Gorry=0D
=0D
P.S. I'll certainly review #3706 =0D
<https://github.com/quicwg/base-drafts/pull/3706> and will do this =0D
without bias, whatever the outcome is.=0D
=0D
=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-635878980=

----==_mimepart_5ed0d89bc7f72_4373fbd1d8cd95c4536d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
I think the new ACK text is improving the specification, but I&#39;d like=
 to <br>=0D
be sure we have thought about this decision. Let me try to carefully <br>=
=0D
respond on-list here, to see where we agree/disagree:<br>=0D
<br>=0D
On 29/05/2020 07:41, Jana Iyengar wrote:<br>=0D
&gt;<br>=0D
&gt; @gorryfair &lt;https://github.com/gorryfair&gt; : I understand your =
<br>=0D
&gt; position. While I agree that ack thinning happens with TCP, it is no=
t <br>=0D
&gt; what I expect to find on a common network path. And as far as I know=
, <br>=0D
&gt; the endpoints still implement the RFC 5681 recommendation of acking =
<br>=0D
&gt; every other packet.<br>=0D
&gt;<br>=0D
I disagree, I think we shouldn&#39;t be perpetuating a myth that a sender=
 <br>=0D
receives a TCP ACK for every other packet. Even in the 90&#39;s <br>=0D
implementations TCP stacks often generated stretch-ACKs for 3 segments. <=
br>=0D
Since then, limited byte counting was introduced and significantly <br>=0D=

improved the sender&#39;s response to stretch ACKs, and that has been goo=
d <br>=0D
for everyone.<br>=0D
<br>=0D
Senders still rely on byte-counting in TCP to handle Stretch-ACKs, and <b=
r>=0D
this need is not decreasing: new network cards reduce per-packet receive =
<br>=0D
processing using Large Receive Offload (LRO) or Generic Receiver Offload =
<br>=0D
(GRO).<br>=0D
&gt;<br>=0D
&gt; What you are arguing is that /with ack thinners in the network/ TCP&=
#39;s <br>=0D
&gt; behavior on /those/ network paths is different.<br>=0D
&gt;<br>=0D
I am saying many TCP senders actually do today see stretch-ACKs. There <b=
r>=0D
are papers that have shown significant presence of stretch ACKs, e.g., <b=
r>=0D
(H. Ding and M. Rabinovich. TCP stretch acknowledgements and timestamps: =
<br>=0D
findings and implications for passive RTT measurement. ACM SIGCOMM CCR, <=
br>=0D
45(3):20=E2=80=9327, 2015.). A TCP Stretch-ACK of 3 or 4 was common in th=
eir <br>=0D
datasets (about 10% of cases). In some networks, the proportion of <br>=0D=

Stretch-ACKs=C2=A0 will be much much higher, since ACK Thining is now wid=
ely <br>=0D
deployed in WiFi drivers as well as cable, satellite and other access <br=
>=0D
technologies - often reducing ACK size/rate by a factor of two.<br>=0D
<br>=0D
&gt; However, I do not believe we understand the performance effects of <=
br>=0D
&gt; these middleboxes, that is, how they might reduce connection <br>=0D=

&gt; throughput when the asymmetry is not a problem.<br>=0D
&gt;<br>=0D
I am intrigued and would like to know more, in case I missed something? <=
br>=0D
Typical algorithms I am aware of track a queue at the &quot;bottleneck&qu=
ot; and <br>=0D
then make a decision based on upon the contents of the queue. If there <b=
r>=0D
is no asymmtery, there isn&#39;t normally a queue and the algorithm won&#=
39;t <br>=0D
hunt to discard an &quot;ACK&quot;.<br>=0D
<br>=0D
&gt; Importantly, I don&#39;t think we should be specifying as default wh=
at <br>=0D
&gt; some middleboxes might be doing without fully understanding the <br>=
=0D
&gt; consequences of doing this.<br>=0D
&gt;<br>=0D
But, maybe, there is some truth in being wary: Encrypted flows can also <=
br>=0D
build return path queues (as does QUIC traffic). Without an ability to <b=
r>=0D
interpret the transport data (which nobody, including me, wants for <br>=0D=

QUIC), a bottleneck router is forced to either use another rule to drop <=
br>=0D
packets from the queue (such as the smallest packets) or to allow a <br>=0D=

queue to grow, limiting forward direction throughput.<br>=0D
<br>=0D
I would say neither of these outcomes are great because the router is <br=
>=0D
trying to fix the transport&#39;s asymetry. However, if QUIC causes this =
<br>=0D
problem, I suggest some method will proliferate as QUIC traffic increases=
.<br>=0D
<br>=0D
&gt; Please bear in mind that Chrome&#39;s ack policy of 1:10 works with =
BBR, <br>=0D
&gt; not with Cubic or Reno.<br>=0D
&gt;<br>=0D
I didn&#39;t find something in QUIC spec. that was a major concern. It <b=
r>=0D
looked to me like QUIC had learned from TCP how to handle stretch-ACKs.<b=
r>=0D
<br>=0D
After that, we changed quicly to use 1:10 with Reno, and things worked <b=
r>=0D
well. Didn&#39;t @kazuho &lt;https://github.com/kazuho&gt; also use Reno?=
<br>=0D
<br>=0D
&gt; I do not believe there is a magic number at the moment,<br>=0D
&gt;<br>=0D
Sure, the deisgn of TCP recognised that AR 1:1 generated too much <br>=0D=

traffic, AR 1:2 for TCP resulted in an Forward:Return traffic ratio of <b=
r>=0D
~1.5%, and QUIC increases this=C2=A0 ~3%.<br>=0D
<br>=0D
However, as network link speeds increased, this proved too low for many <=
br>=0D
network links and so, TCP ACK thinning came into being. This often <br>=0D=

reduces the TCP AR to around 1:4 (&lt;1%). If=C2=A0 QUIC were to use an A=
R 1:10 <br>=0D
it would be ~0.5%, of course if QUIC specified a default AR 1:4, it <br>=0D=

would also help in many cases.<br>=0D
<br>=0D
&gt; and as @kazuho &lt;https://github.com/kazuho&gt; noted, even 1:10 is=
 not a <br>=0D
&gt; small enough ratio under some conditions.<br>=0D
&gt;<br>=0D
I totally agree, an endpoint might wish to change the AR. However, I <br>=
=0D
don&#39;t see many **paths** where subnetwork link asymmetry drives that =
use <br>=0D
case (spending ~10% of transmission bursts on ~1% of traffic seems like <=
br>=0D
something that most links will be designed/dimensioned to work with). On =
<br>=0D
the other hand, endpoint application/stack considerations (such as a <br>=
=0D
different CC, e.g. the BBR case you note) will likely benefit from other =
<br>=0D
ratios/behaviours. I agree this motivates your ID, and that a transport <=
br>=0D
parameter can be of great value to synchronise the endpoint behaviours.<b=
r>=0D
<br>=0D
However, that was not my comment: The endpoints know little-to-nothing <b=
r>=0D
about layer 2 congestion... and if we wish to discourage mitigations <br>=
=0D
such as thinning or small packet discard, which I really would like to <b=
r>=0D
disincentivise), then we shouldn&#39;t make the QUIC default worse than T=
CP!<br>=0D
<br>=0D
&gt; Given this, and given that we know 1:2 is used by TCP endpoints, it =
<br>=0D
&gt; makes the most sense to specify that as the suggested guidance.<br>=0D=

&gt;<br>=0D
That is a myth wrt to the sender, which is why I would like this <br>=0D
discussed. Even in 2010, RFC 5690 seemed to ignore the presence of ACK <b=
r>=0D
Thinning, let&#39;s not do this again.<br>=0D
&gt;<br>=0D
&gt; The new text proposed in #3706 <br>=0D
&gt; &lt;https://github.com/quicwg/base-drafts/pull/3706&gt; describes th=
e <br>=0D
&gt; tradeoff involved, and the rationale for using 1:2. I am strongly <b=
r>=0D
&gt; against doing anything substantially different without /overwhelming=
 <br>=0D
&gt; information/.<br>=0D
&gt;<br>=0D
&gt; =E2=80=94<br>=0D
&gt; You are receiving this because you were mentioned.<br>=0D
&gt; Reply to this email directly, view it on GitHub <br>=0D
&gt; &lt;https://github.com/quicwg/base-drafts/issues/3529#issuecomment-6=
35790986&gt;, <br>=0D
&gt; or unsubscribe <br>=0D
&gt; &lt;https://github.com/notifications/unsubscribe-auth/ABYLLERPAQNQCY=
5NVBUIDRLRT5KI3ANCNFSM4LOJ4RQA&gt;.<br>=0D
&gt;<br>=0D
What do we agree upon?<br>=0D
<br>=0D
Gorry<br>=0D
<br>=0D
P.S. I&#39;ll certainly review #3706 <br>=0D
&lt;https://github.com/quicwg/base-drafts/pull/3706&gt; and will do this =
<br>=0D
without bias, whatever the outcome is.<br>=0D
<br>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/issues/3529#issuecomment-635878980">view it on GitHub</a>,=
 or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK2H=
KBLTS7SDQ2TW3JDRT57JXANCNFSM4LOJ4RQA">unsubscribe</a>.<img src=3D"https:/=
/github.com/notifications/beacon/AFTOJK2GFHBQAA5B2ISBJTTRT57JXA5CNFSM4LOJ=
4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXTL4RA.g=
if" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment=
-635878980",=0D
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-63=
5878980",=0D
"name": "View Issue"=0D
},=0D
"description": "View this Issue on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ed0d89bc7f72_4373fbd1d8cd95c4536d--


From nobody Fri May 29 05:04:20 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 CC4193A078A for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 05:04:18 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 n6SyYt8wZ7nz for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 05:04:17 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C2DD83A0781 for <quic-issues@ietf.org>; Fri, 29 May 2020 05:04:17 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 5BB941210A8 for <quic-issues@ietf.org>; Fri, 29 May 2020 05:04:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590753857; bh=Y5PIkTxdS8fzzHbb0XxwJ+tt5ROYU8yD1gAsqfYe8mk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=o3T8QwqFZKWxYJL/QpWr6FIDhgGZN1fq4VuzR6UwT0wo4WOYovROGoQZXT53m7LP3 pRUvFQOhsl+wXPqbejVxiVxiO6shTWfjVAucVan8DyX2RDBQGURKCYs4ppXhcSHKlF jLlAp6/VzICbeHrFV+UfOWx/qAImi/TXrlEsFa5w=
Date: Fri, 29 May 2020 05:04:17 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4NEITAHUE3C2QTMLF43TNUDEVBNHHCKKTHGI@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3690/635935502@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3690@github.com>
References: <quicwg/base-drafts/issues/3690@github.com>
Subject: Re: [quicwg/base-drafts] How to reject a connection attempt (#3690)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed0fa4136cd1_21f93fa165acd96012701b"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/tH6wwDW35VVHwEm4nOWdrUu8Pr0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 12:04:19 -0000

----==_mimepart_5ed0fa4136cd1_21f93fa165acd96012701b
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

I love more specific error codes, but many in the WG do not, so I still like #3704 given the constraints we're working with.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3690#issuecomment-635935502
----==_mimepart_5ed0fa4136cd1_21f93fa165acd96012701b
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>I love more specific error codes, but many in the WG do not, so I still like <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="625355132" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3704" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3704/hovercard" href="https://github.com/quicwg/base-drafts/pull/3704">#3704</a> given the constraints we're working with.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3690#issuecomment-635935502">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKZ3LXTMFS4ODTPIJ6DRT6QEDANCNFSM4NIGTQSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYBUO6XXULMNLRAKDTRT6QEDA5CNFSM4NIGTQSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXTZWDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-635935502",
"url": "https://github.com/quicwg/base-drafts/issues/3690#issuecomment-635935502",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed0fa4136cd1_21f93fa165acd96012701b--


From nobody Fri May 29 05:56:18 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 636253A08A7 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 05:56:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 9SosnQ26v5pA for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 05:56:07 -0700 (PDT)
Received: from out-17.smtp.github.com (out-17.smtp.github.com [192.30.252.200]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 40AA83A0869 for <quic-issues@ietf.org>; Fri, 29 May 2020 05:56:04 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 39D876E1019 for <quic-issues@ietf.org>; Fri, 29 May 2020 05:56:03 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590756963; bh=JJmB9Bwj36VLLdte3e+lz8K5FZMzwjj6LBNSeXB/UD4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eZ9Ojp4hwyTRmXRhptDueUyu1WhEVRcpxYfVP3xUmtExvLOxZU2u10LIh/f0HR2xW OK3qDQ/XDHpPK1/ayzrTHy1OzPz7lckbQib0FNEKthbyQ4jLIYsKTp+VROJBKXz7V6 YMckTBFKgrz9bcD3vrkx+aBouC5lSg142sycdm0E=
Date: Fri, 29 May 2020 05:56:03 -0700
From: msvoelker <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK65R6E65BI7WLOLHOF43TTWHEVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/420924379@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed106632974e_69bb3fab3bccd9601036e6"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: msvoelker
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/0S6hxCXaNWGtye-DBnW4hA3ix6U>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 12:56:17 -0000

----==_mimepart_5ed106632974e_69bb3fab3bccd9601036e6
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@msvoelker commented on this pull request.



> +
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame implement "Probing using padding data", as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current
+maximum packet size are more likely to be dropped by the network.
+
+DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.

Does this makes sense? (I merged both paragraphs in the section)

... Endpoints could limit the content of probe packets to PING and PADDING frames as packets that are larger than the current maximum packet size are more likely to be dropped by the network. These frames might not be retransmitted if a probe packet containing them is lost. Additionally, a lost probe packet should not be treated as a signal of congestion. However, these probe packets do consume congestion window, which could delay the transmission of subsequent application data.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#discussion_r432463344
----==_mimepart_5ed106632974e_69bb3fab3bccd9601036e6
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@msvoelker</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r432463344">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame implement &quot;Probing using padding data&quot;, as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current
+maximum packet size are more likely to be dropped by the network.
+
+DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.
</pre>
<p>Does this makes sense? (I merged both paragraphs in the section)</p>
<p>... Endpoints could limit the content of probe packets to PING and PADDING frames as packets that are larger than the current maximum packet size are more likely to be dropped by the network. These frames might not be retransmitted if a probe packet containing them is lost. Additionally, a lost probe packet should not be treated as a signal of congestion. However, these probe packets do consume congestion window, which could delay the transmission of subsequent application data.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r432463344">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6NZ3SJ5BZZNFDTU6DRT6WGHANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6VYZZ2ZFJKIEWTDWTRT6WGHA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODELMXWY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r432463344",
"url": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r432463344",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed106632974e_69bb3fab3bccd9601036e6--


From nobody Fri May 29 06:27:45 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 01C3C3A0864 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 06:27:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 o1O9wPr38dqb for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 06:27:43 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 95EA73A0860 for <quic-issues@ietf.org>; Fri, 29 May 2020 06:27:43 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 95C395213F6 for <quic-issues@ietf.org>; Fri, 29 May 2020 06:27:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590758862; bh=2+2EfaL84GYtOdsscmfbpKFi3gh/JWY6Br5G/yUCBQ8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yna8PVGpdU+VdQGzxNNcb5J+GosXBHyTeLlOQD6xwsekDTNO6rMNinklPZ4GtxFAQ FF01yKECt5brTteEh3cyJlVYBNZv4ii8ns/2/BUz5x7z/H3kn5hAprezLn7vjr/cA1 HKcyTq4jBOTOFXetbANGNM2bXcjFEohrwIw7MpzY=
Date: Fri, 29 May 2020 06:27:42 -0700
From: Gorry Fairhurst <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2GFGSQVXEKEDUDK4V43TXM5EVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/420948927@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed10dce8647c_42493fb41d6cd96c1360e9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: gorryfair
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/khcaiaIigBrLaBhKQ7HyQP55tDI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 13:27:45 -0000

----==_mimepart_5ed10dce8647c_42493fb41d6cd96c1360e9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair commented on this pull request.



> +
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame implement "Probing using padding data", as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current
+maximum packet size are more likely to be dropped by the network.
+
+DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.

Nearly, could we say:

Probe packets are larger than the current maximum packet size and therefore more likely to be dropped by the network. Endpoints could therefore limit the content of probe packets to ACK-eliciting frames that are not retransmitted (e.g., using PING and PADDING frames).  Loss of a probe packet SHOULD NOT be treated as an indication of congestion and SHOULD NOT trigger a congestion control reaction (see section 3, bullet 7 of {{!DPLPMTUD}}.  However, probe packets do consume congestion window, which could delay subsequent transmission by an application.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#discussion_r432481539
----==_mimepart_5ed10dce8647c_42493fb41d6cd96c1360e9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@gorryfair</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r432481539">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +
+From the perspective of DPLPMTUD, QUIC transport is an acknowledged
+packetization layer (PL). A sender can therefore enter the DPLPMTUD BASE state
+when the QUIC connection handshake has been completed.
+
+
+### Sending QUIC DPLPMTUD Probe Packets
+
+DPLPMTU probe packets are ack-eliciting packets.  Probe packets that use the
+PADDING frame implement &quot;Probing using padding data&quot;, as defined in
+Section 4.1 of {{!DPLPMTUD}}.  Endpoints could limit the content of probe
+packets to PING and PADDING frames as packets that are larger than the current
+maximum packet size are more likely to be dropped by the network.
+
+DPLPMTU probe packets consume congestion window, which could delay subsequent
+transmission by an application.
</pre>
<p>Nearly, could we say:</p>
<p>Probe packets are larger than the current maximum packet size and therefore more likely to be dropped by the network. Endpoints could therefore limit the content of probe packets to ACK-eliciting frames that are not retransmitted (e.g., using PING and PADDING frames).  Loss of a probe packet SHOULD NOT be treated as an indication of congestion and SHOULD NOT trigger a congestion control reaction (see section 3, bullet 7 of {{!DPLPMTUD}}.  However, probe packets do consume congestion window, which could delay subsequent transmission by an application.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#discussion_r432481539">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7MEYWEI5CIBHODKMTRT6Z45ANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY6WAHW33MR7XCYOQLRT6Z45A5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODELSXPY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r432481539",
"url": "https://github.com/quicwg/base-drafts/pull/3702#discussion_r432481539",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed10dce8647c_42493fb41d6cd96c1360e9--


From nobody Fri May 29 12:29:57 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 908263A0F75 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 12:29:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.1
X-Spam-Level: 
X-Spam-Status: No, score=-3.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, HTML_IMAGE_ONLY_32=0.001, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 f9Y-_FOCTm1H for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 12:29:53 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1DC053A0F68 for <quic-issues@ietf.org>; Fri, 29 May 2020 12:29:52 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 49E086A0B56 for <quic-issues@ietf.org>; Fri, 29 May 2020 12:29:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590780591; bh=q2pNF04CGf+4CgANOy9Sy44iY32daEh/3P6/+rVCvVU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=1hncG70WnBR4N6NuzO+VDE/J/e/RlCCDEwYl0IUH5ENHAROJW3fVilPgYQ2Lm0BGj dHSlQ/nKT2LKN4Ecm/BGa0aW5RdFquXe4Uu1M00tOcAXOEL5XLLqvhz2iLPGSSCW/a fARZvo8kzpHsMueeq9NnAJGdWMBLa69RZ4m29seY=
Date: Fri, 29 May 2020 12:29:51 -0700
From: mjoras <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5STHCOKU5EFHIDDBV43VB27EVBNHHCFNKKLA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3526/636147424@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3526@github.com>
References: <quicwg/base-drafts/issues/3526@github.com>
Subject: Re: [quicwg/base-drafts] QUIC PTO is too conservative, causing a measurable regression in tail latency (#3526)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed162af3a3ed_3903fb11a0cd964117463"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: mjoras
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KjKCKv3ohk275G6aNqPnxtJ9PV8>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 19:29:55 -0000

----==_mimepart_5ed162af3a3ed_3903fb11a0cd964117463
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

> This probably shouldn't make me nervous, but it still does. But I still=
 greatly appreciate the data.=0D
=0D
@martinthomson For what it's worth, I did extensive testing of this chang=
e on smaller scale first, e.g. A/B tests on groups of individual hosts in=
 different locales to ensure that nothing was fundamentally problematic. =
But indeed, there is good reason to be nervous when experimenting with re=
covery on the Internet =F0=9F=99=82 =0D
=0D
> can you confirm that you track both observed loss rates AND the rate of=
 spurious retransmission? It strikes me that there would be high correlat=
ion between improvements in latency and real loss, so the loss rates prob=
ably don't change except where the faster transmission coincides with tru=
e congestion (which I would expect to be undetectable), and the same is l=
ikely also true for spurious retransmission, but I just wanted to confirm=
.=0D
=0D
One thing I'll note here is that the vast majority of the newly-fired PTO=
s in this test (i.e. PTOs that previously would have fired later) were no=
t retransmissions at all but rather PTOs using fresh application data. As=
 such the retransmission rate, spurious or otherwise, was pretty much con=
stant when compared to the control.=0D
=0D
I think your intuition about the loss rate is totally warranted; in this =
test though there was not a statistically significant change in the obser=
ved loss rate, either the average or in the p95+ or p99 tail.=0D
=0D
-- =0D
You are receiving this because you are subscribed to this thread.=0D
Reply to this email directly or view it on GitHub:=0D
https://github.com/quicwg/base-drafts/issues/3526#issuecomment-636147424=

----==_mimepart_5ed162af3a3ed_3903fb11a0cd964117463
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<blockquote>=0D
<p>This probably shouldn't make me nervous, but it still does. But I stil=
l greatly appreciate the data.</p>=0D
</blockquote>=0D
<p><a class=3D"user-mention" data-hovercard-type=3D"user" data-hovercard-=
url=3D"/users/martinthomson/hovercard" data-octo-click=3D"hovercard-link-=
click" data-octo-dimensions=3D"link_type:self" href=3D"https://github.com=
/martinthomson">@martinthomson</a> For what it's worth, I did extensive t=
esting of this change on smaller scale first, e.g. A/B tests on groups of=
 individual hosts in different locales to ensure that nothing was fundame=
ntally problematic. But indeed, there is good reason to be nervous when e=
xperimenting with recovery on the Internet <g-emoji class=3D"g-emoji" ali=
as=3D"slightly_smiling_face" fallback-src=3D"https://github.githubassets.=
com/images/icons/emoji/unicode/1f642.png">=F0=9F=99=82</g-emoji></p>=0D
<blockquote>=0D
<p>can you confirm that you track both observed loss rates AND the rate o=
f spurious retransmission? It strikes me that there would be high correla=
tion between improvements in latency and real loss, so the loss rates pro=
bably don't change except where the faster transmission coincides with tr=
ue congestion (which I would expect to be undetectable), and the same is =
likely also true for spurious retransmission, but I just wanted to confir=
m.</p>=0D
</blockquote>=0D
<p>One thing I'll note here is that the vast majority of the newly-fired =
PTOs in this test (i.e. PTOs that previously would have fired later) were=
 not retransmissions at all but rather PTOs using fresh application data.=
 As such the retransmission rate, spurious or otherwise, was pretty much =
constant when compared to the control.</p>=0D
<p>I think your intuition about the loss rate is totally warranted; in th=
is test though there was not a statistically significant change in the ob=
served loss rate, either the average or in the p95+ or p99 tail.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/issues/3526#issuecomment-636147424">view it on GitHub</a>,=
 or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJK3T=
52KH4FRGTX33M5LRUAEK7ANCNFSM4LMHRHIA">unsubscribe</a>.<img src=3D"https:/=
/github.com/notifications/beacon/AFTOJK6O4B2PJ7YZXV6CBOLRUAEK7A5CNFSM4LMH=
RHIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXVNNYA.g=
if" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment=
-636147424",=0D
"url": "https://github.com/quicwg/base-drafts/issues/3526#issuecomment-63=
6147424",=0D
"name": "View Issue"=0D
},=0D
"description": "View this Issue on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ed162af3a3ed_3903fb11a0cd964117463--


From nobody Fri May 29 15:58:32 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 542703A1148 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 15:58:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.544
X-Spam-Level: 
X-Spam-Status: No, score=-1.544 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, T_SPF_TEMPERROR=0.01] 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 CVLW-hibbfxV for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 15:58:27 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id CC3E53A1146 for <quic-issues@ietf.org>; Fri, 29 May 2020 15:58:26 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id 5F8CD1C099B for <quic-issues@ietf.org>; Fri, 29 May 2020 15:58:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590793105; bh=o0dsqb20IRSq+EiMph+VUNI3o5Kkcgk9nheM8UmLh3g=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GL89CkjNcMCCQkq+4Ec7xmYXvdgv0N7yJiSwU2nhcjV7bYQfHs25xIB46c4sEJKvo 6370mjZWcDuxAPKLuBe1HWPG1/XF5gQXjtwojSDYA6YrKeFa0qxIcGyytS4tSn57l3 ZE5cD0YH7pCHL5NFS6kx97w00fJD2A8ihkUizHwE=
Date: Fri, 29 May 2020 15:58:25 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK62DLG2LPKIBPCFUUF43V2JDEVBNHHCHVTIIM@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3585/636227803@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3585@github.com>
References: <quicwg/base-drafts/issues/3585@github.com>
Subject: Re: [quicwg/base-drafts] Text on ECN probing (#3585)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed193914d0cd_4e103fe58bacd964121879"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/F7s6qWrPtHmC7HSEC_SpCrb0oVc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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, 29 May 2020 22:58:31 -0000

----==_mimepart_5ed193914d0cd_4e103fe58bacd964121879
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Implementing this mechanism is trivial for someone implementing the rest of QUIC. It's not a lazy implementer that is causing the problem of lack of implementation, it's an unmotivated one. As @larseggert notes, in the absence of ACK-ECN, this doesn't even matter.

I am not hearing any of the implementers complaining about the complexity of the mechanism here, so I would argue that the mechanism is not an issue.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3585#issuecomment-636227803
----==_mimepart_5ed193914d0cd_4e103fe58bacd964121879
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Implementing this mechanism is trivial for someone implementing the rest of QUIC. It's not a lazy implementer that is causing the problem of lack of implementation, it's an unmotivated one. As <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/larseggert/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/larseggert">@larseggert</a> notes, in the absence of ACK-ECN, this doesn't even matter.</p>
<p>I am not hearing any of the implementers complaining about the complexity of the mechanism here, so I would argue that the mechanism is not an issue.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3585#issuecomment-636227803">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK447S2GHG7HGTPSDL3RUA4ZDANCNFSM4MJ5KMKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5FZ7FZYPON6MO2TSLRUA4ZDA5CNFSM4MJ5KMK2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXWBBWY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-636227803",
"url": "https://github.com/quicwg/base-drafts/issues/3585#issuecomment-636227803",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed193914d0cd_4e103fe58bacd964121879--


From nobody Fri May 29 18:29:39 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 797093A12E1 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 18:29:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 nMFsyI417jhG for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 18:29:36 -0700 (PDT)
Received: from out-13.smtp.github.com (out-13.smtp.github.com [192.30.254.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 284E23A12E0 for <quic-issues@ietf.org>; Fri, 29 May 2020 18:29:36 -0700 (PDT)
Received: from github-lowworker-a27607f.ash1-iad.github.net (github-lowworker-a27607f.ash1-iad.github.net [10.56.18.61]) by smtp.github.com (Postfix) with ESMTP id 93D81260471 for <quic-issues@ietf.org>; Fri, 29 May 2020 18:29:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590802175; bh=qXjMcZWGBFOztt056K2/TaxhlNwHPJT0nWIKMH2I4v8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Rkj/D8AtKIwnioNnvaFn7go6eLqFAfRQT3mDUr0cIAyH4MnDrtBulP7gNmA4DqWeA //VO266PLilRlKvDSvyQNUNXfoBaTQKseTldVYWZxujjXSl9wwNbd0hGGW512ap5tg 8WgHOI9rLct95z29weK15EQc7TMTO9jtf+tU3MXU=
Date: Fri, 29 May 2020 18:29:35 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5BG45K4KQ4RELQVDF43WL77EVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/review/421361725@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed1b6ff4e30a_74a03fd98c4cd95c247040"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/yK0vgR7AKAEz_SIXVJxWcAEfsfU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 30 May 2020 01:29:38 -0000

----==_mimepart_5ed1b6ff4e30a_74a03fd98c4cd95c247040
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.

This is much cleaner -- thanks for working on it! A few comments.

> +  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):
+    if (has handshake keys):
+      return (now() + duration), Handshake
+    else:
+      return (now() + duration), Initial
+  pto_timeout = infinite
+  pto_space = Initial
+  for space in [ Initial, Handshake, ApplicationData ]:
+    if (no in-flight packets in space):
+        continue;
+    if space == ApplicationData:
+      // Skip ApplicationData until handshake complete.
+      if (handshake is not complete):
+        return pto_timeout, pto_space
+      // ApplicationData include the max_ack_delay in PTO.

```suggestion
      // Include max_ack_delay and backoff for ApplicationData.
```

>        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = (smoothed_rtt + max(4 * rttvar, kGranularity))
+      * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets

```suggestion
  // Arm PTO from now when there are no inflight packets.
```

>        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = (smoothed_rtt + max(4 * rttvar, kGranularity))
+      * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):

Assuming this is for the amplification protection, something's missing here. Perhaps this should be 
`if (is_client && no packets in flight && !PeerCompletedAddressValidation())`.
Otherwise, you never get into the case below on line 1293.

>        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = (smoothed_rtt + max(4 * rttvar, kGranularity))
+      * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):
+    if (has handshake keys):
+      return (now() + duration), Handshake
+    else:
+      return (now() + duration), Initial
+  pto_timeout = infinite
+  pto_space = Initial
+  for space in [ Initial, Handshake, ApplicationData ]:
+    if (no in-flight packets in space):
+        continue;
+    if space == ApplicationData:

```suggestion
    if (space == ApplicationData):
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-421361725
----==_mimepart_5ed1b6ff4e30a_74a03fd98c4cd95c247040
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> commented on this pull request.</p>=0D
=0D
<p>This is much cleaner -- thanks for working on it! A few comments.</p><=
hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3681#discussi=
on_r432795491">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +  # Arm PTO from now when there are no in=
flight packets=0D
+  if (no in-flight packets):=0D
+    if (has handshake keys):=0D
+      return (now() + duration), Handshake=0D
+    else:=0D
+      return (now() + duration), Initial=0D
+  pto_timeout =3D infinite=0D
+  pto_space =3D Initial=0D
+  for space in [ Initial, Handshake, ApplicationData ]:=0D
+    if (no in-flight packets in space):=0D
+        continue;=0D
+    if space =3D=3D ApplicationData:=0D
+      // Skip ApplicationData until handshake complete.=0D
+      if (handshake is not complete):=0D
+        return pto_timeout, pto_space=0D
+      // ApplicationData include the max_ack_delay in PTO.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-      // ApplicationData include the max_ack_=
delay in PTO.=0D
+      // Include max_ack_delay and backoff for ApplicationData.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3681#discussi=
on_r432795896">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;        space =3D pn_space=0D
   return time, space=0D
 =0D
+GetPtoTimeAndSpace():=0D
+  duration =3D (smoothed_rtt + max(4 * rttvar, kGranularity))=0D
+      * (2 ^ pto_count)=0D
+  # Arm PTO from now when there are no inflight packets=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-  # Arm PTO from now when there are no inflig=
ht packets=0D
+  // Arm PTO from now when there are no inflight packets.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3681#discussi=
on_r432796124">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;        space =3D pn_space=0D
   return time, space=0D
 =0D
+GetPtoTimeAndSpace():=0D
+  duration =3D (smoothed_rtt + max(4 * rttvar, kGranularity))=0D
+      * (2 ^ pto_count)=0D
+  # Arm PTO from now when there are no inflight packets=0D
+  if (no in-flight packets):=0D
</pre>=0D
<p>Assuming this is for the amplification protection, something's missing=
 here. Perhaps this should be<br>=0D
<code>if (is_client &amp;&amp; no packets in flight &amp;&amp; !PeerCompl=
etedAddressValidation())</code>.<br>=0D
Otherwise, you never get into the case below on line 1293.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3681#discussi=
on_r432797158">draft-ietf-quic-recovery.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;        space =3D pn_space=0D
   return time, space=0D
 =0D
+GetPtoTimeAndSpace():=0D
+  duration =3D (smoothed_rtt + max(4 * rttvar, kGranularity))=0D
+      * (2 ^ pto_count)=0D
+  # Arm PTO from now when there are no inflight packets=0D
+  if (no in-flight packets):=0D
+    if (has handshake keys):=0D
+      return (now() + duration), Handshake=0D
+    else:=0D
+      return (now() + duration), Initial=0D
+  pto_timeout =3D infinite=0D
+  pto_space =3D Initial=0D
+  for space in [ Initial, Handshake, ApplicationData ]:=0D
+    if (no in-flight packets in space):=0D
+        continue;=0D
+    if space =3D=3D ApplicationData:=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-    if space =3D=3D ApplicationData:=0D
+    if (space =3D=3D ApplicationData):=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3681#pullrequestreview-421361725">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
KZCNZJIZ2PM6GZU27LRUBOP7ANCNFSM4NGCCLSA">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK2RQSYIYXXFXULIRYLRUBOP7A5CNFSM4=
NGCCLSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODEOXQPI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestrev=
iew-421361725",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview=
-421361725",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ed1b6ff4e30a_74a03fd98c4cd95c247040--


From nobody Fri May 29 18:32:51 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 60C693A12E7 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 18:32:49 -0700 (PDT)
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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 ExF-Mg4G1iH3 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 18:32:48 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5C78C3A12E6 for <quic-issues@ietf.org>; Fri, 29 May 2020 18:32:48 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 8A3F68C042E for <quic-issues@ietf.org>; Fri, 29 May 2020 18:32:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590802367; bh=7hpbuVDbTd176Uujuw82K8anT1AO1kg+uUh2H5LiiMk=; h=Date:From:To:Subject:From; b=BPT6UuQUr04OqJ+rwii+IQHljA4OWh2t9utHTzqJqYlB7LEymy5Lc4pT79ZZAJj63 nzI2wPZi4M8ngv0PHgOtKG92QBgh8CqdU+VurKMuEqxbiJr2iYY3yTgn8cAAarD38I Hg2ws9Duc4T5rfoYIGzO5jhfff6dhVpA5CBUIK3o=
Date: Fri, 29 May 2020 18:32:47 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/6afd6b-f325ee@github.com>
Subject: [quicwg/base-drafts] f325ee: s/Intgeger/Integer
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/094O50LjZWcjoYakra7U2qDotag>
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: Sat, 30 May 2020 01:32:49 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: f325eea2f03fb065316af8017f92f5c32ff5dac1
      https://github.com/quicwg/base-drafts/commit/f325eea2f03fb065316af8017f92f5c32ff5dac1
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-29 (Fri, 29 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  s/Intgeger/Integer



From nobody Fri May 29 18:33:56 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 7D58A3A12E6 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 18:33:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 EdFNuCTraBiz for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 18:33:54 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 481473A12E3 for <quic-issues@ietf.org>; Fri, 29 May 2020 18:33:54 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 62AB896026C for <quic-issues@ietf.org>; Fri, 29 May 2020 18:33:53 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590802433; bh=0Vs9YhrtBmsReNi9KfutE/pkBY5YLMhEhYwGxXvOv40=; h=Date:From:To:Subject:From; b=2TkWfV9zCUyl+uHk13qtt5Ol6dstuwhqW2d+hsBiI7vr80qxQrLKpFqzbr81DQorw SrKtz8AGkWV4qjapAyIkCukHh45wK3enNz0q45+zDd8SsZBUNgwaKsKIME9wtgakL0 WLBNlP0uiCFBTu9AtVdr0Urc8z9g/xO97p0UtaCc=
Date: Fri, 29 May 2020 18:33:53 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/23f4c4-c57239@github.com>
Subject: [quicwg/base-drafts] c57239: Script updating gh-pages from f325eea2. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/SNGNCXEthDWbZM_bnxEw9T1gY5I>
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: Sat, 30 May 2020 01:33:56 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: c5723903932c217b53375fac75a6930cc85a5a9a
      https://github.com/quicwg/base-drafts/commit/c5723903932c217b53375fac75a6930cc85a5a9a
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-30 (Sat, 30 May 2020)

  Changed paths:
    R dplpmtudtdtd/draft-ietf-quic-http.html
    R dplpmtudtdtd/draft-ietf-quic-http.txt
    R dplpmtudtdtd/draft-ietf-quic-invariants.html
    R dplpmtudtdtd/draft-ietf-quic-invariants.txt
    R dplpmtudtdtd/draft-ietf-quic-qpack.html
    R dplpmtudtdtd/draft-ietf-quic-qpack.txt
    R dplpmtudtdtd/draft-ietf-quic-recovery.html
    R dplpmtudtdtd/draft-ietf-quic-recovery.txt
    R dplpmtudtdtd/draft-ietf-quic-tls.html
    R dplpmtudtdtd/draft-ietf-quic-tls.txt
    R dplpmtudtdtd/draft-ietf-quic-transport.html
    R dplpmtudtdtd/draft-ietf-quic-transport.txt
    R dplpmtudtdtd/index.html
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html
    R semi-colons/draft-ietf-quic-http.html
    R semi-colons/draft-ietf-quic-http.txt
    R semi-colons/draft-ietf-quic-invariants.html
    R semi-colons/draft-ietf-quic-invariants.txt
    R semi-colons/draft-ietf-quic-qpack.html
    R semi-colons/draft-ietf-quic-qpack.txt
    R semi-colons/draft-ietf-quic-recovery.html
    R semi-colons/draft-ietf-quic-recovery.txt
    R semi-colons/draft-ietf-quic-tls.html
    R semi-colons/draft-ietf-quic-tls.txt
    R semi-colons/draft-ietf-quic-transport.html
    R semi-colons/draft-ietf-quic-transport.txt
    R semi-colons/index.html
    R semicolons/draft-ietf-quic-http.html
    R semicolons/draft-ietf-quic-http.txt
    R semicolons/draft-ietf-quic-invariants.html
    R semicolons/draft-ietf-quic-invariants.txt
    R semicolons/draft-ietf-quic-qpack.html
    R semicolons/draft-ietf-quic-qpack.txt
    R semicolons/draft-ietf-quic-recovery.html
    R semicolons/draft-ietf-quic-recovery.txt
    R semicolons/draft-ietf-quic-tls.html
    R semicolons/draft-ietf-quic-tls.txt
    R semicolons/draft-ietf-quic-transport.html
    R semicolons/draft-ietf-quic-transport.txt
    R semicolons/index.html

  Log Message:
  -----------
  Script updating gh-pages from f325eea2. [ci skip]



From nobody Fri May 29 18:34:08 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 189563A12E8 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 18:34:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 QcNnBCSJ9asV for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 18:34:05 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5E2223A12E6 for <quic-issues@ietf.org>; Fri, 29 May 2020 18:34:05 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id 3FEAC8C0130 for <quic-issues@ietf.org>; Fri, 29 May 2020 18:34:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590802444; bh=zaIMBa2TjmOLJIBdFCQRXfwfEEjBFFc4jYARlEtib1A=; h=Date:From:To:Subject:From; b=UuxSHE4VyYEBlzjMi8opALN84N0xPyVWkCxdQRHPNpBCCnJIgoN9KkFCeNM/nuwMe VSVKPBZdrnTuU7x4dyAyOP/JhQXVjuxEX5Y9gcu1ZBacnuxSjJR5A9yMSfFe2VHt1C D5pIY3fIabZCO5qFJ0AFVqM8fEpXK1+0AlH7JERU=
Date: Fri, 29 May 2020 18:34:04 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/c57239-19d23e@github.com>
Subject: [quicwg/base-drafts] 19d23e: Script updating archive at 2020-05-30T01:33:47Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lSqOswWc5Yfe7TSWqeiR-FzEhu4>
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: Sat, 30 May 2020 01:34:07 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 19d23e655cf37c20a7ec9d5a03b63341bcfa4ca2
      https://github.com/quicwg/base-drafts/commit/19d23e655cf37c20a7ec9d5a03b63341bcfa4ca2
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-30 (Sat, 30 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-30T01:33:47Z. [ci skip]



From nobody Fri May 29 19:35: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 67C1A3A1306 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 19:35:54 -0700 (PDT)
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 1yK3litLJT4F for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 19:35:53 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 4B55C3A10C8 for <quic-issues@ietf.org>; Fri, 29 May 2020 19:35:53 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 47295C602DF for <quic-issues@ietf.org>; Fri, 29 May 2020 19:35:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590806152; bh=sQFLsCjbNL0Ae7XIzomTZ4KEapisj7tHA6nsQEgVdPU=; h=Date:From:To:Subject:From; b=T5oGW46bS0yih6cpW6PIsptor8RUEM73DdJNOARIxA5Uij5/fxbPuzIPqmPRR6I+B y4fd7mCjWswW0eNiCUoYRqr81h/TseOnON666q2qRgcZ7FrDRdamHxqnniIBJs/qJB eP/HCzXC/hhu1jHTV7HkM39e8r/FO9Z1mxvulrDQ=
Date: Fri, 29 May 2020 19:35:52 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/f325ee-72e645@github.com>
Subject: [quicwg/base-drafts] de2b85: Move MUST not send bursts up in the pacing section
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/mG1VbVDi93pC6TTcbeJIWPxVyqk>
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: Sat, 30 May 2020 02:35:54 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: de2b8544cc2449c97fc76d00efe0da83c2044e39
      https://github.com/quicwg/base-drafts/commit/de2b8544cc2449c97fc76d00efe0da83c2044e39
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Move MUST not send bursts up in the pacing section

This is a follow-on from #3630


  Commit: 23e3109e596baa220b83923443df4ea60f71dde7
      https://github.com/quicwg/base-drafts/commit/23e3109e596baa220b83923443df4ea60f71dde7
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-18 (Mon, 18 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 72e6455c1499319b7a32deb716f2ab044f08b2b7
      https://github.com/quicwg/base-drafts/commit/72e6455c1499319b7a32deb716f2ab044f08b2b7
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-29 (Fri, 29 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3664 from quicwg/ianswett-pacing-must

Move MUST not send bursts up in the pacing section


Compare: https://github.com/quicwg/base-drafts/compare/f325eea2f03f...72e6455c1499


From nobody Fri May 29 19:35:58 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 7ACB23A10C8 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 19:35:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 hpNwb45V9o1X for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 19:35:53 -0700 (PDT)
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 6DBAA3A10CB for <quic-issues@ietf.org>; Fri, 29 May 2020 19:35:53 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 408ED28012F for <quic-issues@ietf.org>; Fri, 29 May 2020 19:35:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590806152; bh=CiDdUl4Uz36GfnTmKdkQHcr/ZIAJX5XeQDPyFQKHXDU=; h=Date:From:To:Subject:From; b=M7hxACgZX2ryrEED4h2GgtQkzqRQ11cgL8+pgDG4i85Hr/+QHJM0nK/MCWUyWb0rB hkCjTGOOyTNA2vaLJG0RMo7avniM551qDvc7jCN9KKWszOeP9B3VMGKuJFUVLPlX+k 2DNZO25knAAyaLLLhe3sln7Brqj/CGDbFxPJ1tj4=
Date: Fri, 29 May 2020 19:35:52 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-pacing-must/23e310-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/uHj43Wu82QEAwFxxZDTSGIIdV24>
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: Sat, 30 May 2020 02:35:55 -0000

  Branch: refs/heads/ianswett-pacing-must
  Home:   https://github.com/quicwg/base-drafts


From nobody Fri May 29 19:36:08 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 CD8603A1306 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 19:36:06 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.008
X-Spam-Level: 
X-Spam-Status: No, score=-2.008 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 3ukU6BwOjNj4 for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 19:36:05 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3C3B33A10C8 for <quic-issues@ietf.org>; Fri, 29 May 2020 19:36:05 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 90074C6049B for <quic-issues@ietf.org>; Fri, 29 May 2020 19:36:04 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590806164; bh=bwEwH5Frye/qCnXyncHY1KX1WquzpzzqVJ7uN5XFl/0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uCpInLN1QmyrqpdlaeT4g3dEk1Z0EnP7lX/MfrGnijUEH6zrU+J//XpUfUfN7SIME u5Us6Cybg5ywWwtC7Hhhmma9bWJj7Eqa/MqO4PS69+qjMfqgjUQcbG44y35KDLbgRh k4+dOyXGTTioJR5kBvGu4Z0tchPD/OvMIg0+5y5Q=
Date: Fri, 29 May 2020 19:36:04 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZGNZKXSG4OXMRUPP543WTZJEVBNHHCJ5NF4Q@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3664/issue_event/3389333813@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3664@github.com>
References: <quicwg/base-drafts/pull/3664@github.com>
Subject: Re: [quicwg/base-drafts] Move MUST not send bursts up in the pacing section (#3664)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed1c694812f4_4b793ff680acd968149ae"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8au1_DVWs2B00m1WrXrqqYZKuYA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 30 May 2020 02:36:07 -0000

----==_mimepart_5ed1c694812f4_4b793ff680acd968149ae
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3664 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3664#event-3389333813
----==_mimepart_5ed1c694812f4_4b793ff680acd968149ae
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="620078564" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3664" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3664/hovercard" href="https://github.com/quicwg/base-drafts/pull/3664">#3664</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3664#event-3389333813">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5NHWCD2CNCOWBXNMDRUBWJJANCNFSM4ND5YJTA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYBQC7WZAKDY277BU3RUBWJJA5CNFSM4ND5YJTKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZICSCNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3664#event-3389333813",
"url": "https://github.com/quicwg/base-drafts/pull/3664#event-3389333813",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed1c694812f4_4b793ff680acd968149ae--


From nobody Fri May 29 19:37:41 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 663EE3A10CB for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 19:37:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 QyBrgP0xILLt for <quic-issues@ietfa.amsl.com>; Fri, 29 May 2020 19:37:38 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 458673A10C8 for <quic-issues@ietf.org>; Fri, 29 May 2020 19:37:38 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 4345A6A101E for <quic-issues@ietf.org>; Fri, 29 May 2020 19:37:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590806257; bh=gNqlaGNxdEH4XjBwlQobID6NnkTrJXF8LTHbS2X4hTE=; h=Date:From:To:Subject:From; b=hhRePKOaqtMS05UR7aORK5BANKEurrnmN+/NwpoKHRlbHw1l3Os3bYInW1qiK3x+U W8/uHWlfW8Ma+1oR7l9hqpLtKR2PG3NrZH5+WafXrGhA4gIfwo3yLfKtqlDQtuSHWN ttxGcX2p8nUjYE1W7U1dSW0BpesUQ+pJPlqdcqTs=
Date: Fri, 29 May 2020 19:37:37 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/19d23e-bb839a@github.com>
Subject: [quicwg/base-drafts] bb839a: Script updating gh-pages from 72e6455c. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/W0Xj-5-kP71u6gx4E-PLN1ugXlU>
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: Sat, 30 May 2020 02:37:39 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: bb839a9e77704df26e9e298eb4d679c9b6d28703
      https://github.com/quicwg/base-drafts/commit/bb839a9e77704df26e9e298eb4d679c9b6d28703
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-30 (Sat, 30 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 72e6455c. [ci skip]



From nobody Sat May 30 13:58:34 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 271343A09EB for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 13:58:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 G9goJWZUL2MY for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 13:58:32 -0700 (PDT)
Received: from out-14.smtp.github.com (out-14.smtp.github.com [192.30.254.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 227343A09E1 for <quic-issues@ietf.org>; Sat, 30 May 2020 13:58:31 -0700 (PDT)
Received: from github-lowworker-2300405.va3-iad.github.net (github-lowworker-2300405.va3-iad.github.net [10.48.17.39]) by smtp.github.com (Postfix) with ESMTP id 66F0F1204E4 for <quic-issues@ietf.org>; Sat, 30 May 2020 13:58:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590872311; bh=1ocG/ObMDRs8gBdUHSNi6NgDhcqFt2PiBnF7ILAq7BY=; h=Date:From:To:Subject:From; b=TM01SZ7tV0sAc3Z0N8d2MK211VjZniftE32D5EpcXuWil609CVSMItRHALrJC8aLW xpuT6Q9wURAZMZEdc6310HsNgYvfgXNuzMDKUl/r6QxuosthKB+9kuaQ42cECXdO+6 TFNsZp+Jga2X6L+ugkyoeR/B/62Tp/2MRusjFv3s=
Date: Sat, 30 May 2020 13:58:31 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-split-pto-pseudocode/820497-829501@github.com>
Subject: [quicwg/base-drafts] 829501: Add an assert
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/te0N6fmRM2vpDthHwx8CQXIVjag>
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: Sat, 30 May 2020 20:58:33 -0000

  Branch: refs/heads/ianswett-split-pto-pseudocode
  Home:   https://github.com/quicwg/base-drafts
  Commit: 829501299ef329a19ab52f9f0702a85e144c18a7
      https://github.com/quicwg/base-drafts/commit/829501299ef329a19ab52f9f0702a85e144c18a7
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-30 (Sat, 30 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Add an assert



From nobody Sat May 30 13:58:49 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 275FD3A09EB for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 13:58:48 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZzlLRNY97eKO for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 13:58:41 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9FBC33A09F2 for <quic-issues@ietf.org>; Sat, 30 May 2020 13:58:41 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id A42A41C0300 for <quic-issues@ietf.org>; Sat, 30 May 2020 13:58:39 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590872319; bh=V9wDUUv0dgCiDsbwhRdaCmFRCH8MJIpFEymf1yhNSrU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=NyvSu3zsRUKPO8yNAmyT3zkpfG7W/XG18r6/1ltkzZkdibp8bLqKU4pnadHaO1zZ0 12inTebfVTOEfx0hML2res8T8YR9dCmZ1ZhI0prH+xsk50JmW6matjXyu2zhT6ZvyD oKNAzQNuStfCeiVbPJmpsFtTOc9b8WMmlyPB/PKk=
Date: Sat, 30 May 2020 13:58:39 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/push/5152889456@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed2c8ff938a7_6eb93fe87accd95c47537d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/NdtxExEWkeijHht42MUTwy-Sgrs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 30 May 2020 20:58:48 -0000

----==_mimepart_5ed2c8ff938a7_6eb93fe87accd95c47537d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

829501299ef329a19ab52f9f0702a85e144c18a7  Add an assert


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681/files/820497e882f930dcdc5d3ae7401add631ec0ea38..829501299ef329a19ab52f9f0702a85e144c18a7

----==_mimepart_5ed2c8ff938a7_6eb93fe87accd95c47537d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/829501299ef329a19ab52f9f0702a85e144c18a7">8295012</a>  Add an assert</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3681/files/820497e882f930dcdc5d3ae7401add631ec0ea38..829501299ef329a19ab52f9f0702a85e144c18a7">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK5QRBSMQCAQLQ3LO33RUFXP7ANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYSLYH36YL3DZF5SQ3RUFXP7A5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDAOBUGU4TEOKQOVZWQIZVGE2TEOBYHE2DKNQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681/files/820497e882f930dcdc5d3ae7401add631ec0ea38..829501299ef329a19ab52f9f0702a85e144c18a7",
"url": "https://github.com/quicwg/base-drafts/pull/3681/files/820497e882f930dcdc5d3ae7401add631ec0ea38..829501299ef329a19ab52f9f0702a85e144c18a7",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ed2c8ff938a7_6eb93fe87accd95c47537d--


From nobody Sat May 30 13:59:20 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 1BEC03A09F2 for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 13:59:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Zo24vz2gwzN7 for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 13:59:17 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1C6AE3A09EB for <quic-issues@ietf.org>; Sat, 30 May 2020 13:59:17 -0700 (PDT)
Received: from github-lowworker-cf59896.ash1-iad.github.net (github-lowworker-cf59896.ash1-iad.github.net [10.56.112.26]) by smtp.github.com (Postfix) with ESMTP id 4B8C36A034C for <quic-issues@ietf.org>; Sat, 30 May 2020 13:59:16 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590872356; bh=Udlwmxxs5yQRHOheX2HC5A2YZK7RZt2fIU3HLAYf3bQ=; h=Date:From:To:Subject:From; b=gQGxJWVBagHgKspGdAPgRGZSCu/khr5xb5lxYOGnubvLNtm99Ud85UH8gQVi7FrpY WxmLQBn2Ts9S4RSHW7fkmjL+0IoFyOVlmcrlrkNJY+NR7zN3FF0mgRdTGMBrJWdt0X PkOrwpPcYUiJs4uUm/TVgOIIBhsjElXHbvr1vc+4=
Date: Sat, 30 May 2020 13:59:16 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/bb839a-d2abc5@github.com>
Subject: [quicwg/base-drafts] d2abc5: Script updating gh-pages from 82950129. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/8VN7k1G6WNN-rNYJVsml2wcW1UU>
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: Sat, 30 May 2020 20:59:19 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: d2abc5d36e0c4e1f6e621f0f931e13e8c6795ae4
      https://github.com/quicwg/base-drafts/commit/d2abc5d36e0c4e1f6e621f0f931e13e8c6795ae4
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-30 (Sat, 30 May 2020)

  Changed paths:
    R backticks/draft-ietf-quic-http.html
    R backticks/draft-ietf-quic-http.txt
    R backticks/draft-ietf-quic-invariants.html
    R backticks/draft-ietf-quic-invariants.txt
    R backticks/draft-ietf-quic-qpack.html
    R backticks/draft-ietf-quic-qpack.txt
    R backticks/draft-ietf-quic-recovery.html
    R backticks/draft-ietf-quic-recovery.txt
    R backticks/draft-ietf-quic-tls.html
    R backticks/draft-ietf-quic-tls.txt
    R backticks/draft-ietf-quic-transport.html
    R backticks/draft-ietf-quic-transport.txt
    R backticks/index.html
    R ianswett-adaptive-loss/draft-ietf-quic-http.html
    R ianswett-adaptive-loss/draft-ietf-quic-http.txt
    R ianswett-adaptive-loss/draft-ietf-quic-invariants.html
    R ianswett-adaptive-loss/draft-ietf-quic-invariants.txt
    R ianswett-adaptive-loss/draft-ietf-quic-qpack.html
    R ianswett-adaptive-loss/draft-ietf-quic-qpack.txt
    R ianswett-adaptive-loss/draft-ietf-quic-recovery.html
    R ianswett-adaptive-loss/draft-ietf-quic-recovery.txt
    R ianswett-adaptive-loss/draft-ietf-quic-tls.html
    R ianswett-adaptive-loss/draft-ietf-quic-tls.txt
    R ianswett-adaptive-loss/draft-ietf-quic-transport.html
    R ianswett-adaptive-loss/draft-ietf-quic-transport.txt
    R ianswett-adaptive-loss/index.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-http.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-http.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-invariants.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-invariants.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-qpack.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-qpack.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-tls.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-tls.txt
    M ianswett-split-pto-pseudocode/draft-ietf-quic-transport.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 82950129. [ci skip]



From nobody Sat May 30 13:59:28 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 243203A09F2 for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 13:59:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 s9sFviyJVMfO for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 13:59:26 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 20A793A09EB for <quic-issues@ietf.org>; Sat, 30 May 2020 13:59:26 -0700 (PDT)
Received: from github-lowworker-2ef7ba1.ac4-iad.github.net (github-lowworker-2ef7ba1.ac4-iad.github.net [10.52.16.66]) by smtp.github.com (Postfix) with ESMTP id 73CF51C0721 for <quic-issues@ietf.org>; Sat, 30 May 2020 13:59:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590872365; bh=5PtZt0luCkKACzbSiv8D+kpggtnyP5dX1rDrB/eHc64=; h=Date:From:To:Subject:From; b=QH2FdtvQKaPjaxF4hcp2kH3bpbodjNUShxAy12pIVEB8+jo6b/nl9plyEcN06iUOZ XRLtqKKvckv4oe48HPYehqAPeFDtsis6hP6FhVCUWYspYXqLfE30xuxY5jxcIKuvDF XYqoDLU/nlT/GEXJkDl8nbrl5+p/veA5jGhcFfUE=
Date: Sat, 30 May 2020 13:59:25 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/d2abc5-1f1184@github.com>
Subject: [quicwg/base-drafts] 1f1184: Script updating archive at 2020-05-30T20:59:08Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/OKNMThrVHzr34FuipTZB6Lb-byA>
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: Sat, 30 May 2020 20:59:27 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 1f11849e093e5b46d335e817b93f551d7e937535
      https://github.com/quicwg/base-drafts/commit/1f11849e093e5b46d335e817b93f551d7e937535
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-30 (Sat, 30 May 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-05-30T20:59:08Z. [ci skip]



From nobody Sat May 30 13:59:45 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 60BD33A09F4 for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 13:59:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 ke87S19hugYe for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 13:59:43 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 5F4FD3A09F2 for <quic-issues@ietf.org>; Sat, 30 May 2020 13:59:43 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 7F0AE2C0CEB for <quic-issues@ietf.org>; Sat, 30 May 2020 13:59:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590872382; bh=X0htTuNM186vC8tDV2lxdOXDZDQKBxY4LFCtgpa2V9A=; h=Date:From:To:Subject:From; b=x3xFYZsPvogB7fVQ+xEwaQQCl6knK10WkI+4mQw6VEDQIDPl8f4tZLBadcsK7bQ4h sxjlBaYNIRCZk82zLh9bZldM51yf9Y3jNsN3H42+IERSFUznDqWNeb9wE00vcnRfqH Eka4ZSLt4D+I0TlWBv8lbCOghCOdW58g7gArV3qk=
Date: Sat, 30 May 2020 13:59:42 -0700
From: ianswett <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-split-pto-pseudocode/829501-92c2e2@github.com>
Subject: [quicwg/base-drafts] 92c2e2: Apply suggestions from code review
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KJh3l0on0N1z4o9of9SYCWU5U_c>
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: Sat, 30 May 2020 20:59:44 -0000

  Branch: refs/heads/ianswett-split-pto-pseudocode
  Home:   https://github.com/quicwg/base-drafts
  Commit: 92c2e22eaa7bce92d055dba4bf72ecfbc505e5dc
      https://github.com/quicwg/base-drafts/commit/92c2e22eaa7bce92d055dba4bf72ecfbc505e5dc
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-30 (Sat, 30 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Apply suggestions from code review

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>



From nobody Sat May 30 13:59:54 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 631F93A09F6 for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 13:59:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.554
X-Spam-Level: 
X-Spam-Status: No, score=-1.554 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 LOkDJy36lsqJ for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 13:59:52 -0700 (PDT)
Received: from out-4.smtp.github.com (out-4.smtp.github.com [192.30.252.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 3275B3A09F2 for <quic-issues@ietf.org>; Sat, 30 May 2020 13:59:52 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 863A2C60AB4 for <quic-issues@ietf.org>; Sat, 30 May 2020 13:59:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590872391; bh=Y4oh15hS+2OO/YhwgAYkWSfzV2ctjeIvcmHjuJ031ts=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=zr/3CLx+WHkoXUgRRGUsHR57fTb6hy+oIXLoGCnIudPQy+16H8lG6K9lgzTfY7sVO nQQrRyJXYFb/2Ht46Kh1cQg5cdYOhS1XfEyVy85FLPXfbxWy6tPkXQTqZY3TU2IfCY /gtULcRsRzCBKZn8Ka/2+uhVrmhGJtCEHDYeHTlI=
Date: Sat, 30 May 2020 13:59:51 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/push/5152891688@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed2c947769d4_45f13fad3bacd9604100a9"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/t_dInLeVZv3PraLLYGU_UmE5FWc>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 30 May 2020 20:59:53 -0000

----==_mimepart_5ed2c947769d4_45f13fad3bacd9604100a9
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett pushed 1 commit.

92c2e22eaa7bce92d055dba4bf72ecfbc505e5dc  Apply suggestions from code review


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681/files/829501299ef329a19ab52f9f0702a85e144c18a7..92c2e22eaa7bce92d055dba4bf72ecfbc505e5dc

----==_mimepart_5ed2c947769d4_45f13fad3bacd9604100a9
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/ianswett" class="user-mention">@ianswett</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/92c2e22eaa7bce92d055dba4bf72ecfbc505e5dc">92c2e22</a>  Apply suggestions from code review</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3681/files/829501299ef329a19ab52f9f0702a85e144c18a7..92c2e22eaa7bce92d055dba4bf72ecfbc505e5dc">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK56MHRAI4IAM725QCTRUFXUPANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZX5Z36EGQGFWUK4O3RUFXUPA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDAOBUGU4TEOKQOVZWQIZVGE2TEOBZGE3DQOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681/files/829501299ef329a19ab52f9f0702a85e144c18a7..92c2e22eaa7bce92d055dba4bf72ecfbc505e5dc",
"url": "https://github.com/quicwg/base-drafts/pull/3681/files/829501299ef329a19ab52f9f0702a85e144c18a7..92c2e22eaa7bce92d055dba4bf72ecfbc505e5dc",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ed2c947769d4_45f13fad3bacd9604100a9--


From nobody Sat May 30 14:00:42 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 335BE3A09FD for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 14:00:40 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 q00hEk2bnWtA for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 14:00:39 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 34B803A09F6 for <quic-issues@ietf.org>; Sat, 30 May 2020 14:00:39 -0700 (PDT)
Received: from github-lowworker-3a0df0f.ac4-iad.github.net (github-lowworker-3a0df0f.ac4-iad.github.net [10.52.25.92]) by smtp.github.com (Postfix) with ESMTP id 875B02C112F for <quic-issues@ietf.org>; Sat, 30 May 2020 14:00:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590872438; bh=GzK1jJyLOoNj29ADkYkskI7yaDyyaajbdu2neV0stDw=; h=Date:From:To:Subject:From; b=O6IFxcSiK952JO38q/klQ0QipENyPq8FSpQpogZtnFQCBjEfPmy7/iKgxYkYbar5i Zf1LzjJK4qnKGhBmSFBSovC91HUwYL35TyhZondO5hq6xxUAupCwiby3koom1oIdUG 0Yq+6mVRGyCMda6EVZI+yVhTl98B8DIWnoWgV/HE=
Date: Sat, 30 May 2020 14:00:38 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/1f1184-b1e717@github.com>
Subject: [quicwg/base-drafts] b1e717: Script updating gh-pages from 92c2e22e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cX2Qn0e2roPrXNIK5Te2AwjOPaE>
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: Sat, 30 May 2020 21:00:40 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: b1e7179c74419a7231b74f03a40332d8d9325e12
      https://github.com/quicwg/base-drafts/commit/b1e7179c74419a7231b74f03a40332d8d9325e12
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-30 (Sat, 30 May 2020)

  Changed paths:
    M ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.html
    M ianswett-split-pto-pseudocode/draft-ietf-quic-recovery.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 92c2e22e. [ci skip]



From nobody Sat May 30 14:04:19 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 B47573A0A0E for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 14:04:17 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 LxAaVDETtG-V for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 14:04:16 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 17F373A0A0B for <quic-issues@ietf.org>; Sat, 30 May 2020 14:04:16 -0700 (PDT)
Received: from github-lowworker-5825cd4.ac4-iad.github.net (github-lowworker-5825cd4.ac4-iad.github.net [10.52.22.68]) by smtp.github.com (Postfix) with ESMTP id 20903A050D for <quic-issues@ietf.org>; Sat, 30 May 2020 14:04:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590872655; bh=xLL6Tns37OBuT2jSoYeFveWyim8QRCvUwMXqAs6cNNY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RBjXjY6hFywTrNZwP1kyUB4rUcvGRNP8B20op/nFuWrDvUOZcn2/tWXu/izoUA58e M7xitVlsmWH9k2dHARg7WrQKJO13CCeVPUt9P9eIjxPL+G5lbRQtPZVMzt3vzj8VJU EKupovwDSDLDLjEJbe9GJaS9ewyYZf7Wu0+fqAw0=
Date: Sat, 30 May 2020 14:04:15 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3QPVP5EK5S77U3X25432VU7EVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/review/421443307@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed2ca4f10cd4_4da13fb7bf6cd96c4182ee"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ezizJgDUW0F0QSS3GJOoDxbRpMA>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sat, 30 May 2020 21:04:18 -0000

----==_mimepart_5ed2ca4f10cd4_4da13fb7bf6cd96c4182ee
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



>        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = (smoothed_rtt + max(4 * rttvar, kGranularity))
+      * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):

I added an assert that for !PeerCompletedAddressValidation().

I think the condition you're mentioning is:
"if (no in-flight packets in space):
    continue;"

That's per PN-space, not for the connection as a whole.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#discussion_r432886719
----==_mimepart_5ed2ca4f10cd4_4da13fb7bf6cd96c4182ee
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3681#discussion_r432886719">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = (smoothed_rtt + max(4 * rttvar, kGranularity))
+      * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):
</pre>
<p>I added an assert that for !PeerCompletedAddressValidation().</p>
<p>I think the condition you're mentioning is:<br>
"if (no in-flight packets in space):<br>
continue;"</p>
<p>That's per PN-space, not for the connection as a whole.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3681#discussion_r432886719">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7MF4QFPYKLHPKE6JTRUFYE7ANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK6BJCQH4WBTU74WD7LRUFYE7A5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEPLN2Y.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681#discussion_r432886719",
"url": "https://github.com/quicwg/base-drafts/pull/3681#discussion_r432886719",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed2ca4f10cd4_4da13fb7bf6cd96c4182ee--


From nobody Sat May 30 19:11:48 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 AE0243A10D1 for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:11:46 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 wLT1cbgWFcz9 for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:11:45 -0700 (PDT)
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 7EF3C3A10D0 for <quic-issues@ietf.org>; Sat, 30 May 2020 19:11:45 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 98DE3281786 for <quic-issues@ietf.org>; Sat, 30 May 2020 19:11:44 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590891104; bh=1Ap8l5WLgHXHdvh6yYnA3iAVVnOOc00g2JJEnyyFmyU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SZZGKJrEpYcOuv0Ulo2y3nkC6Kq6wNf6dg01Z953ytITYH8az3FtCvF9b7uPj//O5 eqQJjIye8Khxja3nXW9Uw1ylnd6gRUgFQCzqHAQ330lESSHgJExV9iCLeMWIq1mTW7 Y7hvQox0c978FGgiDNkc+GonDTUxSQBORLPg7/eU=
Date: Sat, 30 May 2020 19:11:44 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4IXPKJ2GEFJ35VZJ5433ZWBEVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/review/421455914@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed31260887b6_75873f80014cd9641010125"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/b9nlZAfiAYSWn0M04gs7DsC1xQI>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 31 May 2020 02:11:47 -0000

----==_mimepart_5ed31260887b6_75873f80014cd9641010125
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



>        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = (smoothed_rtt + max(4 * rttvar, kGranularity))
+      * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):

never mind, I thought the code below to do the early return when no packets are in flight after address validation was removed. It's still there, so all good.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#discussion_r432902747
----==_mimepart_5ed31260887b6_75873f80014cd9641010125
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3681#discussion_r432902747">draft-ietf-quic-recovery.md</a>:</p>
<pre style='color:#555'>&gt;        space = pn_space
   return time, space
 
+GetPtoTimeAndSpace():
+  duration = (smoothed_rtt + max(4 * rttvar, kGranularity))
+      * (2 ^ pto_count)
+  # Arm PTO from now when there are no inflight packets
+  if (no in-flight packets):
</pre>
<p>never mind, I thought the code below to do the early return when no packets are in flight after address validation was removed. It's still there, so all good.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3681#discussion_r432902747">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3EMRSSLZ66SGVFJ7TRUG4GBANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKY4AX6A3I7IRUVMSYDRUG4GBA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEPOQKQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681#discussion_r432902747",
"url": "https://github.com/quicwg/base-drafts/pull/3681#discussion_r432902747",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed31260887b6_75873f80014cd9641010125--


From nobody Sat May 30 19:11: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 259AF3A10D1 for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:11:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.041
X-Spam-Level: 
X-Spam-Status: No, score=-1.041 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 8AlFegbzSvLw for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:11:52 -0700 (PDT)
Received: from out-25.smtp.github.com (out-25.smtp.github.com [192.30.252.208]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 18FCE3A10D0 for <quic-issues@ietf.org>; Sat, 30 May 2020 19:11:52 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id 22899280444 for <quic-issues@ietf.org>; Sat, 30 May 2020 19:11:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590891111; bh=pdIr6YwG0tQzElaD4umD/jxfwKAn9zpOtWFqHLu9VeQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JiENbozczObYcx/AeH9u++pB/FOY4MGWoZ8TiCIZO48/VKYWMjalGX+6ONkBxPgvF VszqEnX7/DIdbgP0vT0kmW5StJowDIS5XoGIpNRIej43rkVQpAa3X3X1QWOx0plxCm rY8gERciJ5wHgwlpVUvlHXtlznMiYIF+RDHHe2lA=
Date: Sat, 30 May 2020 19:11:51 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKYJNNN4UBZLMMSSD6V433ZWPEVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/review/421455918@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed312671163a_ba53fdaef8cd96c83269"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/P1gxsAlAsAP26Emo5oVFE1mxqvg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 31 May 2020 02:11:53 -0000

----==_mimepart_5ed312671163a_ba53fdaef8cd96c83269
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-421455918
----==_mimepart_5ed312671163a_ba53fdaef8cd96c83269
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-421455918">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYHVWB2MLIWH4UDLB3RUG4GPANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZ3T2THUSYQOG74TE3RUG4GPA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEPOQLQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-421455918",
"url": "https://github.com/quicwg/base-drafts/pull/3681#pullrequestreview-421455918",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed312671163a_ba53fdaef8cd96c83269--


From nobody Sat May 30 19:12:00 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 4B41E3A10D2 for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:11:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 6Ph7jxJKz3BK for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:11:55 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DDA2D3A10D0 for <quic-issues@ietf.org>; Sat, 30 May 2020 19:11:54 -0700 (PDT)
Received: from github-lowworker-a6a2749.va3-iad.github.net (github-lowworker-a6a2749.va3-iad.github.net [10.48.16.62]) by smtp.github.com (Postfix) with ESMTP id 1FE49A08A8 for <quic-issues@ietf.org>; Sat, 30 May 2020 19:11:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590891114; bh=XKgEjd6fR1tdxWZZhSfKxOnlXgAFUVZpH5K/DFehHAk=; h=Date:From:To:Subject:From; b=mMQ0Gf/X5Z5QvfHzoEzIbJD9x8AsYxiLHHTnWBzrdUmbTYN7kQGuA9cz802jPLs9b IN90XI2e3/VVj4V7Kj7bW1SvzrWp4d9jjFwmS+rdf8MAPXmjHUrUf1IvNMEg3Ewzu7 BtJq3ioiVCdM438cpTDq/cb+ZKlotPrBNAPhZl8M=
Date: Sat, 30 May 2020 19:11:54 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/master/72e645-8644f6@github.com>
Subject: [quicwg/base-drafts] 290a51: Split PTO calculation into a dedicated method
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/GZEOriRyPEP2LkstllRNaaFG6Q4>
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: Sun, 31 May 2020 02:11:57 -0000

  Branch: refs/heads/master
  Home:   https://github.com/quicwg/base-drafts
  Commit: 290a5113d74c36b112d3ada80edc2f3ede23325b
      https://github.com/quicwg/base-drafts/commit/290a5113d74c36b112d3ada80edc2f3ede23325b
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Split PTO calculation into a dedicated method

As @martinthomson pointed out in #3666, it was far too complex and error-prone as-is.

Als fixes #3564 and #3674 by calculating the PTO timeout for each PN space and picking the earliest, as well as checking that there are inflight packets before calculating PTO for a PN space.


  Commit: d0050a08a17463fbf9f3bf25b61b50a982b4a07f
      https://github.com/quicwg/base-drafts/commit/d0050a08a17463fbf9f3bf25b61b50a982b4a07f
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 65b036d2c0437e81e0533a76e863bebfaa3207a3
      https://github.com/quicwg/base-drafts/commit/65b036d2c0437e81e0533a76e863bebfaa3207a3
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 2630bfdfe743909fb7bd3a92a41bd5f794cc503d
      https://github.com/quicwg/base-drafts/commit/2630bfdfe743909fb7bd3a92a41bd5f794cc503d
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 83727ca4f10a4d3866ea026efff3cb833111d1f8
      https://github.com/quicwg/base-drafts/commit/83727ca4f10a4d3866ea026efff3cb833111d1f8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: f10875ed05f2edd3fe121631bf89c4a877204fb5
      https://github.com/quicwg/base-drafts/commit/f10875ed05f2edd3fe121631bf89c4a877204fb5
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-20 (Wed, 20 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Fix errors


  Commit: 242e38d3b7e6170b59b347de6d8b3686af356c11
      https://github.com/quicwg/base-drafts/commit/242e38d3b7e6170b59b347de6d8b3686af356c11
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Apply suggestions from code review

Co-authored-by: Martin Thomson <mt@lowentropy.net>


  Commit: 7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8
      https://github.com/quicwg/base-drafts/commit/7a330219f1b116f3bc1ddbcf8cb8fd8fdd7355b8
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-21 (Thu, 21 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Update draft-ietf-quic-recovery.md


  Commit: 6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a
      https://github.com/quicwg/base-drafts/commit/6ce4f9b1841f8f2296e7420b08a928a41f7f2a5a
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-27 (Wed, 27 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Marten's suggestions


  Commit: 820497e882f930dcdc5d3ae7401add631ec0ea38
      https://github.com/quicwg/base-drafts/commit/820497e882f930dcdc5d3ae7401add631ec0ea38
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-28 (Thu, 28 May 2020)

  Changed paths:
    M draft-ietf-quic-http.md
    M draft-ietf-quic-invariants.md
    M draft-ietf-quic-recovery.md
    M draft-ietf-quic-tls.md
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Merge branch 'master' into ianswett-split-pto-pseudocode


  Commit: 829501299ef329a19ab52f9f0702a85e144c18a7
      https://github.com/quicwg/base-drafts/commit/829501299ef329a19ab52f9f0702a85e144c18a7
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-30 (Sat, 30 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Add an assert


  Commit: 92c2e22eaa7bce92d055dba4bf72ecfbc505e5dc
      https://github.com/quicwg/base-drafts/commit/92c2e22eaa7bce92d055dba4bf72ecfbc505e5dc
  Author: ianswett <ianswett@users.noreply.github.com>
  Date:   2020-05-30 (Sat, 30 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Apply suggestions from code review

Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>


  Commit: 8644f6db1937825ce8162558ea33b135967c3eeb
      https://github.com/quicwg/base-drafts/commit/8644f6db1937825ce8162558ea33b135967c3eeb
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-30 (Sat, 30 May 2020)

  Changed paths:
    M draft-ietf-quic-recovery.md

  Log Message:
  -----------
  Merge pull request #3681 from quicwg/ianswett-split-pto-pseudocode

Split PTO calculation into a dedicated method


Compare: https://github.com/quicwg/base-drafts/compare/72e6455c1499...8644f6db1937


From nobody Sat May 30 19:12:04 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 85EA43A10D0 for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:11:57 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, TVD_SPACE_RATIO=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 jFWGQrShd35z for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:11:56 -0700 (PDT)
Received: from out-20.smtp.github.com (out-20.smtp.github.com [192.30.252.203]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 58C033A10E2 for <quic-issues@ietf.org>; Sat, 30 May 2020 19:11:56 -0700 (PDT)
Received: from github-lowworker-9d2806a.ash1-iad.github.net (github-lowworker-9d2806a.ash1-iad.github.net [10.56.102.50]) by smtp.github.com (Postfix) with ESMTP id 372CB8C011F for <quic-issues@ietf.org>; Sat, 30 May 2020 19:11:55 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590891115; bh=qGAEAg7flP50NA2iyqx1mTnTnVlbr7mbLaYSH0x2OjQ=; h=Date:From:To:Subject:From; b=qDtygCQbj4SRFpGHEp8La2HYjpbXi1wMWi8/lSHR0swoQX8nbCZoKeU9h6vw97NYL 8g3K0qaCrecliytqe+jWBNnkE4AQocGvIBFwRvrSHjKqfLSXkJwYH1TpGkkWmvNpiS rMqi8hya4to8E/kXJjDqg4I6Uk9Q8y4NS7aXS/VE=
Date: Sat, 30 May 2020 19:11:55 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-split-pto-pseudocode/92c2e2-000000@github.com>
Subject: [quicwg/base-drafts]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/cBxHdvgsvjzvGynaJ4ZLSmENHg8>
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: Sun, 31 May 2020 02:11:58 -0000

  Branch: refs/heads/ianswett-split-pto-pseudocode
  Home:   https://github.com/quicwg/base-drafts


From nobody Sat May 30 19:12:21 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 10CEF3A10D2 for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:12:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 OKddB7yLTLnZ for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:12:02 -0700 (PDT)
Received: from out-11.smtp.github.com (out-11.smtp.github.com [192.30.254.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DA6473A10D0 for <quic-issues@ietf.org>; Sat, 30 May 2020 19:12:02 -0700 (PDT)
Received: from github-lowworker-1b8c660.ash1-iad.github.net (github-lowworker-1b8c660.ash1-iad.github.net [10.56.18.59]) by smtp.github.com (Postfix) with ESMTP id 565462612C8 for <quic-issues@ietf.org>; Sat, 30 May 2020 19:12:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590891122; bh=yD67fTuCVoQ+ngblkMZe0c3Fwj9qfvNjQ/k34fqq5Rw=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=oX3B2ieBLIQoc2ONsu+RhCGhVFoxr5JVIdbtfig3P27A+MX10JZV1OcvSBzAALRA2 GBbhPB1kNxbatomuwSh91aheaU7jhOP6EILT/47F96nCZWz1JTuHDm/wv8NZ+jhZoH wIZg/zovpqSOqo4YG1xQ62uafrSEkgvZxFX33UUo=
Date: Sat, 30 May 2020 19:12:02 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2MNX27KKXT2GMQZFN433ZXFEVBNHHCGS5UJA@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issue/3564/issue_event/3390218017@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3564@github.com>
References: <quicwg/base-drafts/issues/3564@github.com>
Subject: Re: [quicwg/base-drafts] SetLossDetectionTimer pseudocode is wrong (#3564)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed3127211520_1b963f9d814cd96c57231f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/3OhmKeL6WYEOOPp7vbrGrggs39M>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 31 May 2020 02:12:04 -0000

----==_mimepart_5ed3127211520_1b963f9d814cd96c57231f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Closed #3564 via #3681.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3564#event-3390218017
----==_mimepart_5ed3127211520_1b963f9d814cd96c57231f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Closed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="592163912" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3564" data-hovercard-type="issue" data-hovercard-url="/quicwg/base-drafts/issues/3564/hovercard" href="https://github.com/quicwg/base-drafts/issues/3564">#3564</a> via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621879230" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3681" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3681/hovercard" href="https://github.com/quicwg/base-drafts/pull/3681">#3681</a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3564#event-3390218017">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYCINIEQKOPHMUZSH3RUG4HFANCNFSM4LZP57YA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5FIT662TLPXBQLXPLRUG4HFA5CNFSM4LZP57YKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZIJJ6II.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3564#event-3390218017",
"url": "https://github.com/quicwg/base-drafts/issues/3564#event-3390218017",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed3127211520_1b963f9d814cd96c57231f--


From nobody Sat May 30 19:12:24 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 B772F3A10D0 for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:12:04 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 GEQJ_KCX67jg for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:12:03 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 8FE3D3A10D1 for <quic-issues@ietf.org>; Sat, 30 May 2020 19:12:03 -0700 (PDT)
Received: from github-lowworker-d31a065.va3-iad.github.net (github-lowworker-d31a065.va3-iad.github.net [10.48.17.70]) by smtp.github.com (Postfix) with ESMTP id 59FCB660F23 for <quic-issues@ietf.org>; Sat, 30 May 2020 19:12:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590891122; bh=/uSIkmZpQvXixhjGDdLE1WRRzm0kBB26rU6laND7hEE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=uPYVwlaUisyLuiBEWoqXXaHWfCA0/vJVB3KHLjB73TUoreMwuaCP09Gp5dzLroVFe bEj63lKZ9OTZxBBi5ALma8GOFTOdBDbhCG7qv9D7qSRAKTLX1t7zlhBW4B6NwSiGZW c/Q1DSY4qFyAG2wcCfat96/iFu3ukxrAFAlbWr5M=
Date: Sat, 30 May 2020 19:12:02 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKY5JT2AENJVZKJPY5F433ZXFEVBNHHCKEI7XY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3681/issue_event/3390218016@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3681@github.com>
References: <quicwg/base-drafts/pull/3681@github.com>
Subject: Re: [quicwg/base-drafts] Split PTO calculation into a dedicated method (#3681)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed312724a998_21a13fd4c86cd9647229a5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/N44hXDVtUvohvERlvU66uIkl-eM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 31 May 2020 02:12:05 -0000

----==_mimepart_5ed312724a998_21a13fd4c86cd9647229a5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

Merged #3681 into master.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3681#event-3390218016
----==_mimepart_5ed312724a998_21a13fd4c86cd9647229a5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p>Merged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621879230" data-permission-text="Title is private" data-url="https://github.com/quicwg/base-drafts/issues/3681" data-hovercard-type="pull_request" data-hovercard-url="/quicwg/base-drafts/pull/3681/hovercard" href="https://github.com/quicwg/base-drafts/pull/3681">#3681</a> into master.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3681#event-3390218016">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYNQ23YN5OFWGM2EK3RUG4HFANCNFSM4NGCCLSA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZN7DH2SIYYSIO5GFDRUG4HFA5CNFSM4NGCCLSKYY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOZIJJ6IA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3681#event-3390218016",
"url": "https://github.com/quicwg/base-drafts/pull/3681#event-3390218016",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed312724a998_21a13fd4c86cd9647229a5--


From nobody Sat May 30 19:13:14 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 2DA003A10D3 for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:13:13 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 htR_CTl-iKQX for <quic-issues@ietfa.amsl.com>; Sat, 30 May 2020 19:13:12 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0E9503A10D2 for <quic-issues@ietf.org>; Sat, 30 May 2020 19:13:12 -0700 (PDT)
Received: from github-lowworker-bb778fb.ash1-iad.github.net (github-lowworker-bb778fb.ash1-iad.github.net [10.56.102.56]) by smtp.github.com (Postfix) with ESMTP id 4C2225200AF for <quic-issues@ietf.org>; Sat, 30 May 2020 19:13:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590891191; bh=z9h3FZFvkm0T72LFP+jbaZckP9o9adnWCrAD1KVWGOQ=; h=Date:From:To:Subject:From; b=d4RrEBWj1xT2bk3uTupnIQ09Urci3FhDVbFfofUekiPljcXEu+moSGf7GWhdtaYfO Xnwk8bYwsank6Jzk+0q8F30tmXv0oNonMqP3+ZxuUQLS3TQlHT9BKFAEQN9e0WsWeQ JZC/P9X2fLgMZqp02StW58oiq3iCDdRfNgov+DLY=
Date: Sat, 30 May 2020 19:13:11 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/b1e717-e8cc31@github.com>
Subject: [quicwg/base-drafts] e8cc31: Script updating gh-pages from 8644f6db. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/2WlHhH7hQJ_6eY3Dr0YsK_-YAIc>
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: Sun, 31 May 2020 02:13:13 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: e8cc3183390e164ee33e73c1e3a2f0822fb8e009
      https://github.com/quicwg/base-drafts/commit/e8cc3183390e164ee33e73c1e3a2f0822fb8e009
  Author: ID Bot <idbot@example.com>
  Date:   2020-05-31 (Sun, 31 May 2020)

  Changed paths:
    M draft-ietf-quic-http.html
    M draft-ietf-quic-http.txt
    M draft-ietf-quic-invariants.html
    M draft-ietf-quic-invariants.txt
    M draft-ietf-quic-qpack.html
    M draft-ietf-quic-qpack.txt
    M draft-ietf-quic-recovery.html
    M draft-ietf-quic-recovery.txt
    M draft-ietf-quic-tls.html
    M draft-ietf-quic-tls.txt
    M draft-ietf-quic-transport.html
    M draft-ietf-quic-transport.txt
    M index.html
    R simple-routing-rephrase/draft-ietf-quic-http.html
    R simple-routing-rephrase/draft-ietf-quic-http.txt
    R simple-routing-rephrase/draft-ietf-quic-invariants.html
    R simple-routing-rephrase/draft-ietf-quic-invariants.txt
    R simple-routing-rephrase/draft-ietf-quic-qpack.html
    R simple-routing-rephrase/draft-ietf-quic-qpack.txt
    R simple-routing-rephrase/draft-ietf-quic-recovery.html
    R simple-routing-rephrase/draft-ietf-quic-recovery.txt
    R simple-routing-rephrase/draft-ietf-quic-tls.html
    R simple-routing-rephrase/draft-ietf-quic-tls.txt
    R simple-routing-rephrase/draft-ietf-quic-transport.html
    R simple-routing-rephrase/draft-ietf-quic-transport.txt
    R simple-routing-rephrase/index.html

  Log Message:
  -----------
  Script updating gh-pages from 8644f6db. [ci skip]



From nobody Sun May 31 16:53:10 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 0F9663A0841 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 16:53:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 08wS879JZrvi for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 16:53:03 -0700 (PDT)
Received: from out-28.smtp.github.com (out-28.smtp.github.com [192.30.252.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 895CB3A0843 for <quic-issues@ietf.org>; Sun, 31 May 2020 16:53:03 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id 849F18C003A for <quic-issues@ietf.org>; Sun, 31 May 2020 16:53:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590969182; bh=+etHur6PlxmB2UhusrzHICtWLnyp+Rd/8dDut1+bWCo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=xjpwiTaAqA1Jax1hwZeNHjz2tQI5QNCEFB4oTgzKQWOE7qfgNFDpWcNT2kreQZnEv +jZKnclhhVP1buDgSQNhUk9vmgM0K9e/+UoQ/vV2KADkmyTxxPfLtI5FeAfl0e4WXw 91qha931fbFcXj5FPBVAK2OHZSc4MCsvLmuvl3mY=
Date: Sun, 31 May 2020 16:53:02 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK25ATNQ44WOJL6GIYN44ASF5EVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/421539720@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed4435e72b36_4ca13f831c6cd96c58374f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/lEToLx5gNeFebunNw9ATQTcGiKw>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Sun, 31 May 2020 23:53:05 -0000

----==_mimepart_5ed4435e72b36_4ca13f831c6cd96c58374f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson approved this pull request.



> +control purposes {{QUIC-RECOVERY}}. Sending only PADDING frames might cause the
+sender to become limited by the congestion controller with no acknowledgments
+forthcoming from the receiver. Therefore, a sender SHOULD ensure that other
+frames are sent periodically in addition to PADDING frames to elicit
+acknowledgments from the receiver.

```suggestion
control purposes {{QUIC-RECOVERY}}. Packets containing only PADDING frames
therefore consume congestion window but do not necessarily generate
acknowledgments that will open the congestion window. Therefore, a sender SHOULD
ensure that other frames are sent periodically in addition to PADDING frames to
elicit acknowledgments from the receiver.
```

A maybe-improvement.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-421539720
----==_mimepart_5ed4435e72b36_4ca13f831c6cd96c58374f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@martinthomson</b> approved this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r432997275">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +control purposes {{QUIC-RECOVERY}}. Sendi=
ng only PADDING frames might cause the=0D
+sender to become limited by the congestion controller with no acknowledg=
ments=0D
+forthcoming from the receiver. Therefore, a sender SHOULD ensure that ot=
her=0D
+frames are sent periodically in addition to PADDING frames to elicit=0D
+acknowledgments from the receiver.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-control purposes {{QUIC-RECOVERY}}. Sending o=
nly PADDING frames might cause the=0D
-sender to become limited by the congestion controller with no acknowledg=
ments=0D
-forthcoming from the receiver. Therefore, a sender SHOULD ensure that ot=
her=0D
-frames are sent periodically in addition to PADDING frames to elicit=0D
-acknowledgments from the receiver.=0D
+control purposes {{QUIC-RECOVERY}}. Packets containing only PADDING fram=
es=0D
+therefore consume congestion window but do not necessarily generate=0D
+acknowledgments that will open the congestion window. Therefore, a sende=
r SHOULD=0D
+ensure that other frames are sent periodically in addition to PADDING fr=
ames to=0D
+elicit acknowledgments from the receiver.=0D
</pre>=0D
=0D
<p>A maybe-improvement.</p>=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3706#pullrequestreview-421539720">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K5R34VE7UX2NJ6TTPDRULUV5ANCNFSM4NMWAK7A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK2PLTC2WFBJABOWXK3RULUV5A5CNFSM4=
NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODEQC7CA.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestrev=
iew-421539720",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview=
-421539720",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ed4435e72b36_4ca13f831c6cd96c58374f--


From nobody Sun May 31 17:09:54 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 6AF243A0885 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 17:09:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 7Gf-4I-4rxfp for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 17:09:52 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 448EC3A0884 for <quic-issues@ietf.org>; Sun, 31 May 2020 17:09:52 -0700 (PDT)
Received: from github-lowworker-f045d1f.ac4-iad.github.net (github-lowworker-f045d1f.ac4-iad.github.net [10.52.19.54]) by smtp.github.com (Postfix) with ESMTP id 5F9B42C0E79 for <quic-issues@ietf.org>; Sun, 31 May 2020 17:09:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590970191; bh=3E73bOE+Pt5DaJcMC/khPLAI00y1ce3/9fCm4sbPF+0=; h=Date:From:To:Subject:From; b=nYfyXBFs/D8ao+hehVn7tP74Wy9MK+O+T52K4glpvo+nd5HpGaRQWk+ByGQXjaty8 gLHlex/uMGcWw8S2ZN5av48PdbYDRsx36DSfF4VdkZONsHrRLr94i5UcX5/KdH0MXd 6yMCq0T5SqKWytRCM5FajnGwVzLaO11FLTc+AuX4=
Date: Sun, 31 May 2020 17:09:51 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dplpmtud-merge/ad691c-8f4088@github.com>
Subject: [quicwg/base-drafts] 6349e1: Add suggested text
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7hY-58RQk_WcyhNABph-W2ujGUs>
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: Mon, 01 Jun 2020 00:09:53 -0000

  Branch: refs/heads/dplpmtud-merge
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6349e16ca5236d8e489f879a8575ee41aa9c037b
      https://github.com/quicwg/base-drafts/commit/6349e16ca5236d8e489f879a8575ee41aa9c037b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-06-01 (Mon, 01 Jun 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add suggested text


  Commit: 8f40887e4e248316813db3d6d5d66b18be38379b
      https://github.com/quicwg/base-drafts/commit/8f40887e4e248316813db3d6d5d66b18be38379b
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-06-01 (Mon, 01 Jun 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Add a term, use it


Compare: https://github.com/quicwg/base-drafts/compare/ad691c836127...8f40887e4e24


From nobody Sun May 31 17:10:04 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 CA9F93A0885 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 17:10:02 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Qmx9ce12ukLc for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 17:10:01 -0700 (PDT)
Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 7E83E3A0884 for <quic-issues@ietf.org>; Sun, 31 May 2020 17:10:01 -0700 (PDT)
Received: from github-lowworker-2e54e43.va3-iad.github.net (github-lowworker-2e54e43.va3-iad.github.net [10.48.17.27]) by smtp.github.com (Postfix) with ESMTP id B86FD660440 for <quic-issues@ietf.org>; Sun, 31 May 2020 17:10:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590970200; bh=NYoOXE2RNBgXj/p8UqcPTtyfHPCdm0CL0lNlOzCRhMs=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Mue3fQHMgCv1pigKTAlUlRVVEhPXEWmqFBN6LlDqcUbASba1NJR43gJF0vaJlpcA3 v4NA+wmVZ8wFn+yHXY5PFxbVR64SYXvgzhUx4EnlzrKSw5pKBaWGdArTA0WmEx0Fq6 0ldaWVK6DDs9bfCj394dknSsg7ncYfeMDlBD4ueU=
Date: Sun, 31 May 2020 17:10:00 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/push/5155965785@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed44758aa43f_72f23fde32ccd9689019f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HBWJY6kRnnpT8qLeYEtRsFC7kXk>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 00:10:03 -0000

----==_mimepart_5ed44758aa43f_72f23fde32ccd9689019f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 2 commits.

6349e16ca5236d8e489f879a8575ee41aa9c037b  Add suggested text
8f40887e4e248316813db3d6d5d66b18be38379b  Add a term, use it


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702/files/ad691c836127271e114713893c5b35e20e6f3ad4..8f40887e4e248316813db3d6d5d66b18be38379b

----==_mimepart_5ed44758aa43f_72f23fde32ccd9689019f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 2 commits.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/6349e16ca5236d8e489f879a8575ee41aa9c037b">6349e16</a>  Add suggested text</li>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/8f40887e4e248316813db3d6d5d66b18be38379b">8f40887</a>  Add a term, use it</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3702/files/ad691c836127271e114713893c5b35e20e6f3ad4..8f40887e4e248316813db3d6d5d66b18be38379b">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJKYPNXIAWV7UHGGFZODRULWVRANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZBKVHGUIPVUSNYRX3RULWVRA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDGNJTGUZDMM2QOVZWQIZVGE2TKOJWGU3TQNI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702/files/ad691c836127271e114713893c5b35e20e6f3ad4..8f40887e4e248316813db3d6d5d66b18be38379b",
"url": "https://github.com/quicwg/base-drafts/pull/3702/files/ad691c836127271e114713893c5b35e20e6f3ad4..8f40887e4e248316813db3d6d5d66b18be38379b",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ed44758aa43f_72f23fde32ccd9689019f--


From nobody Sun May 31 17:10:40 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 277303A0887 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 17:10:39 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 ZrtGQYPWA6E7 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 17:10:38 -0700 (PDT)
Received: from out-6.smtp.github.com (out-6.smtp.github.com [192.30.252.197]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id DCB043A0885 for <quic-issues@ietf.org>; Sun, 31 May 2020 17:10:37 -0700 (PDT)
Received: from github-lowworker-f1f7af9.ash1-iad.github.net (github-lowworker-f1f7af9.ash1-iad.github.net [10.56.111.13]) by smtp.github.com (Postfix) with ESMTP id E43B91C068C for <quic-issues@ietf.org>; Sun, 31 May 2020 17:10:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590970236; bh=C8cPMTaOIVAXLI7rAzGiDLyo3ohEAxWhmFBrlzyL+Bo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=CQAWaJZCA8uQWTfeKhcZFmEuY2MdsiqrTfdR7tuoRVwcDdALSKW5vOF4lU5b9toYJ 1+KTxqULxu4idUApRsPQ5vXYaZr4KVcCx+fKLMcvoUjfOJRErIbetHj3G4XP1+WrOw 67+N6UEQ4Yaj41/bcov4EMqvjv3F1n3B5stL8VkA=
Date: Sun, 31 May 2020 17:10:36 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK5LSRLWXXGSPN4UXLV44AUHZEVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/c636552438@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed4477cd38ae_6ed23f9bcb4cd960964121"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_sF21pAFafSsAkBXzNsxj9a8lI4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 00:10:39 -0000

----==_mimepart_5ed4477cd38ae_6ed23f9bcb4cd960964121
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar, I went with "PMTU probe packet", which is an **IP** packet.  Let me know if that makes sense.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#issuecomment-636552438
----==_mimepart_5ed4477cd38ae_6ed23f9bcb4cd960964121
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/janaiyengar/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/janaiyengar">@janaiyengar</a>, I went with "PMTU probe packet", which is an <strong>IP</strong> packet.  Let me know if that makes sense.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#issuecomment-636552438">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK42ZRSCBEOH5P5V5Q3RULWXZANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK2KAYF3JKIDMT4AASTRULWXZA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXYQJ5Q.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#issuecomment-636552438",
"url": "https://github.com/quicwg/base-drafts/pull/3702#issuecomment-636552438",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed4477cd38ae_6ed23f9bcb4cd960964121--


From nobody Sun May 31 17:11:45 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 AA6863A0887 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 17:11:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 bQvQSzyOKA3A for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 17:11:43 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9BFFD3A0885 for <quic-issues@ietf.org>; Sun, 31 May 2020 17:11:37 -0700 (PDT)
Received: from github-lowworker-943b171.ac4-iad.github.net (github-lowworker-943b171.ac4-iad.github.net [10.52.22.59]) by smtp.github.com (Postfix) with ESMTP id BAAA6C6068C for <quic-issues@ietf.org>; Sun, 31 May 2020 17:11:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590970296; bh=63vP+xL3qnMEiYW9fu/6ynt5Bf2vKpecfwLZeILPyCs=; h=Date:From:To:Subject:From; b=H4zg++duHwzYymwRg/602gJPbVsoJxczCvJHjo39JAFPOfdqjDH0i7fNmxLkJhzYR M9i5c5Aj8v+aOumL/fBUETHaALnRBwgHC0yehtf75UkNJBtX81AEZT5jIeeEAgnPkG +AR1Lg/QUW/kQBXcm/qOfM3jVw2DLNu4cb/yPNAs=
Date: Sun, 31 May 2020 17:11:36 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/e8cc31-5ca568@github.com>
Subject: [quicwg/base-drafts] 5ca568: Script updating gh-pages from 8f40887e. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/4YBA-SpwIX26v_GhsakpZqAmO_g>
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: Mon, 01 Jun 2020 00:11:45 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 5ca5682f5c009960fb072bb50315708eaa87051a
      https://github.com/quicwg/base-drafts/commit/5ca5682f5c009960fb072bb50315708eaa87051a
  Author: ID Bot <idbot@example.com>
  Date:   2020-06-01 (Mon, 01 Jun 2020)

  Changed paths:
    M dplpmtud-merge/draft-ietf-quic-http.html
    M dplpmtud-merge/draft-ietf-quic-http.txt
    M dplpmtud-merge/draft-ietf-quic-invariants.html
    M dplpmtud-merge/draft-ietf-quic-invariants.txt
    M dplpmtud-merge/draft-ietf-quic-qpack.html
    M dplpmtud-merge/draft-ietf-quic-qpack.txt
    M dplpmtud-merge/draft-ietf-quic-recovery.html
    M dplpmtud-merge/draft-ietf-quic-recovery.txt
    M dplpmtud-merge/draft-ietf-quic-tls.html
    M dplpmtud-merge/draft-ietf-quic-tls.txt
    M dplpmtud-merge/draft-ietf-quic-transport.html
    M dplpmtud-merge/draft-ietf-quic-transport.txt
    M index.html
    R list-tls-contribs/draft-ietf-quic-http.html
    R list-tls-contribs/draft-ietf-quic-http.txt
    R list-tls-contribs/draft-ietf-quic-invariants.html
    R list-tls-contribs/draft-ietf-quic-invariants.txt
    R list-tls-contribs/draft-ietf-quic-qpack.html
    R list-tls-contribs/draft-ietf-quic-qpack.txt
    R list-tls-contribs/draft-ietf-quic-recovery.html
    R list-tls-contribs/draft-ietf-quic-recovery.txt
    R list-tls-contribs/draft-ietf-quic-tls.html
    R list-tls-contribs/draft-ietf-quic-tls.txt
    R list-tls-contribs/draft-ietf-quic-transport.html
    R list-tls-contribs/draft-ietf-quic-transport.txt
    R list-tls-contribs/index.html

  Log Message:
  -----------
  Script updating gh-pages from 8f40887e. [ci skip]



From nobody Sun May 31 17:11:52 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 BD89C3A0887 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 17:11:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Cc0yZJTwhdOw for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 17:11:49 -0700 (PDT)
Received: from out-1.smtp.github.com (out-1.smtp.github.com [192.30.252.192]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0C0253A0894 for <quic-issues@ietf.org>; Sun, 31 May 2020 17:11:48 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 54424C606E7 for <quic-issues@ietf.org>; Sun, 31 May 2020 17:11:47 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590970307; bh=17any+erogNsh7pQkWFy+tpBfxIYZsw4HdBzJw7StoE=; h=Date:From:To:Subject:From; b=VjLk+Hj0R4K6Qsu3aTSTEd92UI5+Yr69r/d/1nXCueH/pRrqXya97zDRY8bwTUa4d CKbfsykO5Q38EHtBcnyje3VanwvrHHV8uw4P4mQvpo+ZaPD32oVHJyVpV0vlLXLJ+M SQiHoJ95fluORpUY7NY91SCewYC19dNBXEBIXpts=
Date: Sun, 31 May 2020 17:11:47 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/5ca568-69c343@github.com>
Subject: [quicwg/base-drafts] 69c343: Script updating archive at 2020-06-01T00:11:30Z. [...
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/x1tjW9BH5DyHZvq6g2KmOsxHLWs>
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: Mon, 01 Jun 2020 00:11:51 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 69c343b450b2276a66005099dfffdfbbfcecaabb
      https://github.com/quicwg/base-drafts/commit/69c343b450b2276a66005099dfffdfbbfcecaabb
  Author: ID Bot <idbot@example.com>
  Date:   2020-06-01 (Mon, 01 Jun 2020)

  Changed paths:
    M archive.json

  Log Message:
  -----------
  Script updating archive at 2020-06-01T00:11:30Z. [ci skip]



From nobody Sun May 31 17:57:16 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 C7E783A0954 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 17:57:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -3.101
X-Spam-Level: 
X-Spam-Status: No, score=-3.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 KntpoTZAs9ZK for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 17:57:13 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C7D8F3A0953 for <quic-issues@ietf.org>; Sun, 31 May 2020 17:57:12 -0700 (PDT)
Received: from github-lowworker-ca235ff.ash1-iad.github.net (github-lowworker-ca235ff.ash1-iad.github.net [10.56.110.15]) by smtp.github.com (Postfix) with ESMTP id BB804A112A for <quic-issues@ietf.org>; Sun, 31 May 2020 17:57:11 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590973031; bh=KAzZAT5KQ6LlDdCMN0IowHrCDjYYPxIoyB+92VhjKQo=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=c0NQjfuJycgVfe+V5Y4JbFRTPmULhuWAewQIUAS6Nr9k9R7Qcyfa7V6oPqcf3Xvfo t7TzcGhPoVCcE4Aa3EEAhwrCI5KIeAm3fNmTQOjPyeGdo3LfuKHOypHf9tnOr7iIn6 mtyJZoGzR0p7/VfJHsGYQEM32NftJsotErGeoAJI=
Date: Sun, 31 May 2020 17:57:11 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK46TLQCV3B2GIDURX544AZWPEVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/421546265@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed45267ab7ff_78913f9f2b8cd96c3009c1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/nnE2U45GK5VybNW2F30YBQkRtHo>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 00:57:15 -0000

----==_mimepart_5ed45267ab7ff_78913f9f2b8cd96c3009c1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> -limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending

I would still like to be clearer here and I don't really like "sending rate" in the context of window-based controllers.  I made some specific suggestions before.  Can you take another look at them?

> -one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending
+rate. In both cases, delaying acknowledgment can adversely affect performance.

```suggestion
rate. In both cases, delaying acknowledgments can adversely affect performance.
```

> -received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending
+rate. In both cases, delaying acknowledgment can adversely affect performance.
+
+On the other hand, reducing the frequency of packets that carrying only
+acknowledgements reduces packet processing cost at both endpoints. It can also

Q: Doesn't it reduce packet serialization and sending costs at the receiver and packet processing costs at the sender?  In practice, the cost of sending ACK-only packets is commonly worse, so it seems worth mentioning.

> +control purposes {{QUIC-RECOVERY}}. Sending only PADDING frames might cause the
+sender to become limited by the congestion controller with no acknowledgments
+forthcoming from the receiver. Therefore, a sender SHOULD ensure that other
+frames are sent periodically in addition to PADDING frames to elicit
+acknowledgments from the receiver.

I'd remove "necessarily" from your suggestion, but otherwise LGTM.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-421546265
----==_mimepart_5ed45267ab7ff_78913f9f2b8cd96c3009c1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ianswett</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r433003235">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -limits on how frequently they can be sent=
.  An endpoint MUST NOT send more than=0D
-one ACK-frame-only packet in response to receiving an ack-eliciting pack=
et.  An=0D
-endpoint MUST NOT send a non-ack-eliciting packet in response to a=0D
-non-ack-eliciting packet, even if there are packet gaps which precede th=
e=0D
-received packet. Limiting ACK frames avoids an infinite feedback loop of=
=0D
-acknowledgements, which could prevent the connection from ever becoming =
idle.=0D
-However, the endpoint acknowledges non-ACK-eliciting packets when it sen=
ds an=0D
-ACK frame.=0D
+### Acknowledgement Frequency=0D
+=0D
+A receiver determines how frequently to send acknowledgements in respons=
e to=0D
+ack-eliciting packets. This determination involves a tradeoff.=0D
+=0D
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of=
=0D
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one =
in=0D
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their =
sending=0D
</pre>=0D
<p>I would still like to be clearer here and I don't really like "sending=
 rate" in the context of window-based controllers.  I made some specific =
suggestions before.  Can you take another look at them?</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r433003291">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -one ACK-frame-only packet in response to =
receiving an ack-eliciting packet.  An=0D
-endpoint MUST NOT send a non-ack-eliciting packet in response to a=0D
-non-ack-eliciting packet, even if there are packet gaps which precede th=
e=0D
-received packet. Limiting ACK frames avoids an infinite feedback loop of=
=0D
-acknowledgements, which could prevent the connection from ever becoming =
idle.=0D
-However, the endpoint acknowledges non-ACK-eliciting packets when it sen=
ds an=0D
-ACK frame.=0D
+### Acknowledgement Frequency=0D
+=0D
+A receiver determines how frequently to send acknowledgements in respons=
e to=0D
+ack-eliciting packets. This determination involves a tradeoff.=0D
+=0D
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of=
=0D
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one =
in=0D
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their =
sending=0D
+rate. In both cases, delaying acknowledgment can adversely affect perfor=
mance.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-rate. In both cases, delaying acknowledgment =
can adversely affect performance.=0D
+rate. In both cases, delaying acknowledgments can adversely affect perfo=
rmance.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r433003591">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -received packet. Limiting ACK frames avoi=
ds an infinite feedback loop of=0D
-acknowledgements, which could prevent the connection from ever becoming =
idle.=0D
-However, the endpoint acknowledges non-ACK-eliciting packets when it sen=
ds an=0D
-ACK frame.=0D
+### Acknowledgement Frequency=0D
+=0D
+A receiver determines how frequently to send acknowledgements in respons=
e to=0D
+ack-eliciting packets. This determination involves a tradeoff.=0D
+=0D
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of=
=0D
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one =
in=0D
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their =
sending=0D
+rate. In both cases, delaying acknowledgment can adversely affect perfor=
mance.=0D
+=0D
+On the other hand, reducing the frequency of packets that carrying only=0D=

+acknowledgements reduces packet processing cost at both endpoints. It ca=
n also=0D
</pre>=0D
<p>Q: Doesn't it reduce packet serialization and sending costs at the rec=
eiver and packet processing costs at the sender?  In practice, the cost o=
f sending ACK-only packets is commonly worse, so it seems worth mentionin=
g.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r433003957">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +control purposes {{QUIC-RECOVERY}}. Sendi=
ng only PADDING frames might cause the=0D
+sender to become limited by the congestion controller with no acknowledg=
ments=0D
+forthcoming from the receiver. Therefore, a sender SHOULD ensure that ot=
her=0D
+frames are sent periodically in addition to PADDING frames to elicit=0D
+acknowledgments from the receiver.=0D
</pre>=0D
<p>I'd remove "necessarily" from your suggestion, but otherwise LGTM.</p>=
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3706#pullrequestreview-421546265">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K64ID7HW7SKNBBXCLDRUL4GPANCNFSM4NMWAK7A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK3II3LUBFUUD6M2Q6LRUL4GPA5CNFSM4=
NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODEQESGI.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestrev=
iew-421546265",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview=
-421546265",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ed45267ab7ff_78913f9f2b8cd96c3009c1--


From nobody Sun May 31 19:00:52 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 3E2063A0A9F for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:00:50 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 Mt4QQ5yZ5_wt for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:00:49 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 007433A0A9D for <quic-issues@ietf.org>; Sun, 31 May 2020 19:00:48 -0700 (PDT)
Received: from github-lowworker-cde56e0.va3-iad.github.net (github-lowworker-cde56e0.va3-iad.github.net [10.48.25.52]) by smtp.github.com (Postfix) with ESMTP id 1DCB11C026D for <quic-issues@ietf.org>; Sun, 31 May 2020 19:00:48 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590976848; bh=VrKQUaYGQkByZ0XsnQCDWNkLm9ocs3OgVobgaMJHVHA=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=duMzyh+ZI9Hgbk6XAysmPDBtX882PqpCaRxKt7T0gF3C2bBYpZwKx2F3ufxZtB0ny ne8ATa4N3FgTlRo+hOwkFKSdeTk693Hr5wKCBn+DoGH7zyAmNuTYvGm3hr7LxebcOj t5/RKMhwR5vKxg3yT8F3Zck7VXVWJL9PCWZ+Yt8M=
Date: Sun, 31 May 2020 19:00:48 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4H6NKWOUNLNNYZ6D544BBFBEVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/421558200@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed46150cdcc_570a3f80014cd964494097"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/iNe1XrZzENTMM89ncqICT0zVesU>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 02:00:50 -0000

----==_mimepart_5ed46150cdcc_570a3f80014cd964494097
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson commented on this pull request.



> +control purposes {{QUIC-RECOVERY}}. Sending only PADDING frames might cause the
+sender to become limited by the congestion controller with no acknowledgments
+forthcoming from the receiver. Therefore, a sender SHOULD ensure that other
+frames are sent periodically in addition to PADDING frames to elicit
+acknowledgments from the receiver.

Suggestion updated.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#discussion_r433013233
----==_mimepart_5ed46150cdcc_570a3f80014cd964494097
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@martinthomson</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3706#discussion_r433013233">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; +control purposes {{QUIC-RECOVERY}}. Sending only PADDING frames might cause the
+sender to become limited by the congestion controller with no acknowledgments
+forthcoming from the receiver. Therefore, a sender SHOULD ensure that other
+frames are sent periodically in addition to PADDING frames to elicit
+acknowledgments from the receiver.
</pre>
<p>Suggestion updated.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3706#discussion_r433013233">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK72DOUS7LNRX2SCBXTRUMDVBANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5HBAB642B5V5APQW3RUMDVBA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEQHPOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706#discussion_r433013233",
"url": "https://github.com/quicwg/base-drafts/pull/3706#discussion_r433013233",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed46150cdcc_570a3f80014cd964494097--


From nobody Sun May 31 19:32:08 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 537BF3A0AE7 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:32:07 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 dHnqARfbxpIU for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:32:06 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ED2A63A0AE5 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:32:05 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 081EA6A0038 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:32:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590978725; bh=fFTpaTamyUl48BNiNblmPcCPgtmmk0gUObMOUF6noA8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LL5YduGFJksV5Kajks+GEkjzc3M86i6hYhCUM+l/Hl/GfBAlFC/vIiSxvB8fxpx9A Umfci3QNDuONzix74Jvl1sWXGPTcF5r3+xw4ktM5dCot+lQqlru+heLS3L6JdUPMef XkRKYMWKwTdZAOA0bwJm144/UctB1LMshPrqaYAk=
Date: Sun, 31 May 2020 19:32:04 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK4CHOHVN3KCKAQDCNF44BE2JEVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/421564348@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed468a4ebaa2_22133f88a1ccd9681026f3"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/k0xE4sLhMTGi2sSPdzTH-pZh06s>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 02:32:07 -0000

----==_mimepart_5ed468a4ebaa2_22133f88a1ccd9681026f3
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> -received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending
+rate. In both cases, delaying acknowledgment can adversely affect performance.
+
+On the other hand, reducing the frequency of packets that carrying only
+acknowledgements reduces packet processing cost at both endpoints. It can also

That is a detail, which will need further substantiation. The point here is to note _some_ benefits, to point out that there are some. The specifics will depend on your particular platform.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#discussion_r433018199
----==_mimepart_5ed468a4ebaa2_22133f88a1ccd9681026f3
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3706#discussion_r433018199">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending
+rate. In both cases, delaying acknowledgment can adversely affect performance.
+
+On the other hand, reducing the frequency of packets that carrying only
+acknowledgements reduces packet processing cost at both endpoints. It can also
</pre>
<p>That is a detail, which will need further substantiation. The point here is to note <em>some</em> benefits, to point out that there are some. The specifics will depend on your particular platform.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3706#discussion_r433018199">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7V5MGC5WDBTAAIIEDRUMHKJANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK245C23ZUHCA2D54N3RUMHKJA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEQI7PA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706#discussion_r433018199",
"url": "https://github.com/quicwg/base-drafts/pull/3706#discussion_r433018199",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed468a4ebaa2_22133f88a1ccd9681026f3--


From nobody Sun May 31 19:33:01 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 A49943A0AE7 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:32:58 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 EuHUB0Toxc8K for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:32:57 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9C07B3A0AE5 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:32:57 -0700 (PDT)
Received: from github-lowworker-b19c547.va3-iad.github.net (github-lowworker-b19c547.va3-iad.github.net [10.48.17.66]) by smtp.github.com (Postfix) with ESMTP id EDFFE6A0448 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:32:56 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590978776; bh=wPnjsWCeAlR/9WnrkBJ4hJTI/BLVIYYWNjEQF9Dwkn0=; h=Date:From:To:Subject:From; b=eD7I8SWBD1kPL8FsrNRq08EzPHlQJxtvk88yBiEi2J3BSCOnAyTgxm1rHf3/WM4y+ ncGEAkSaUYq1TEA0v+HnI12YDWeIqRe1raU3SLYJDU3KTyOsdTCiikiREY1XIvG7wk u7LOR70Yvp3ZAhxSZ43lv+FcDLweJALn/UD7MwL0=
Date: Sun, 31 May 2020 19:32:56 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/jri/ackf/e34dcf-12b886@github.com>
Subject: [quicwg/base-drafts] 12b886: Apply suggestions from code review
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/CI67u9MumlmDMDEAuKXF0ASioR8>
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: Mon, 01 Jun 2020 02:32:59 -0000

  Branch: refs/heads/jri/ackf
  Home:   https://github.com/quicwg/base-drafts
  Commit: 12b886d9ccc4cc16b019d9e91ed15abd83dbb456
      https://github.com/quicwg/base-drafts/commit/12b886d9ccc4cc16b019d9e91ed15abd83dbb456
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-31 (Sun, 31 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Apply suggestions from code review

Co-authored-by: ianswett <ianswett@users.noreply.github.com>
Co-authored-by: Martin Thomson <mt@lowentropy.net>



From nobody Sun May 31 19:33:10 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 B22DC3A0AE7 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:33:08 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 wryS8W9dmp99 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:33:07 -0700 (PDT)
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 83EFC3A0AE5 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:33:07 -0700 (PDT)
Received: from github-lowworker-fa7043e.ash1-iad.github.net (github-lowworker-fa7043e.ash1-iad.github.net [10.56.109.45]) by smtp.github.com (Postfix) with ESMTP id BF556280B77 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:33:05 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590978785; bh=18vRSAFtESnbeR5iBAf1UhsGZ1YqhCkvmiOJd87qXFI=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=RPX9xlkrgYCMPRGTb4n/jIv15xJNqqFkdxGFlLjhizNKqvgyv7AZtjhhW9Zw1GlcI Cr0QPH7RHB9n7uTz4CsBDErEkhGmDB8WiqkqLK7SV57hKhArOABX1T7y7Lofcewm+6 lCA7jjnRBcKMxOMnZxYaY0ijSrv6UFG3xffMbdZs=
Date: Sun, 31 May 2020 19:33:05 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/push/5156281203@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed468e1af2d3_3ec43f831c6cd96c15398dc"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/7rdZbXvJPsFdWFyucX5POl_5FQM>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 02:33:09 -0000

----==_mimepart_5ed468e1af2d3_3ec43f831c6cd96c15398dc
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar pushed 1 commit.

12b886d9ccc4cc16b019d9e91ed15abd83dbb456  Apply suggestions from code review


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706/files/e34dcf87d36270b9fd685c683a0c2fcfdec3a44d..12b886d9ccc4cc16b019d9e91ed15abd83dbb456

----==_mimepart_5ed468e1af2d3_3ec43f831c6cd96c15398dc
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/janaiyengar" class="user-mention">@janaiyengar</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/12b886d9ccc4cc16b019d9e91ed15abd83dbb456">12b886d</a>  Apply suggestions from code review</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3706/files/e34dcf87d36270b9fd685c683a0c2fcfdec3a44d..12b886d9ccc4cc16b019d9e91ed15abd83dbb456">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK7WIN7MOEMAE2RCUWLRUMHODANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK47RZUX5I4EQRA7GM3RUMHODA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDIMRRHEZTINCQOVZWQIZVGE2TMMRYGEZDAMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706/files/e34dcf87d36270b9fd685c683a0c2fcfdec3a44d..12b886d9ccc4cc16b019d9e91ed15abd83dbb456",
"url": "https://github.com/quicwg/base-drafts/pull/3706/files/e34dcf87d36270b9fd685c683a0c2fcfdec3a44d..12b886d9ccc4cc16b019d9e91ed15abd83dbb456",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ed468e1af2d3_3ec43f831c6cd96c15398dc--


From nobody Sun May 31 19:33: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 D4D323A0AEA for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:33:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 WVs4vpfAHnCp for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:33:52 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A35B53A0AE7 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:33:52 -0700 (PDT)
Received: from github-lowworker-d93c4b6.va3-iad.github.net (github-lowworker-d93c4b6.va3-iad.github.net [10.48.17.47]) by smtp.github.com (Postfix) with ESMTP id CD2A2A0E50 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:33:51 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590978831; bh=RLMTf/DqddT2/Ron4MgobBj90+FaqurvjZY7ZLW7cqM=; h=Date:From:To:Subject:From; b=br8A1iozDAHDZt0eD5fkn8iepsnWm8XZLfW8pcIIRyT3YEqVtludurlyJ3QpzJFua 51ev2lFzPh0TNID/F+DKz18WnBjTNmPmRrW42auHbJ4lB34dEp4cda5EizOweBTSzO 5R90twVLBcq58/5Wx2/CBPqIsHZQcxKV82B8yX88=
Date: Sun, 31 May 2020 19:33:51 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/69c343-7cd130@github.com>
Subject: [quicwg/base-drafts] 7cd130: Script updating gh-pages from 12b886d9. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/eVXpYa6hNfA1X9RrU04O4U8ym90>
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: Mon, 01 Jun 2020 02:33:54 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 7cd1301b2b978bc5ecaf5504c8183e25974c5f7f
      https://github.com/quicwg/base-drafts/commit/7cd1301b2b978bc5ecaf5504c8183e25974c5f7f
  Author: ID Bot <idbot@example.com>
  Date:   2020-06-01 (Mon, 01 Jun 2020)

  Changed paths:
    M index.html
    M jri/ackf/draft-ietf-quic-http.html
    M jri/ackf/draft-ietf-quic-http.txt
    M jri/ackf/draft-ietf-quic-invariants.html
    M jri/ackf/draft-ietf-quic-invariants.txt
    M jri/ackf/draft-ietf-quic-qpack.html
    M jri/ackf/draft-ietf-quic-qpack.txt
    M jri/ackf/draft-ietf-quic-recovery.html
    M jri/ackf/draft-ietf-quic-recovery.txt
    M jri/ackf/draft-ietf-quic-tls.html
    M jri/ackf/draft-ietf-quic-tls.txt
    M jri/ackf/draft-ietf-quic-transport.html
    M jri/ackf/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 12b886d9. [ci skip]



From nobody Sun May 31 19:35:10 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 525AE3A0AEA for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:35:09 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.697
X-Spam-Level: 
X-Spam-Status: No, score=-1.697 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 otb_NGaUpJPc for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:35:08 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id ED2893A0AE8 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:35:07 -0700 (PDT)
Received: from github-lowworker-39b4a70.va3-iad.github.net (github-lowworker-39b4a70.va3-iad.github.net [10.48.16.66]) by smtp.github.com (Postfix) with ESMTP id 3BAD6E0133 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:35:07 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590978907; bh=fWWIAmXocOgwSedhjZWkNlUyBxLyaJnLz4TRRdeHC0Y=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=GWXqtMF4dHFdY6uNzhFqVjslbMfy5RCB0NVOvr1en58Chwz4F0U9ymub6jufHO8+x KTkjnenM9i8vVrVvOCoaB0m1HKQPSZpvUXKwVFijemFfvom4AWom8OPURByPzt7XzQ ldJUT+/BkHqPxeMKfB8NkhyAfKM0gOBe1p6wESmM=
Date: Sun, 31 May 2020 19:35:07 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJKZFADH3HFIMUHUE2RF44BFFXEVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/421564976@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed4695b2ba87_5bb73fbd0c2cd9644199252"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/KL3QPSWkxi2g4g40dC9FAXUdpSg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 02:35:09 -0000

----==_mimepart_5ed4695b2ba87_5bb73fbd0c2cd9644199252
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> -limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending

It's still quite accurate, IMO. Ultimately, increasing the congestion window increases the sending rate. That is the higher order point here -- that reducing ack frequency reduces the throughput of the sender.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#discussion_r433018697
----==_mimepart_5ed4695b2ba87_5bb73fbd0c2cd9644199252
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3706#discussion_r433018697">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending
</pre>
<p>It's still quite accurate, IMO. Ultimately, increasing the congestion window increases the sending rate. That is the higher order point here -- that reducing ack frequency reduces the throughput of the sender.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3706#discussion_r433018697">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4EXMVV2ZLCKQ3PHATRUMHVXANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZJB4A3MLRY5ZZHLRLRUMHVXA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEQJEMA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706#discussion_r433018697",
"url": "https://github.com/quicwg/base-drafts/pull/3706#discussion_r433018697",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed4695b2ba87_5bb73fbd0c2cd9644199252--


From nobody Sun May 31 19:37:27 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 5C3723A0AEE for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:37:26 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.483
X-Spam-Level: 
X-Spam-Status: No, score=-1.483 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, HTML_IMAGE_ONLY_24=1.618, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 m3Jx_JGNwxtr for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:37:25 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id EDF783A0AEB for <quic-issues@ietf.org>; Sun, 31 May 2020 19:37:24 -0700 (PDT)
Received: from github-lowworker-52827f8.ash1-iad.github.net (github-lowworker-52827f8.ash1-iad.github.net [10.56.108.24]) by smtp.github.com (Postfix) with ESMTP id 333025204D3 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:37:24 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590979044; bh=srsIngCw+wuQSQAZfmupRZWI5XfAFr2Kw6g9PTFQF9s=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=JC75yqePy+r52OrUMgJSc3fDidI07ULpHvg8zlA9D8ZRdyFUKus5hh9OfyFzTHlfm 7yrTIQ67DTidXiLsnjhVVnC4Q/GdCDS/reZ8JC1O/o790R79Ocy65inYj4A8R2g+Dq Bk+sCE87RkDJ6nUtbv4zWKDAI1xZM9FH11x8Qwwo=
Date: Sun, 31 May 2020 19:37:24 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK3OLLHJRG2N4SAM3V544BFOJEVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/421565454@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed469e42306b_409c3fb2e30cd96c19615a8"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/TquKRwbyygdOFOWCz24xQPHke6k>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 02:37:26 -0000

----==_mimepart_5ed469e42306b_409c3fb2e30cd96c19615a8
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.



> -limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending

I've changed it to "manage their congestion window"

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#discussion_r433019079
----==_mimepart_5ed469e42306b_409c3fb2e30cd96c19615a8
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3706#discussion_r433019079">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending
</pre>
<p>I've changed it to "manage their congestion window"</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3706#discussion_r433019079">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK76LNH4J7ANEWT322TRUMH6JANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK42A2KXITMYYCNCM7TRUMH6JA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEQJIDQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706#discussion_r433019079",
"url": "https://github.com/quicwg/base-drafts/pull/3706#discussion_r433019079",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed469e42306b_409c3fb2e30cd96c19615a8--


From nobody Sun May 31 19:37:48 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 0AE603A0AEE for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:37:47 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 LQUUj97A7EGg for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:37:46 -0700 (PDT)
Received: from out-2.smtp.github.com (out-2.smtp.github.com [192.30.252.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F1AE33A0AEC for <quic-issues@ietf.org>; Sun, 31 May 2020 19:37:45 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 20C211C0281 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:37:45 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590979065; bh=m+SfEBC1V8RG8H4lwANC4wUkQ0LmTQpLEahhjkSRgnA=; h=Date:From:To:Subject:From; b=xmGb/3S7qt0BnV62F0fi++bfJ+eCFuGZzAWxozr6IRowdI16fuaMdzdIplzKYs+kG eWX8EdaEpVtNPz0uCRM5ljZ8dbObbqsr29qF907PWBOXRMs/pkQb4JG7Zd5JhOpYW6 lf5BZ9vwa23joNw8gYZF84DNArwCXD2+7eM+AZb8=
Date: Sun, 31 May 2020 19:37:45 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/jri/ackf/12b886-3c9f34@github.com>
Subject: [quicwg/base-drafts] 3c9f34: s/sending rate/congestion window
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/vEEDePr9ZQkaviMDkrATu-FRrIs>
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: Mon, 01 Jun 2020 02:37:47 -0000

  Branch: refs/heads/jri/ackf
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3c9f34272c60e7bd6607197bec94fcd889df83bc
      https://github.com/quicwg/base-drafts/commit/3c9f34272c60e7bd6607197bec94fcd889df83bc
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-31 (Sun, 31 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  s/sending rate/congestion window



From nobody Sun May 31 19:37:57 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 E126F3A0AEE for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:37:55 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 0d_6Vj6g-_8A for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:37:54 -0700 (PDT)
Received: from out-16.smtp.github.com (out-16.smtp.github.com [192.30.254.199]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id C77A93A0AEC for <quic-issues@ietf.org>; Sun, 31 May 2020 19:37:54 -0700 (PDT)
Received: from github-lowworker-cd7bc13.ac4-iad.github.net (github-lowworker-cd7bc13.ac4-iad.github.net [10.52.25.102]) by smtp.github.com (Postfix) with ESMTP id 31C031200F6 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:37:54 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590979074; bh=yT+fAHS2DsNOf7wrBcKi1IH3Ufm8goiZC2QSo77Ns9A=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=c/LNtRC/839jz0QAsuzuj+Ik16I9aXkc/5yNLhBPBXW4LM9gA0DmKgDysuILljR+s nFDp+YTH+19U/hie+Eo7NlC5SJVkfe2LuTPJsJPsxkEwVXoMysWpjQeOn+eXD0OLh5 mXfXkg2QknDjXbPupQnSnkE7vTF6tufGngS/Zwbo=
Date: Sun, 31 May 2020 19:37:53 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/push/5156292724@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed46a01d0832_aa13fbe606cd9606036c2"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kDHBNUoiRM8pwlcQUHeAQXyWlzg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 02:37:56 -0000

----==_mimepart_5ed46a01d0832_aa13fbe606cd9606036c2
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar pushed 1 commit.

3c9f34272c60e7bd6607197bec94fcd889df83bc  s/sending rate/congestion window


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706/files/12b886d9ccc4cc16b019d9e91ed15abd83dbb456..3c9f34272c60e7bd6607197bec94fcd889df83bc

----==_mimepart_5ed46a01d0832_aa13fbe606cd9606036c2
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/janaiyengar" class="user-mention">@janaiyengar</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/3c9f34272c60e7bd6607197bec94fcd889df83bc">3c9f342</a>  s/sending rate/congestion window</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3706/files/12b886d9ccc4cc16b019d9e91ed15abd83dbb456..3c9f34272c60e7bd6607197bec94fcd889df83bc">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK656ATKXOUOIBIUJOLRUMIADANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK3D47VKGKJOHUZABBTRUMIADA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDIMRRHEZTINCQOVZWQIZVGE2TMMRZGI3TENA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706/files/12b886d9ccc4cc16b019d9e91ed15abd83dbb456..3c9f34272c60e7bd6607197bec94fcd889df83bc",
"url": "https://github.com/quicwg/base-drafts/pull/3706/files/12b886d9ccc4cc16b019d9e91ed15abd83dbb456..3c9f34272c60e7bd6607197bec94fcd889df83bc",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ed46a01d0832_aa13fbe606cd9606036c2--


From nobody Sun May 31 19:38:33 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 5B5A63A0AEE for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:38:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 v45dKZF_V7NF for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:38:30 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 73C013A0AEC for <quic-issues@ietf.org>; Sun, 31 May 2020 19:38:30 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id B8CB1E036D for <quic-issues@ietf.org>; Sun, 31 May 2020 19:38:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590979109; bh=D3kKXc+9Y6NiEFgmuBUbkVdNwPGXWAunfOx+47O6zjk=; h=Date:From:To:Subject:From; b=PU/QjE5FmVpKj5cFl19Q+RxECj1TcnyvNmEYwXVXR3eak2zfy2ezSeyP5hzOc7v6m MwX77fjWzcMxnPuNxlRrvjbrs1sSpb4iaEV+0kAiEA7ecPDjsbbrCZbiueow7mqfj2 vMqf0XRIB5eCEw2M4WpWdMyWDI2MXOq3+JppWJnw=
Date: Sun, 31 May 2020 19:38:29 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/7cd130-29f1dd@github.com>
Subject: [quicwg/base-drafts] 29f1dd: Script updating gh-pages from 3c9f3427. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/u9UpafbWGe5dfmwJQEfuvBeCj7E>
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: Mon, 01 Jun 2020 02:38:31 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: 29f1dd59531b0b536bd77956a157ea6355d00cd0
      https://github.com/quicwg/base-drafts/commit/29f1dd59531b0b536bd77956a157ea6355d00cd0
  Author: ID Bot <idbot@example.com>
  Date:   2020-06-01 (Mon, 01 Jun 2020)

  Changed paths:
    M index.html
    M jri/ackf/draft-ietf-quic-transport.html
    M jri/ackf/draft-ietf-quic-transport.txt

  Log Message:
  -----------
  Script updating gh-pages from 3c9f3427. [ci skip]



From nobody Sun May 31 19:53:27 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 A47603A0B10 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:53:25 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.101
X-Spam-Level: 
X-Spam-Status: No, score=-8.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 o93SwEGongDT for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:53:22 -0700 (PDT)
Received: from out-27.smtp.github.com (out-27.smtp.github.com [192.30.252.210]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 700D53A0C08 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:53:16 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id BE8D6E003A for <quic-issues@ietf.org>; Sun, 31 May 2020 19:53:15 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590979995; bh=tUVESPDquNRkw5HYnHJsIBVnU9fD6JAFrV5aDqDZuvE=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=Jlyi9wXWDcS3oAqSDlw+IVwKuNcTajZz6DsunpzVfLDZ2xD0/HW707h7gdkKJcr6a KlXj6ay/bfBl5ngVNaNJmIj7/37rCIaW7MZcxW5Oh3D+saOt5mFdiXJ6cFAYJpNm32 4BdnLCKaWhlR1Vu4sn3GOPLFaj2wqsIDEGsd5JU8=
Date: Sun, 31 May 2020 19:53:15 -0700
From: Kazuho Oku <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK67I7VIDZWJJKGC5SV44BHJXEVBNHHCFSANWY@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/issues/3529/636585635@github.com>
In-Reply-To: <quicwg/base-drafts/issues/3529@github.com>
References: <quicwg/base-drafts/issues/3529@github.com>
Subject: Re: [quicwg/base-drafts] Changing the Default QUIC ACK Policy (#3529)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed46d9bad7a1_46683fd459acd95c2688f5"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: kazuho
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/HTz2znOZY1JNrDkVQKaJG7z8Dw4>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 02:53:26 -0000

----==_mimepart_5ed46d9bad7a1_46683fd459acd95c2688f5
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@gorryfair 
>> Please bear in mind that Chrome's ack policy of 1:10 works with BBR, not with Cubic or Reno.
> 
> I didn't find something in QUIC spec. that was a major concern. It looked to me like QUIC had learned from TCP how to handle stretch-ACKs.
> 
> After that, we changed quicly to use 1:10 with Reno, and things worked well. Didn't @kazuho <https://github.com/kazuho> also use Reno?

Just to clarify, in our experiment, we reduced the ACK frequency from the default (2) to `max(1/8 cwnd, 3 MTU)` after leaving slow start, then updated it every 4 PTO. I _think_ that would work fine on a high-bandwidth, stable network. But I am not sure if it would work as well as ack2 on all network conditions.

Anyways, I'd explain our experiment as an optimization of ack 2, as it was reduction of ack rate after leaving slow start. I think that that was a sensible choice, because IIUC having frequent acks during slow start is essential.

Assuming that we'd prefer using ack 2 during slow start, the question is if we need to hard-code in the base draft how to _optimize_ after leaving slow start. While I agree that continuing to use ack 2 after slow start is concerning for certain networks, I am reluctant to spending time on looking for such a fixed set of values across diverse networks (including much slower links or lossy ones).

Rather, my preference goes to shipping the base-draft as-is, then moving on to finalize the ack-frequency frame. I think we can assume most if not all of the popular clients to support the ack-frequency frame. Then, it becomes less of a question what the default in the base-draft is.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/issues/3529#issuecomment-636585635
----==_mimepart_5ed46d9bad7a1_46683fd459acd95c2688f5
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/gorryfair/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gorryfair">@gorryfair</a></p>
<blockquote>
<blockquote>
<p>Please bear in mind that Chrome's ack policy of 1:10 works with BBR, not with Cubic or Reno.</p>
</blockquote>
<p>I didn't find something in QUIC spec. that was a major concern. It looked to me like QUIC had learned from TCP how to handle stretch-ACKs.</p>
<p>After that, we changed quicly to use 1:10 with Reno, and things worked well. Didn't <a class="user-mention" data-hovercard-type="user" data-hovercard-url="/users/kazuho/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kazuho">@kazuho</a> <a href="https://github.com/kazuho">https://github.com/kazuho</a> also use Reno?</p>
</blockquote>
<p>Just to clarify, in our experiment, we reduced the ACK frequency from the default (2) to <code>max(1/8 cwnd, 3 MTU)</code> after leaving slow start, then updated it every 4 PTO. I <em>think</em> that would work fine on a high-bandwidth, stable network. But I am not sure if it would work as well as ack2 on all network conditions.</p>
<p>Anyways, I'd explain our experiment as an optimization of ack 2, as it was reduction of ack rate after leaving slow start. I think that that was a sensible choice, because IIUC having frequent acks during slow start is essential.</p>
<p>Assuming that we'd prefer using ack 2 during slow start, the question is if we need to hard-code in the base draft how to <em>optimize</em> after leaving slow start. While I agree that continuing to use ack 2 after slow start is concerning for certain networks, I am reluctant to spending time on looking for such a fixed set of values across diverse networks (including much slower links or lossy ones).</p>
<p>Rather, my preference goes to shipping the base-draft as-is, then moving on to finalize the ack-frequency frame. I think we can assume most if not all of the popular clients to support the ack-frequency frame. Then, it becomes less of a question what the default in the base-draft is.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/issues/3529#issuecomment-636585635">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3HEBFGLHVNPASLEPLRUMJZXANCNFSM4LOJ4RQA">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYI44NE26ATI7J6KA3RUMJZXA5CNFSM4LOJ4RQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEXYYNIY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-636585635",
"url": "https://github.com/quicwg/base-drafts/issues/3529#issuecomment-636585635",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed46d9bad7a1_46683fd459acd95c2688f5--


From nobody Sun May 31 19:57:12 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 66BD53A0B3B for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:57:05 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.101
X-Spam-Level: 
X-Spam-Status: No, score=-8.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 BR4EOZEwq-JQ for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 19:57:02 -0700 (PDT)
Received: from out-21.smtp.github.com (out-21.smtp.github.com [192.30.252.204]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 96CFA3A0B22 for <quic-issues@ietf.org>; Sun, 31 May 2020 19:57:02 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id D835CA0C4B for <quic-issues@ietf.org>; Sun, 31 May 2020 19:57:01 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590980221; bh=ByO/L4fezxpv/fHqx7bsCHxRiXMGtbNX5Ww+z+mGpLY=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=rjAHo5gjfexB0UFFhc76gCjssdKwvZqqxaxoD1zPqROVzrjzzN1GnXYh5LKP7PVDg wr+e/bvROCuzX3Ypb2ZkFJaCcjxhdbjLPdLmKAbvbE75rEfcpAOuM68CTMMidd2ecg erZor5rdK3tyLbzDGx2MUOwAg0j1QDpT2CRNaGow=
Date: Sun, 31 May 2020 19:57:01 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK76SF5OAIG232YZDAN44BHX3EVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/421566019@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed46e7dc673a_36fb3fac520cd968167817"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/5FIVWcwh-9DwWUJS_Wtwn7QkOF0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 02:57:12 -0000

----==_mimepart_5ed46e7dc673a_36fb3fac520cd968167817
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar commented on this pull request.

Thank you for your changes! I think it might be useful to distinguish the "IP packet" from how we commonly use "packet", so I propose (i) simply use "PMTU probe", and (ii) saying explicitly what that refers to. I've made some suggestions through the text to this end; see what you think.

> @@ -3795,37 +3795,48 @@ later time in the connection.
 # Packet Size {#packet-size}
 
 The QUIC packet size includes the QUIC header and protected payload, but not the
-UDP or IP header.
+UDP or IP headers.
+
+QUIC depends upon a minimum IP packet size of at least 1280 bytes.  This is the
+IPv6 minimum size {{?RFC8200}} and is also supported by most modern IPv4
+networks.  Assuming the minimum IP header size, this results in a QUIC maximum
+packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4.
+
+The QUIC maximum packet size is the largest size of QUIC packet that can be sent
+across a network path using a single packet. Any maximum packet size larger than
+1200 bytes can be discovered using PMTUD/DPLPMTUD.

expand/cite for PMTUD/DPLPMTUD. I don't think it's been introduced before.

>  An endpoint SHOULD use Datagram Packetization Layer PMTU Discovery
 ({{!DPLPMTUD=I-D.ietf-tsvwg-datagram-plpmtud}}) or implement Path MTU Discovery
 (PMTUD) {{!RFC1191}} {{!RFC8201}} to determine whether the path to a destination

Move this above to where PMTUD and DPLPMTUD are used for the first time.

> +bytes, it MUST immediately cease sending QUIC packets, except for PMTU probe
+packets, on the affected path.  An endpoint MAY terminate the connection if an

```suggestion
bytes, it MUST immediately cease sending QUIC packets, except for those in PMTU
probes, on the affected path.  An endpoint MAY terminate the connection if an
```

> +PMTU probe packets for DPLPMTUD that use the PADDING frame implement "Probing
+using padding data", as defined in Section 4.1 of {{!DPLPMTUD}}.

```suggestion
PMTU probes for DPLPMTUD that use the PADDING frame implement "Probing
using padding data", as defined in Section 4.1 of {{!DPLPMTUD}}.
```

> +Both PMTUD and DPLPMTUD send IP packets that are larger than the current maximum
+packet size.  Aside from these PMTU probe packets, all QUIC packets SHOULD be
+sized to fit within the maximum packet size to avoid the packet being fragmented
+or dropped {{?RFC8085}}.

```suggestion
Both PMTUD and DPLPMTUD send IP packets that are larger than the current maximum
packet size.  We refer to these packets as PMTU probes. All QUIC packets that are not
in a PMTU probe SHOULD be sized to fit within the maximum packet size to avoid the
packet being fragmented or dropped {{?RFC8085}}.
```

>  apply if these messages are used by DPLPMTUD.
 
 
-### PMTU Probes Containing Source Connection ID {#pmtu-probes-src-cid}
+## Sending QUIC PMTU Probe Packets
+
+PMTU probe packets are ack-eliciting packets.

```suggestion
PMTU probes contain ack-eliciting packets.
```

>  apply if these messages are used by DPLPMTUD.
 
 
-### PMTU Probes Containing Source Connection ID {#pmtu-probes-src-cid}
+## Sending QUIC PMTU Probe Packets
+
+PMTU probe packets are ack-eliciting packets.
+
+Endpoints could limit the content of probe packets to PING and PADDING frames as

```suggestion
Endpoints could limit the content of PMTU probes to PING and PADDING frames as
```

>  apply if these messages are used by DPLPMTUD.
 
 
-### PMTU Probes Containing Source Connection ID {#pmtu-probes-src-cid}
+## Sending QUIC PMTU Probe Packets
+
+PMTU probe packets are ack-eliciting packets.
+
+Endpoints could limit the content of probe packets to PING and PADDING frames as
+packets that are larger than the current maximum packet size are more likely to
+be dropped by the network.   Loss of a QUIC packet that is carried in a PMTU
+probe packet is therefore not a reliable indication of congestion and SHOULD NOT

```suggestion
probe is therefore not a reliable indication of congestion and SHOULD NOT
```

> -packets are likely to require that the connection ID be included in PMTU probe
-packets to route any resulting ICMP messages ({{icmp-pmtud}}) back to the
-correct endpoint.  However, only long header packets ({{long-header}}) contain
-source connection IDs, and long header packets are not decrypted or acknowledged
-by the peer once the handshake is complete.
-
-One way to construct a probe for the path MTU is to coalesce (see
-{{packet-coalesce}}) a Handshake packet ({{packet-handshake}}) with a short
-header packet in a single UDP datagram.  If the UDP datagram reaches the
-endpoint, the Handshake packet will be ignored, but the short header packet will
-be acknowledged.  If the UDP datagram causes an ICMP message to be sent, the
-first part of the datagram will be quoted in that message.  If the source
-connection ID is within the quoted portion of the UDP datagram, that could be
-used for routing.
+packets are likely to require that the connection ID be included in
+PMTU probe packets to route any resulting ICMP messages ({{icmp-pmtud}}) back to

```suggestion
PMTU probes to route any resulting ICMP messages ({{icmp-pmtud}}) back to
```

> -
-One way to construct a probe for the path MTU is to coalesce (see
-{{packet-coalesce}}) a Handshake packet ({{packet-handshake}}) with a short
-header packet in a single UDP datagram.  If the UDP datagram reaches the
-endpoint, the Handshake packet will be ignored, but the short header packet will
-be acknowledged.  If the UDP datagram causes an ICMP message to be sent, the
-first part of the datagram will be quoted in that message.  If the source
-connection ID is within the quoted portion of the UDP datagram, that could be
-used for routing.
+packets are likely to require that the connection ID be included in
+PMTU probe packets to route any resulting ICMP messages ({{icmp-pmtud}}) back to
+the correct endpoint.  However, only long header packets ({{long-header}})
+contain the Source Connection ID field, and long header packets are not
+decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe packet is to coalesce (see

```suggestion
One way to construct a PMTU probe is to coalesce (see
```

> -header packet in a single UDP datagram.  If the UDP datagram reaches the
-endpoint, the Handshake packet will be ignored, but the short header packet will
-be acknowledged.  If the UDP datagram causes an ICMP message to be sent, the
-first part of the datagram will be quoted in that message.  If the source
-connection ID is within the quoted portion of the UDP datagram, that could be
-used for routing.
+packets are likely to require that the connection ID be included in
+PMTU probe packets to route any resulting ICMP messages ({{icmp-pmtud}}) back to
+the correct endpoint.  However, only long header packets ({{long-header}})
+contain the Source Connection ID field, and long header packets are not
+decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe packet is to coalesce (see
+{{packet-coalesce}}) a packet with a long header, such as a Handshake or 0-RTT
+packet ({{long-header}}), with a short header packet in a single UDP datagram.
+If the resulting PMTU probe packet reaches the endpoint, the packet with the

```suggestion
If the resulting PMTU probe reaches the endpoint, the packet with the
```

> -be acknowledged.  If the UDP datagram causes an ICMP message to be sent, the
-first part of the datagram will be quoted in that message.  If the source
-connection ID is within the quoted portion of the UDP datagram, that could be
-used for routing.
+packets are likely to require that the connection ID be included in
+PMTU probe packets to route any resulting ICMP messages ({{icmp-pmtud}}) back to
+the correct endpoint.  However, only long header packets ({{long-header}})
+contain the Source Connection ID field, and long header packets are not
+decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe packet is to coalesce (see
+{{packet-coalesce}}) a packet with a long header, such as a Handshake or 0-RTT
+packet ({{long-header}}), with a short header packet in a single UDP datagram.
+If the resulting PMTU probe packet reaches the endpoint, the packet with the
+long header will be ignored, but the short header packet will be acknowledged.
+If the UDP datagram causes an ICMP message to be sent, the first part of the

```suggestion
If the PMTU probe causes an ICMP message to be sent, the first part of the
```

> -first part of the datagram will be quoted in that message.  If the source
-connection ID is within the quoted portion of the UDP datagram, that could be
-used for routing.
+packets are likely to require that the connection ID be included in
+PMTU probe packets to route any resulting ICMP messages ({{icmp-pmtud}}) back to
+the correct endpoint.  However, only long header packets ({{long-header}})
+contain the Source Connection ID field, and long header packets are not
+decrypted or acknowledged by the peer once the handshake is complete.
+
+One way to construct a PMTU probe packet is to coalesce (see
+{{packet-coalesce}}) a packet with a long header, such as a Handshake or 0-RTT
+packet ({{long-header}}), with a short header packet in a single UDP datagram.
+If the resulting PMTU probe packet reaches the endpoint, the packet with the
+long header will be ignored, but the short header packet will be acknowledged.
+If the UDP datagram causes an ICMP message to be sent, the first part of the
+datagram will be quoted in that message.  If the Source Connection ID field is

```suggestion
probe will be quoted in that message.  If the Source Connection ID field is
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-421566019
----==_mimepart_5ed46e7dc673a_36fb3fac520cd968167817
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@janaiyengar</b> commented on this pull request.</p>=0D
=0D
<p>Thank you for your changes! I think it might be useful to distinguish =
the "IP packet" from how we commonly use "packet", so I propose (i) simpl=
y use "PMTU probe", and (ii) saying explicitly what that refers to. I've =
made some suggestions through the text to this end; see what you think.</=
p><hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r433019505">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; @@ -3795,37 +3795,48 @@ later time in the =
connection.=0D
 # Packet Size {#packet-size}=0D
 =0D
 The QUIC packet size includes the QUIC header and protected payload, but=
 not the=0D
-UDP or IP header.=0D
+UDP or IP headers.=0D
+=0D
+QUIC depends upon a minimum IP packet size of at least 1280 bytes.  This=
 is the=0D
+IPv6 minimum size {{?RFC8200}} and is also supported by most modern IPv4=
=0D
+networks.  Assuming the minimum IP header size, this results in a QUIC m=
aximum=0D
+packet size of 1232 bytes for IPv6 and 1252 bytes for IPv4.=0D
+=0D
+The QUIC maximum packet size is the largest size of QUIC packet that can=
 be sent=0D
+across a network path using a single packet. Any maximum packet size lar=
ger than=0D
+1200 bytes can be discovered using PMTUD/DPLPMTUD.=0D
</pre>=0D
<p>expand/cite for PMTUD/DPLPMTUD. I don't think it's been introduced bef=
ore.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r433019739">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  An endpoint SHOULD use Datagram Packetiza=
tion Layer PMTU Discovery=0D
 ({{!DPLPMTUD=3DI-D.ietf-tsvwg-datagram-plpmtud}}) or implement Path MTU =
Discovery=0D
 (PMTUD) {{!RFC1191}} {{!RFC8201}} to determine whether the path to a des=
tination=0D
</pre>=0D
<p>Move this above to where PMTUD and DPLPMTUD are used for the first tim=
e.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r433020283">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +bytes, it MUST immediately cease sending =
QUIC packets, except for PMTU probe=0D
+packets, on the affected path.  An endpoint MAY terminate the connection=
 if an=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-bytes, it MUST immediately cease sending QUIC=
 packets, except for PMTU probe=0D
-packets, on the affected path.  An endpoint MAY terminate the connection=
 if an=0D
+bytes, it MUST immediately cease sending QUIC packets, except for those =
in PMTU=0D
+probes, on the affected path.  An endpoint MAY terminate the connection =
if an=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r433020414">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +PMTU probe packets for DPLPMTUD that use =
the PADDING frame implement &quot;Probing=0D
+using padding data&quot;, as defined in Section 4.1 of {{!DPLPMTUD}}.=0D=

</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-PMTU probe packets for DPLPMTUD that use the =
PADDING frame implement "Probing=0D
-using padding data", as defined in Section 4.1 of {{!DPLPMTUD}}.=0D
+PMTU probes for DPLPMTUD that use the PADDING frame implement "Probing=0D=

+using padding data", as defined in Section 4.1 of {{!DPLPMTUD}}.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r433020948">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; +Both PMTUD and DPLPMTUD send IP packets t=
hat are larger than the current maximum=0D
+packet size.  Aside from these PMTU probe packets, all QUIC packets SHOU=
LD be=0D
+sized to fit within the maximum packet size to avoid the packet being fr=
agmented=0D
+or dropped {{?RFC8085}}.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-Both PMTUD and DPLPMTUD send IP packets that =
are larger than the current maximum=0D
-packet size.  Aside from these PMTU probe packets, all QUIC packets SHOU=
LD be=0D
-sized to fit within the maximum packet size to avoid the packet being fr=
agmented=0D
-or dropped {{?RFC8085}}.=0D
+Both PMTUD and DPLPMTUD send IP packets that are larger than the current=
 maximum=0D
+packet size.  We refer to these packets as PMTU probes. All QUIC packets=
 that are not=0D
+in a PMTU probe SHOULD be sized to fit within the maximum packet size to=
 avoid the=0D
+packet being fragmented or dropped {{?RFC8085}}.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r433021452">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  apply if these messages are used by DPLPM=
TUD.=0D
 =0D
 =0D
-### PMTU Probes Containing Source Connection ID {#pmtu-probes-src-cid}=0D=

+## Sending QUIC PMTU Probe Packets=0D
+=0D
+PMTU probe packets are ack-eliciting packets.=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-PMTU probe packets are ack-eliciting packets.=
=0D
+PMTU probes contain ack-eliciting packets.=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r433021506">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  apply if these messages are used by DPLPM=
TUD.=0D
 =0D
 =0D
-### PMTU Probes Containing Source Connection ID {#pmtu-probes-src-cid}=0D=

+## Sending QUIC PMTU Probe Packets=0D
+=0D
+PMTU probe packets are ack-eliciting packets.=0D
+=0D
+Endpoints could limit the content of probe packets to PING and PADDING f=
rames as=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-Endpoints could limit the content of probe pa=
ckets to PING and PADDING frames as=0D
+Endpoints could limit the content of PMTU probes to PING and PADDING fra=
mes as=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r433021648">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt;  apply if these messages are used by DPLPM=
TUD.=0D
 =0D
 =0D
-### PMTU Probes Containing Source Connection ID {#pmtu-probes-src-cid}=0D=

+## Sending QUIC PMTU Probe Packets=0D
+=0D
+PMTU probe packets are ack-eliciting packets.=0D
+=0D
+Endpoints could limit the content of probe packets to PING and PADDING f=
rames as=0D
+packets that are larger than the current maximum packet size are more li=
kely to=0D
+be dropped by the network.   Loss of a QUIC packet that is carried in a =
PMTU=0D
+probe packet is therefore not a reliable indication of congestion and SH=
OULD NOT=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-probe packet is therefore not a reliable indi=
cation of congestion and SHOULD NOT=0D
+probe is therefore not a reliable indication of congestion and SHOULD NO=
T=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r433021737">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -packets are likely to require that the co=
nnection ID be included in PMTU probe=0D
-packets to route any resulting ICMP messages ({{icmp-pmtud}}) back to th=
e=0D
-correct endpoint.  However, only long header packets ({{long-header}}) c=
ontain=0D
-source connection IDs, and long header packets are not decrypted or ackn=
owledged=0D
-by the peer once the handshake is complete.=0D
-=0D
-One way to construct a probe for the path MTU is to coalesce (see=0D
-{{packet-coalesce}}) a Handshake packet ({{packet-handshake}}) with a sh=
ort=0D
-header packet in a single UDP datagram.  If the UDP datagram reaches the=
=0D
-endpoint, the Handshake packet will be ignored, but the short header pac=
ket will=0D
-be acknowledged.  If the UDP datagram causes an ICMP message to be sent,=
 the=0D
-first part of the datagram will be quoted in that message.  If the sourc=
e=0D
-connection ID is within the quoted portion of the UDP datagram, that cou=
ld be=0D
-used for routing.=0D
+packets are likely to require that the connection ID be included in=0D
+PMTU probe packets to route any resulting ICMP messages ({{icmp-pmtud}})=
 back to=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-PMTU probe packets to route any resulting ICM=
P messages ({{icmp-pmtud}}) back to=0D
+PMTU probes to route any resulting ICMP messages ({{icmp-pmtud}}) back t=
o=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r433021777">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -=0D
-One way to construct a probe for the path MTU is to coalesce (see=0D
-{{packet-coalesce}}) a Handshake packet ({{packet-handshake}}) with a sh=
ort=0D
-header packet in a single UDP datagram.  If the UDP datagram reaches the=
=0D
-endpoint, the Handshake packet will be ignored, but the short header pac=
ket will=0D
-be acknowledged.  If the UDP datagram causes an ICMP message to be sent,=
 the=0D
-first part of the datagram will be quoted in that message.  If the sourc=
e=0D
-connection ID is within the quoted portion of the UDP datagram, that cou=
ld be=0D
-used for routing.=0D
+packets are likely to require that the connection ID be included in=0D
+PMTU probe packets to route any resulting ICMP messages ({{icmp-pmtud}})=
 back to=0D
+the correct endpoint.  However, only long header packets ({{long-header}=
})=0D
+contain the Source Connection ID field, and long header packets are not=0D=

+decrypted or acknowledged by the peer once the handshake is complete.=0D=

+=0D
+One way to construct a PMTU probe packet is to coalesce (see=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-One way to construct a PMTU probe packet is t=
o coalesce (see=0D
+One way to construct a PMTU probe is to coalesce (see=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r433021819">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -header packet in a single UDP datagram.  =
If the UDP datagram reaches the=0D
-endpoint, the Handshake packet will be ignored, but the short header pac=
ket will=0D
-be acknowledged.  If the UDP datagram causes an ICMP message to be sent,=
 the=0D
-first part of the datagram will be quoted in that message.  If the sourc=
e=0D
-connection ID is within the quoted portion of the UDP datagram, that cou=
ld be=0D
-used for routing.=0D
+packets are likely to require that the connection ID be included in=0D
+PMTU probe packets to route any resulting ICMP messages ({{icmp-pmtud}})=
 back to=0D
+the correct endpoint.  However, only long header packets ({{long-header}=
})=0D
+contain the Source Connection ID field, and long header packets are not=0D=

+decrypted or acknowledged by the peer once the handshake is complete.=0D=

+=0D
+One way to construct a PMTU probe packet is to coalesce (see=0D
+{{packet-coalesce}}) a packet with a long header, such as a Handshake or=
 0-RTT=0D
+packet ({{long-header}}), with a short header packet in a single UDP dat=
agram.=0D
+If the resulting PMTU probe packet reaches the endpoint, the packet with=
 the=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-If the resulting PMTU probe packet reaches th=
e endpoint, the packet with the=0D
+If the resulting PMTU probe reaches the endpoint, the packet with the=0D=

</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r433021897">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -be acknowledged.  If the UDP datagram cau=
ses an ICMP message to be sent, the=0D
-first part of the datagram will be quoted in that message.  If the sourc=
e=0D
-connection ID is within the quoted portion of the UDP datagram, that cou=
ld be=0D
-used for routing.=0D
+packets are likely to require that the connection ID be included in=0D
+PMTU probe packets to route any resulting ICMP messages ({{icmp-pmtud}})=
 back to=0D
+the correct endpoint.  However, only long header packets ({{long-header}=
})=0D
+contain the Source Connection ID field, and long header packets are not=0D=

+decrypted or acknowledged by the peer once the handshake is complete.=0D=

+=0D
+One way to construct a PMTU probe packet is to coalesce (see=0D
+{{packet-coalesce}}) a packet with a long header, such as a Handshake or=
 0-RTT=0D
+packet ({{long-header}}), with a short header packet in a single UDP dat=
agram.=0D
+If the resulting PMTU probe packet reaches the endpoint, the packet with=
 the=0D
+long header will be ignored, but the short header packet will be acknowl=
edged.=0D
+If the UDP datagram causes an ICMP message to be sent, the first part of=
 the=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-If the UDP datagram causes an ICMP message to=
 be sent, the first part of the=0D
+If the PMTU probe causes an ICMP message to be sent, the first part of t=
he=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3702#discussi=
on_r433021954">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -first part of the datagram will be quoted=
 in that message.  If the source=0D
-connection ID is within the quoted portion of the UDP datagram, that cou=
ld be=0D
-used for routing.=0D
+packets are likely to require that the connection ID be included in=0D
+PMTU probe packets to route any resulting ICMP messages ({{icmp-pmtud}})=
 back to=0D
+the correct endpoint.  However, only long header packets ({{long-header}=
})=0D
+contain the Source Connection ID field, and long header packets are not=0D=

+decrypted or acknowledged by the peer once the handshake is complete.=0D=

+=0D
+One way to construct a PMTU probe packet is to coalesce (see=0D
+{{packet-coalesce}}) a packet with a long header, such as a Handshake or=
 0-RTT=0D
+packet ({{long-header}}), with a short header packet in a single UDP dat=
agram.=0D
+If the resulting PMTU probe packet reaches the endpoint, the packet with=
 the=0D
+long header will be ignored, but the short header packet will be acknowl=
edged.=0D
+If the UDP datagram causes an ICMP message to be sent, the first part of=
 the=0D
+datagram will be quoted in that message.  If the Source Connection ID fi=
eld is=0D
</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-datagram will be quoted in that message.  If =
the Source Connection ID field is=0D
+probe will be quoted in that message.  If the Source Connection ID field=
 is=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3702#pullrequestreview-421566019">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K25VNVUIH5FA5YCIXDRUMKH3ANCNFSM4NLOZCVQ">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK2XMRNFZCLDIH7YULDRUMKH3A5CNFSM4=
NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODEQJMQY.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestrev=
iew-421566019",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview=
-421566019",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ed46e7dc673a_36fb3fac520cd968167817--


From nobody Sun May 31 20:06:32 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 7C01C3A0B39 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 20:06:31 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 8h3Jsk78BP21 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 20:06:30 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 606B63A0B38 for <quic-issues@ietf.org>; Sun, 31 May 2020 20:06:30 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id 4FE776A10F5 for <quic-issues@ietf.org>; Sun, 31 May 2020 20:06:29 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590980789; bh=pnN7AaJEGsjoBXDg7DJ0dsZSMN+jUbBZjqtnwCFTTZ4=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=x24O3myAnLDLWAA/kt9k7tcAks9O+i3MGL/Hz8VHSgifEetr9rpsgP1BF/HLwiVF/ QqWSeu3IvAsqisoE81xNLT80ibJ7P67Ibwy9DofcgWLu1TTALolulvVa005kEHKzeR F2AmBH6aF/PRjz6O9aRMWbStW176k1yctmeC7Poc=
Date: Sun, 31 May 2020 20:06:29 -0700
From: Marten Seemann <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK73XGGR6OZZXMIFQ6N44BI3LEVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/421571073@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed470b541038_42943f7ed6ccd960286485"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: marten-seemann
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/kguxafrcmxIN1xwlz5oMw3TQss0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 03:06:32 -0000

----==_mimepart_5ed470b541038_42943f7ed6ccd960286485
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@marten-seemann approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-421571073
----==_mimepart_5ed470b541038_42943f7ed6ccd960286485
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@marten-seemann</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-421571073">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK4RUCUWJCPWTFICY2DRUMLLLANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKZVWOGBBOBNX7BJDO3RUMLLLA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEQKUAI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-421571073",
"url": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-421571073",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed470b541038_42943f7ed6ccd960286485--


From nobody Sun May 31 21:46:47 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 6EDC93A0CB7 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 21:46:45 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8.101
X-Spam-Level: 
X-Spam-Status: No, score=-8.101 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, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 GJA1mrHVjpf4 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 21:46:44 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D58333A0CB5 for <quic-issues@ietf.org>; Sun, 31 May 2020 21:46:43 -0700 (PDT)
Received: from github-lowworker-275fa97.va3-iad.github.net (github-lowworker-275fa97.va3-iad.github.net [10.48.17.64]) by smtp.github.com (Postfix) with ESMTP id 7D1F75205E5 for <quic-issues@ietf.org>; Sun, 31 May 2020 21:46:42 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590986802; bh=amf9VtG2LgntZjerXoFQCQfmqk8jRK2n297pO8RYxrU=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=cHU8BvePgAbSyZt0sqKdSNoLMeKdP6dVJZR2qnMZXecGUzwNorl9YpOfZNhlkXAvb bLNL3Yx+yiYHE2TL1aC1gMrL7YgtW2kxnYpIAH96NeU18P1QfJAC5YDLVBhjf6nuww pdB3jF+FM4hi1hP0sSohKAtHxnyasC1ho05LcgiA=
Date: Sun, 31 May 2020 21:46:42 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2UIQSFNOAS6BBMEHF44BUTFEVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/421589751@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed488326ce4c_58d53ff7226cd96016256d"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/_eK-abl6gNgKasoWrTmUbhv3AbQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 04:46:46 -0000

----==_mimepart_5ed488326ce4c_58d53ff7226cd96016256d
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> -received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending
+rate. In both cases, delaying acknowledgment can adversely affect performance.
+
+On the other hand, reducing the frequency of packets that carrying only
+acknowledgements reduces packet processing cost at both endpoints. It can also

Now that I read this again, I'm actually not sure what you mean.  Do you mean packet processing cost as in the cost of receiving a large number of data packets, so fewer ACK-only packets reduces that cost?

I was thinking you were saying it reduces the number of ACKs that have to be received and processed.

Either way, I have a small suggestion.
```suggestion
acknowledgements reduces packet transmission and processing cost at both endpoints. It can also
```

> -received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their
+congestion window. In both cases, delaying acknowledgments can adversely affect
+performance.
+
+On the other hand, reducing the frequency of packets that carrying only

```suggestion
On the other hand, reducing the frequency of packets that carry only
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview-421589751
----==_mimepart_5ed488326ce4c_58d53ff7226cd96016256d
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<p></p>=0D
<p><b>@ianswett</b> commented on this pull request.</p>=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r433038904">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -received packet. Limiting ACK frames avoi=
ds an infinite feedback loop of=0D
-acknowledgements, which could prevent the connection from ever becoming =
idle.=0D
-However, the endpoint acknowledges non-ACK-eliciting packets when it sen=
ds an=0D
-ACK frame.=0D
+### Acknowledgement Frequency=0D
+=0D
+A receiver determines how frequently to send acknowledgements in respons=
e to=0D
+ack-eliciting packets. This determination involves a tradeoff.=0D
+=0D
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of=
=0D
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one =
in=0D
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their =
sending=0D
+rate. In both cases, delaying acknowledgment can adversely affect perfor=
mance.=0D
+=0D
+On the other hand, reducing the frequency of packets that carrying only=0D=

+acknowledgements reduces packet processing cost at both endpoints. It ca=
n also=0D
</pre>=0D
<p>Now that I read this again, I'm actually not sure what you mean.  Do y=
ou mean packet processing cost as in the cost of receiving a large number=
 of data packets, so fewer ACK-only packets reduces that cost?</p>=0D
<p>I was thinking you were saying it reduces the number of ACKs that have=
 to be received and processed.</p>=0D
<p>Either way, I have a small suggestion.</p>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-acknowledgements reduces packet processing co=
st at both endpoints. It can also=0D
+acknowledgements reduces packet transmission and processing cost at both=
 endpoints. It can also=0D
</pre>=0D
=0D
=0D
<hr>=0D
=0D
<p>In <a href=3D"https://github.com/quicwg/base-drafts/pull/3706#discussi=
on_r433038986">draft-ietf-quic-transport.md</a>:</p>=0D
<pre style=3D'color:#555'>&gt; -received packet. Limiting ACK frames avoi=
ds an infinite feedback loop of=0D
-acknowledgements, which could prevent the connection from ever becoming =
idle.=0D
-However, the endpoint acknowledges non-ACK-eliciting packets when it sen=
ds an=0D
-ACK frame.=0D
+### Acknowledgement Frequency=0D
+=0D
+A receiver determines how frequently to send acknowledgements in respons=
e to=0D
+ack-eliciting packets. This determination involves a tradeoff.=0D
+=0D
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of=
=0D
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one =
in=0D
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their=0D=

+congestion window. In both cases, delaying acknowledgments can adversely=
 affect=0D
+performance.=0D
+=0D
+On the other hand, reducing the frequency of packets that carrying only=0D=

</pre>=0D
=E2=AC=87=EF=B8=8F Suggested change=0D
<pre style=3D"color: #555">-On the other hand, reducing the frequency of =
packets that carrying only=0D
+On the other hand, reducing the frequency of packets that carry only=0D
</pre>=0D
=0D
=0D
<p style=3D"font-size:small;-webkit-text-size-adjust:none;color:#666;">&m=
dash;<br />You are receiving this because you are subscribed to this thre=
ad.<br />Reply to this email directly, <a href=3D"https://github.com/quic=
wg/base-drafts/pull/3706#pullrequestreview-421589751">view it on GitHub</=
a>, or <a href=3D"https://github.com/notifications/unsubscribe-auth/AFTOJ=
K3LVSPFUX75RTDJGGLRUMXDFANCNFSM4NMWAK7A">unsubscribe</a>.<img src=3D"http=
s://github.com/notifications/beacon/AFTOJK5EKRA5NEWSXS3MV33RUMXDFA5CNFSM4=
NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZ=
GODEQPF5Y.gif" height=3D"1" width=3D"1" alt=3D"" /></p>=0D
<script type=3D"application/ld+json">[=0D
{=0D
"@context": "http://schema.org",=0D
"@type": "EmailMessage",=0D
"potentialAction": {=0D
"@type": "ViewAction",=0D
"target": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestrev=
iew-421589751",=0D
"url": "https://github.com/quicwg/base-drafts/pull/3706#pullrequestreview=
-421589751",=0D
"name": "View Pull Request"=0D
},=0D
"description": "View this Pull Request on GitHub",=0D
"publisher": {=0D
"@type": "Organization",=0D
"name": "GitHub",=0D
"url": "https://github.com"=0D
}=0D
}=0D
]</script>=

----==_mimepart_5ed488326ce4c_58d53ff7226cd96016256d--


From nobody Sun May 31 21:50:11 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 775763A0CBD for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 21:50:10 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.696
X-Spam-Level: 
X-Spam-Status: No, score=-1.696 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, HTML_IMAGE_ONLY_28=1.404, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, SPF_HELO_NONE=0.001, SPF_PASS=-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 BMqD6RcL5Y3t for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 21:50:09 -0700 (PDT)
Received: from out-24.smtp.github.com (out-24.smtp.github.com [192.30.252.207]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D59DC3A0CBC for <quic-issues@ietf.org>; Sun, 31 May 2020 21:50:08 -0700 (PDT)
Received: from github-lowworker-c53a806.ac4-iad.github.net (github-lowworker-c53a806.ac4-iad.github.net [10.52.23.45]) by smtp.github.com (Postfix) with ESMTP id 10B346A0DFC for <quic-issues@ietf.org>; Sun, 31 May 2020 21:50:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590987008; bh=ttfWc9gWo9IaiWlST2+JnXo3JJpFIRXgxtmoH7lLbHg=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=SkJjZpgN/Zn1n3DZzpnN1rqaxbR7FwEEw5tHdETMVo7E8Zm6S/GB5hy1XFYyUDwYY tI3FS05rYnWqTN5CWg2Tbb8auTbLl9z8cV6BjYxVhZRcjwg7u/FDwZjR1xANVjn14G CIQw/YLaxdk1bcyqLTheF9CwRDE7IAGrbpzAvJFM=
Date: Sun, 31 May 2020 21:50:08 -0700
From: ianswett <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6DA6HJVFSRXG22Z7V44BU77EVBNHHCKUVTR4@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/review/421590979@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed48900f6b_364d3fb5d62cd9601364f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: ianswett
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xVu3MFn5814AV7kUQJTSXpGOrDQ>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 04:50:10 -0000

----==_mimepart_5ed48900f6b_364d3fb5d62cd9601364f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@ianswett commented on this pull request.



> -limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending

Thanks, I think that's better, but I also think it doesn't highlight a key point, which is if a receiver delays sending an ACK for Xms, the sender may be blocked from sending for Xms.

Except for slow start, I don't think the congestion window itself is the issue, but rather the available congestion window.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706#discussion_r433039899
----==_mimepart_5ed48900f6b_364d3fb5d62cd9601364f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@ianswett</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/quicwg/base-drafts/pull/3706#discussion_r433039899">draft-ietf-quic-transport.md</a>:</p>
<pre style='color:#555'>&gt; -limits on how frequently they can be sent.  An endpoint MUST NOT send more than
-one ACK-frame-only packet in response to receiving an ack-eliciting packet.  An
-endpoint MUST NOT send a non-ack-eliciting packet in response to a
-non-ack-eliciting packet, even if there are packet gaps which precede the
-received packet. Limiting ACK frames avoids an infinite feedback loop of
-acknowledgements, which could prevent the connection from ever becoming idle.
-However, the endpoint acknowledges non-ACK-eliciting packets when it sends an
-ACK frame.
+### Acknowledgement Frequency
+
+A receiver determines how frequently to send acknowledgements in response to
+ack-eliciting packets. This determination involves a tradeoff.
+
+Endpoints rely on timely acknowledgment to detect loss; see Section 5 of
+{{QUIC-RECOVERY}}. Window-based congestion controllers, such as the one in
+Section 6 of {{QUIC-RECOVERY}}, rely on acknowledgments to manage their sending
</pre>
<p>Thanks, I think that's better, but I also think it doesn't highlight a key point, which is if a receiver delays sending an ACK for Xms, the sender may be blocked from sending for Xms.</p>
<p>Except for slow start, I don't think the congestion window itself is the issue, but rather the available congestion window.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3706#discussion_r433039899">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6I32UIZDU7GOIREUDRUMXQBANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK7PSJJE7JRV6AHGOQLRUMXQBA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEQPPQY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706#discussion_r433039899",
"url": "https://github.com/quicwg/base-drafts/pull/3706#discussion_r433039899",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed48900f6b_364d3fb5d62cd9601364f--


From nobody Sun May 31 22:33:43 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 E694A3A0CFD for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 22:33:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 9z06FYP_RI7i for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 22:33:41 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9BC483A0CFC for <quic-issues@ietf.org>; Sun, 31 May 2020 22:33:41 -0700 (PDT)
Received: from github-lowworker-e8b54ca.ac4-iad.github.net (github-lowworker-e8b54ca.ac4-iad.github.net [10.52.23.39]) by smtp.github.com (Postfix) with ESMTP id B58795204D3 for <quic-issues@ietf.org>; Sun, 31 May 2020 22:33:40 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590989620; bh=FWxL2466tgoT4T679BAjRA4bDyT2ZcfA62XHiDliG/I=; h=Date:From:To:Subject:From; b=eqy75dBnxMJs2dndnIgD9wo59qfHHIcpjipZ4v8bJRSoxLvEMp7x/F9BiwbA7kgXD 80Af/EXLt2brMhzV2jTP9SNrFBi9nyIgLJZn4LdeSupTuAZhXn7m5Cipnz+l9BD4mm x4VrEVUUoXqaJnekzOpCFfaNEfmtoEMQViQsgkI8=
Date: Sun, 31 May 2020 22:33:40 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/dplpmtud-merge/8f4088-6ba055@github.com>
Subject: [quicwg/base-drafts] 6ba055: Many more changes based on review
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/xFfhcPQB6vamKOmkq0YfgBwUc84>
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: Mon, 01 Jun 2020 05:33:43 -0000

  Branch: refs/heads/dplpmtud-merge
  Home:   https://github.com/quicwg/base-drafts
  Commit: 6ba0551df370230e638410d33f48422559d00054
      https://github.com/quicwg/base-drafts/commit/6ba0551df370230e638410d33f48422559d00054
  Author: Martin Thomson <mt@lowentropy.net>
  Date:   2020-06-01 (Mon, 01 Jun 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Many more changes based on review



From nobody Sun May 31 22:33:53 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 DC36E3A0CFD for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 22:33:51 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 V0BLgP9Prhvw for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 22:33:50 -0700 (PDT)
Received: from out-3.smtp.github.com (out-3.smtp.github.com [192.30.252.194]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 9221F3A0CFC for <quic-issues@ietf.org>; Sun, 31 May 2020 22:33:50 -0700 (PDT)
Received: from github-lowworker-f62aa54.va3-iad.github.net (github-lowworker-f62aa54.va3-iad.github.net [10.48.17.68]) by smtp.github.com (Postfix) with ESMTP id CAB9B2C0DB0 for <quic-issues@ietf.org>; Sun, 31 May 2020 22:33:49 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590989629; bh=o+JZ7eWTTjiSt2gmvyNvmCW4tyoLt/rFBdYiFIrmx2Q=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=LNlEVLn5DLxECUROrqKlZ/o9ZY84SCujhmNZWwSHNZzSm9JGF29t5wnlKGUEYm0zS WshRLnX6SwOGudijTP1eItF/D9j8IVfteqcLBGrK7M+fnwCZLviU/FiJfQ5fo5udUG xBhHTrCb3rCbf2dWrhaIRPZ7R55sRhrovIIdriYI=
Date: Sun, 31 May 2020 22:33:49 -0700
From: Martin Thomson <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/push/5156724783@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed4933dbb3a4_75f63f8f030cd95c2279f1"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinthomson
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/e1NRsM0V7VjHRgVLvgz1r2I3PWY>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 05:33:52 -0000

----==_mimepart_5ed4933dbb3a4_75f63f8f030cd95c2279f1
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@martinthomson pushed 1 commit.

6ba0551df370230e638410d33f48422559d00054  Many more changes based on review


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702/files/8f40887e4e248316813db3d6d5d66b18be38379b..6ba0551df370230e638410d33f48422559d00054

----==_mimepart_5ed4933dbb3a4_75f63f8f030cd95c2279f1
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/martinthomson" class="user-mention">@martinthomson</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/6ba0551df370230e638410d33f48422559d00054">6ba0551</a>  Many more changes based on review</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3702/files/8f40887e4e248316813db3d6d5d66b18be38379b..6ba0551df370230e638410d33f48422559d00054">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK3MILTXL654IV74XRTRUM4T3ANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK5XPKN3AUVRMD3FNNLRUM4T3A5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDGNJTGUZDMM2QOVZWQIZVGE2TMNZSGQ3TQMY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702/files/8f40887e4e248316813db3d6d5d66b18be38379b..6ba0551df370230e638410d33f48422559d00054",
"url": "https://github.com/quicwg/base-drafts/pull/3702/files/8f40887e4e248316813db3d6d5d66b18be38379b..6ba0551df370230e638410d33f48422559d00054",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ed4933dbb3a4_75f63f8f030cd95c2279f1--


From nobody Sun May 31 22:34:35 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 9BAB93A0CFF for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 22:34:33 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.102
X-Spam-Level: 
X-Spam-Status: No, score=-2.102 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, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 YS5ut-HYKC20 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 22:34:32 -0700 (PDT)
Received: from out-12.smtp.github.com (out-12.smtp.github.com [192.30.254.195]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 0F3A73A0CFE for <quic-issues@ietf.org>; Sun, 31 May 2020 22:34:32 -0700 (PDT)
Received: from github-lowworker-6b40fdd.va3-iad.github.net (github-lowworker-6b40fdd.va3-iad.github.net [10.48.16.64]) by smtp.github.com (Postfix) with ESMTP id 60A73120431 for <quic-issues@ietf.org>; Sun, 31 May 2020 22:34:31 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590989671; bh=UfKDKjrxPs50GbcEN89J5qBgMTqWY/hqYkbiEfHBJyo=; h=Date:From:To:Subject:From; b=NbquofKyE6l/9tH5ootmi7P6CiayKUjPFdkA19F3kOLgiHc4lscKDH5v3ONUQnfOX yVQCQYm/toeXMK9U5EJNfb1RbGi1BWj+Csi9pe60wNwUu7LubBr2Ipbj8SHDob7Wys fnLtXPYl0QRJHyuusNA1pFSGjGWjbMf5tv7ubATA=
Date: Sun, 31 May 2020 22:34:31 -0700
From: Martin Thomson <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/gh-pages/29f1dd-db5d66@github.com>
Subject: [quicwg/base-drafts] db5d66: Script updating gh-pages from 6ba0551d. [ci skip]
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/w8NO3X-k26RWD9FHEVp8rec3ZWQ>
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: Mon, 01 Jun 2020 05:34:34 -0000

  Branch: refs/heads/gh-pages
  Home:   https://github.com/quicwg/base-drafts
  Commit: db5d6618c3d7f2fe1bb5fe343e8e3755c09e05f8
      https://github.com/quicwg/base-drafts/commit/db5d6618c3d7f2fe1bb5fe343e8e3755c09e05f8
  Author: ID Bot <idbot@example.com>
  Date:   2020-06-01 (Mon, 01 Jun 2020)

  Changed paths:
    M dplpmtud-merge/draft-ietf-quic-transport.html
    M dplpmtud-merge/draft-ietf-quic-transport.txt
    M index.html

  Log Message:
  -----------
  Script updating gh-pages from 6ba0551d. [ci skip]



From nobody Sun May 31 23:23:03 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 E48253A0D46 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 23:23:01 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.042
X-Spam-Level: 
X-Spam-Status: No, score=-1.042 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, HTML_IMAGE_ONLY_12=2.059, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=no 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 jyqk_CJESADp for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 23:23:01 -0700 (PDT)
Received: from out-13.smtp.github.com (out-13.smtp.github.com [192.30.254.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id F099C3A0D45 for <quic-issues@ietf.org>; Sun, 31 May 2020 23:23:00 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 765A8260488 for <quic-issues@ietf.org>; Sun, 31 May 2020 23:23:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590992580; bh=ll6RmCMBSSixNVTweeKQ/XLCpPGv7MEqt/uMnes3gOk=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=iilQOr3OT/4DX4FY59cue/X9814vkYfJMnIzS/symXuyTuT1djVxguoEa+DKBobHs zB8MGTBfyQJl/HJiIsA+7kJzCkofkLGFtMTG2HedGUTdjRNg39p0W/fAJzKQyxDAJ6 NuVKUF5YRtRXtvAsHIcSpdbHdimw0/VzoKvZjvW0=
Date: Sun, 31 May 2020 23:23:00 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK6ITXTE34REN3HM4OF44B74JEVBNHHCKRI54E@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3702/review/421617422@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3702@github.com>
References: <quicwg/base-drafts/pull/3702@github.com>
Subject: Re: [quicwg/base-drafts] DPLPMTU merge tweaks (#3702)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed49ec431a9c_540c3fc8f56cd95c28926f"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/bixl6K0KtziUVYCxcUCqSTJ8Qis>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 06:23:02 -0000

----==_mimepart_5ed49ec431a9c_540c3fc8f56cd95c28926f
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar approved this pull request.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-421617422
----==_mimepart_5ed49ec431a9c_540c3fc8f56cd95c28926f
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p></p>
<p><b>@janaiyengar</b> approved this pull request.</p>



<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-421617422">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK6BEJYVNP5MGYVR3T3RUNCMJANCNFSM4NLOZCVQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYIQA4IW2236R6X4D3RUNCMJA5CNFSM4NLOZCV2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODEQV6DQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-421617422",
"url": "https://github.com/quicwg/base-drafts/pull/3702#pullrequestreview-421617422",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>
----==_mimepart_5ed49ec431a9c_540c3fc8f56cd95c28926f--


From nobody Sun May 31 23:24: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 599503A0D4F for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 23:24:54 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 coiCUvnYnKne for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 23:24:53 -0700 (PDT)
Received: from out-10.smtp.github.com (out-10.smtp.github.com [192.30.254.193]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 42D9C3A0D4B for <quic-issues@ietf.org>; Sun, 31 May 2020 23:24:53 -0700 (PDT)
Received: from github-lowworker-6349a71.ac4-iad.github.net (github-lowworker-6349a71.ac4-iad.github.net [10.52.18.20]) by smtp.github.com (Postfix) with ESMTP id 6410012028C for <quic-issues@ietf.org>; Sun, 31 May 2020 23:24:52 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590992692; bh=nQJNxdwKqQFB8DSFinjZbgsmwhzUsVc8cemT0lSIJ80=; h=Date:From:To:Subject:From; b=cmGcgXgWKKJtuLb998Z+1RMbo3wRDh9+bIIP9W5cVkVWKPQFJDj2UdKjU65qca5G4 f+tmNSQO8J3O3fDArqRtjiMeOwMrFpXkwruK3Jgrw9aOq3M2soDpK3e1T4H4+rOmFc W2RIkZWtd5AdZMfws2Yxhh+u/drBaEhrPUUDue+8=
Date: Sun, 31 May 2020 23:24:52 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/jri/ackf/3c9f34-76af22@github.com>
Subject: [quicwg/base-drafts] 76af22: Apply suggestions from code review
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wLbevFEt0qmlfX4ezUovgKSIZLE>
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: Mon, 01 Jun 2020 06:24:54 -0000

  Branch: refs/heads/jri/ackf
  Home:   https://github.com/quicwg/base-drafts
  Commit: 76af223d868f9d50662e00245cb2e167e25baec8
      https://github.com/quicwg/base-drafts/commit/76af223d868f9d50662e00245cb2e167e25baec8
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-31 (Sun, 31 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  Apply suggestions from code review

Co-authored-by: ianswett <ianswett@users.noreply.github.com>



From nobody Sun May 31 23:25:04 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 D4E973A0D4E for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 23:25:03 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.555
X-Spam-Level: 
X-Spam-Status: No, score=-1.555 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, HTML_IMAGE_ONLY_20=1.546, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 O6fy9TXFux8Z for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 23:25:02 -0700 (PDT)
Received: from out-5.smtp.github.com (out-5.smtp.github.com [192.30.252.196]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 56BE43A0D4B for <quic-issues@ietf.org>; Sun, 31 May 2020 23:25:02 -0700 (PDT)
Received: from github-lowworker-0f78100.ash1-iad.github.net (github-lowworker-0f78100.ash1-iad.github.net [10.56.25.48]) by smtp.github.com (Postfix) with ESMTP id E66CE960619 for <quic-issues@ietf.org>; Sun, 31 May 2020 23:25:00 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590992700; bh=xkY5NIBj0I34CQ2sJAiFThK+uWZ4qSCOS2GAWsttXC0=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=OnZjMKvfN8dajsoCX70zc6Cbu/Vn2LaIkinUvl1F3XajscyPDnGB+UjOmhsnpQ6R8 zGeRgC0NmEDG4aOAJr83IWpgZcDalqlWXJTu5yKD7NrjNnOdmNo1nvasSuD3AOhEqL B48Kirio0aHv/Xq01GOl42bLMVxOB6S/hjuH/JV4=
Date: Sun, 31 May 2020 23:25:00 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/push/5156877212@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed49f3cd59a5_4a793f853aacd95c2732c4"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/1dDfSaXVCbNrqePE9UjdjipWebg>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 06:25:04 -0000

----==_mimepart_5ed49f3cd59a5_4a793f853aacd95c2732c4
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar pushed 1 commit.

76af223d868f9d50662e00245cb2e167e25baec8  Apply suggestions from code review


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706/files/3c9f34272c60e7bd6607197bec94fcd889df83bc..76af223d868f9d50662e00245cb2e167e25baec8

----==_mimepart_5ed49f3cd59a5_4a793f853aacd95c2732c4
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/janaiyengar" class="user-mention">@janaiyengar</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/76af223d868f9d50662e00245cb2e167e25baec8">76af223</a>  Apply suggestions from code review</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3706/files/3c9f34272c60e7bd6607197bec94fcd889df83bc..76af223d868f9d50662e00245cb2e167e25baec8">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK35IQ5RB3TWAQK36NLRUNCTZANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJKYVGUWDEGHF233U5DTRUNCTZA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDIMRRHEZTINCQOVZWQIZVGE2TMOBXG4ZDCMQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706/files/3c9f34272c60e7bd6607197bec94fcd889df83bc..76af223d868f9d50662e00245cb2e167e25baec8",
"url": "https://github.com/quicwg/base-drafts/pull/3706/files/3c9f34272c60e7bd6607197bec94fcd889df83bc..76af223d868f9d50662e00245cb2e167e25baec8",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ed49f3cd59a5_4a793f853aacd95c2732c4--


From nobody Sun May 31 23:26:28 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 8B6C03A0D51 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 23:26:27 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.101
X-Spam-Level: 
X-Spam-Status: No, score=-2.101 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, RCVD_IN_MSPIKE_H2=-0.001, 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 xzhDJDu82RyN for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 23:26:25 -0700 (PDT)
Received: from out-15.smtp.github.com (out-15.smtp.github.com [192.30.254.198]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id D2BE43A0D4F for <quic-issues@ietf.org>; Sun, 31 May 2020 23:26:25 -0700 (PDT)
Received: from github-lowworker-45eca55.ac4-iad.github.net (github-lowworker-45eca55.ac4-iad.github.net [10.52.25.70]) by smtp.github.com (Postfix) with ESMTP id 705EB26047E for <quic-issues@ietf.org>; Sun, 31 May 2020 23:26:25 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590992785; bh=zxxabhkpU5QbArxInxNwrs0Arvs1AbaMkVadB32L3EM=; h=Date:From:To:Subject:From; b=cRa1OFhrQtAoxZ45a5iVbl3Ug/OESGuLFS35tMG+sn5yVZsWaLwHetPnUyz4IX1da /1YFoLbwsPW2EWy1LkwBG/SsoBWYzhCKZNKngFwvZMsTyPjlpjx6ATIUqpQLd55Htt 4hqWjT0+CoVckfXgXQAdZMIq3UCJOhUMEdTfJxGo=
Date: Sun, 31 May 2020 23:26:25 -0700
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/jri/ackf/76af22-3bbb56@github.com>
Subject: [quicwg/base-drafts] 3bbb56: reflow
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/-_xrq_VIZSL5_NwkSz_dbM7uBOU>
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: Mon, 01 Jun 2020 06:26:28 -0000

  Branch: refs/heads/jri/ackf
  Home:   https://github.com/quicwg/base-drafts
  Commit: 3bbb568d4860754976861809e9f313d5aaeb83d8
      https://github.com/quicwg/base-drafts/commit/3bbb568d4860754976861809e9f313d5aaeb83d8
  Author: Jana Iyengar <jri.ietf@gmail.com>
  Date:   2020-05-31 (Sun, 31 May 2020)

  Changed paths:
    M draft-ietf-quic-transport.md

  Log Message:
  -----------
  reflow



From nobody Sun May 31 23:26:37 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 D2B643A0D51 for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 23:26:36 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.009
X-Spam-Level: 
X-Spam-Status: No, score=-2.009 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, HTML_IMAGE_ONLY_16=1.092, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-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 AO8NJXbs9pdo for <quic-issues@ietfa.amsl.com>; Sun, 31 May 2020 23:26:35 -0700 (PDT)
Received: from out-19.smtp.github.com (out-19.smtp.github.com [192.30.252.202]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 568743A0D4F for <quic-issues@ietf.org>; Sun, 31 May 2020 23:26:35 -0700 (PDT)
Received: from github-lowworker-c5134a3.ac4-iad.github.net (github-lowworker-c5134a3.ac4-iad.github.net [10.52.23.55]) by smtp.github.com (Postfix) with ESMTP id 3C29F520767 for <quic-issues@ietf.org>; Sun, 31 May 2020 23:26:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1590992794; bh=WJh+usI9OruSY9tQyaoxQMYtlBak0a2cEXxx47RYzrQ=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=yWumWPYdgAYksBCQJJNbtIpfP5VAYMuMNzj78Dtm6UavCBLvGkj69FEG6HfLn80Ho 6EjYFhQ14NWJRsnxE5RzU2upW5YR7Uc/V6eSHUt6aqtnSBJpKUn5ly+fXyPf9v9ZAp fpf/BgMfNeQV6hTn4ykKSkXMqtWK6gMExCyLk1lE=
Date: Sun, 31 May 2020 23:26:34 -0700
From: Jana Iyengar <notifications@github.com>
Reply-To: quicwg/base-drafts <noreply@github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Push <push@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3706/push/5156882048@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3706@github.com>
References: <quicwg/base-drafts/pull/3706@github.com>
Subject: Re: [quicwg/base-drafts] Add more context and text around ACK frequency (#3706)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5ed49f9a2b248_681f3f8056ecd964369176"; charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: janaiyengar
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: push
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/wZyBEOIr916G3j_gyS3Y37lbDHs>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
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: Mon, 01 Jun 2020 06:26:37 -0000

----==_mimepart_5ed49f9a2b248_681f3f8056ecd964369176
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

@janaiyengar pushed 1 commit.

3bbb568d4860754976861809e9f313d5aaeb83d8  reflow


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/quicwg/base-drafts/pull/3706/files/76af223d868f9d50662e00245cb2e167e25baec8..3bbb568d4860754976861809e9f313d5aaeb83d8

----==_mimepart_5ed49f9a2b248_681f3f8056ecd964369176
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: 7bit

<p><a href="https://github.com/janaiyengar" class="user-mention">@janaiyengar</a> pushed 1 commit.</p>

<ul>
  <li><a class="commit-link" href="https://github.com/quicwg/base-drafts/commit/3bbb568d4860754976861809e9f313d5aaeb83d8">3bbb568</a>  reflow</li>
</ul>


<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br /><a href="https://github.com/quicwg/base-drafts/pull/3706/files/76af223d868f9d50662e00245cb2e167e25baec8..3bbb568d4860754976861809e9f313d5aaeb83d8">View it on GitHub</a> or <a href="https://github.com/notifications/unsubscribe-auth/AFTOJK56EOOD66PSS23IEWDRUNCZVANCNFSM4NMWAK7A">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AFTOJK4DB62SUZACRBFLBZTRUNCZVA5CNFSM4NMWAK7KYY3PNVWWK3TUL52HS4DFXNIHK3DMKJSXC5LFON2FA5LTNBHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZF5KB2WY3BDGQZDIMRRHEZTINCQOVZWQIZVGE2TMOBYGIYDIOA.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/quicwg/base-drafts/pull/3706/files/76af223d868f9d50662e00245cb2e167e25baec8..3bbb568d4860754976861809e9f313d5aaeb83d8",
"url": "https://github.com/quicwg/base-drafts/pull/3706/files/76af223d868f9d50662e00245cb2e167e25baec8..3bbb568d4860754976861809e9f313d5aaeb83d8",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>

----==_mimepart_5ed49f9a2b248_681f3f8056ecd964369176--

